:root {
  --blue: #12aee7;
  --blue-dark: #069bd1;
  --black: #050505;
  --text: #202124;
  --muted: #6b7280;
  --light: #f5f7fb;
  --white: #ffffff;
  --border: rgba(5, 5, 5, 0.1);
  --shadow: 0 24px 70px rgba(10, 20, 40, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-padding {
  padding: 90px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
}

.navbar {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 100px;
  width: auto;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links .nav-cta {
  background: var(--black);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 14px;
  cursor: pointer;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 5px 0;
  background: var(--black);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 8% 88%, rgba(18, 174, 231, 0.25), transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(18, 174, 231, 0.18), transparent 20%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: 0;
}

.hero::before {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -60px;
  background: var(--blue);
}

.hero::after {
  width: 120px;
  height: 120px;
  right: 8%;
  top: 18%;
  background: rgba(18, 174, 231, 0.8);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 950;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--black);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
  font-weight: 950;
  max-width: 820px;
}

h2 {
  color: var(--black);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}

h3 {
  color: var(--black);
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 700px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 950;
  transition: 0.25s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(18, 174, 231, 0.3);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--black);
  background: var(--white);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

.btn-large {
  width: 100%;
}

.contact-strip {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  color: var(--muted);
  font-weight: 700;
}

.contact-strip strong {
  color: var(--black);
}

.hero-card {
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.logo-motion-card {
  min-height: 560px;
}

.motion-label {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e8f8ff;
  color: var(--blue-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 950;
}

.logo-video-frame {
  width: 100%;
  min-height: 310px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.logo-video-frame video {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: contain;
  background: var(--white);
}

.quote-box {
  width: 100%;
  padding: 24px;
  border-radius: 24px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.quote-box span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 3.2rem;
  line-height: 0;
  margin-bottom: 10px;
}

.quote-box p {
  font-size: 1.22rem;
  line-height: 1.25;
  margin: 0;
  font-weight: 950;
}

.services-section,
.process-section {
  background: var(--light);
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card,
.process-step {
  padding: 28px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(10, 20, 40, 0.08);
  border: 1px solid var(--border);
  min-height: 230px;
}

.service-card .icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #e8f8ff;
  border-radius: 18px;
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.service-card p,
.process-step p,
.contact-card p {
  color: var(--muted);
  margin-bottom: 0;
}


.gallery-grid {
  display: flex;
  justify-content: space-evenly;
  gap: 18px;
}

.gallery-grid .gallery-item {
  flex: 0 1 45%;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(10, 20, 40, 0.1);
  border: 1px solid var(--border);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-step span {
  display: inline-flex;
  color: var(--blue);
  font-size: 3rem;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 20px;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(18, 174, 231, 0.18), transparent 22%),
    radial-gradient(circle at 90% 80%, rgba(18, 174, 231, 0.2), transparent 18%),
    var(--black);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 8px 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
  min-height: 50px;
}

.footer-content img {
  width: auto;
  height: 80px;
  object-fit: contain;
}

.footer-content p {
  margin: 0;
}

.footer-content a {
  color: var(--black);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .hero-grid,
  .brand-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .logo-motion-card {
    min-height: auto;
  }

  .cards-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid .gallery-item {
    flex: 0 1 45%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section-padding {
    padding: 64px 0;
  }

  .brand img {
    height: 175px;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.6rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    padding: 22px;
  }

  .logo-video-frame,
  .logo-video-frame video {
    min-height: 240px;
  }

  .cards-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    flex-direction: column;
  }

  .gallery-grid .gallery-item {
    flex: 0 1 100%;
  }

  .gallery-item img {
    min-height: 280px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
