:root {
  --charcoal: #353535;
  --teal: #3c6e71;
  --teal-dark: #2f585b;
  --white: #ffffff;
  --mist: #d9d9d9;
  --navy: #284b63;
  --navy-deep: #1c3648;
  --ink: #353535;
  --muted: #6a7a80;
  --line: rgba(53, 53, 53, 0.12);
  --shadow: 0 22px 60px rgba(40, 75, 99, 0.12);
  --radius: 14px;
  --font: "Figtree", system-ui, sans-serif;
  --display: "Sora", system-ui, sans-serif;
  --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(40, 75, 99, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
}
.brand span { font-size: 1.05rem; }
.brand em {
  font-style: normal;
  color: #cfe3e4;
  font-weight: 500;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.06); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); }
.btn-white { background: var(--white); color: var(--teal); }
.btn-white:hover { background: var(--mist); }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(28, 54, 72, 0.94) 0%, rgba(40, 75, 99, 0.78) 42%, rgba(60, 110, 113, 0.42) 100%),
    url("../images/hero.jpg") center / cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 54, 72, 0.55) 0%, rgba(28, 54, 72, 0.2) 45%, transparent 72%),
    radial-gradient(circle at 82% 18%, rgba(60, 110, 113, 0.28), transparent 42%),
    url("data:image/svg+xml,%3Csvg width='800' height='500' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 260c80-120 160-160 240-120s140 40 220-40 160-80 240-20' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='2'/%3E%3Ccircle cx='120' cy='180' r='3' fill='rgba(255,255,255,0.2)'/%3E%3Ccircle cx='320' cy='120' r='3' fill='rgba(255,255,255,0.2)'/%3E%3Ccircle cx='520' cy='160' r='3' fill='rgba(255,255,255,0.2)'/%3E%3Ccircle cx='700' cy='220' r='3' fill='rgba(255,255,255,0.2)'/%3E%3C/svg%3E") center 40% / 90% no-repeat;
  pointer-events: none;
  animation: mapDrift 18s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
  z-index: 1;
}
@keyframes mapDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-18px, 10px, 0) scale(1.04); }
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 140px 0 88px;
  max-width: 720px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #d7ecec;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--teal);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  font-weight: 750;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hero h1 .h1-line {
  display: block;
  white-space: nowrap;
}
.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.avatars { display: flex; align-items: center; }
.avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.9);
  margin-left: -8px;
  background: var(--mist);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.avatars img:first-child { margin-left: 0; }

.intro-band {
  margin-top: -48px;
  position: relative;
  z-index: 3;
  padding-bottom: 8px;
}
.intro-card {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: grid;
  gap: 14px;
}
.intro-card h2 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--navy);
  max-width: 760px;
  margin: 0;
}
.intro-card p {
  color: var(--muted);
  max-width: 780px;
  margin: 0;
  font-size: 1.05rem;
}

.partners {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 42px;
  opacity: 0.55;
  filter: grayscale(1);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.section { padding: 88px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-kicker {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2,
.split-copy h2,
.cta-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.section-head p,
.split-copy p {
  margin-top: 12px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.process-grid { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 10px 30px rgba(40, 75, 99, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(60, 110, 113, 0.35);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(60, 110, 113, 0.12);
  color: var(--teal);
  margin-bottom: 16px;
  font-size: 1.15rem;
}
.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.service-card p { color: var(--muted); font-size: 0.95rem; }

.campaigns { background: rgba(217, 217, 217, 0.28); }
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.campaign-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: 0 10px 30px rgba(40, 75, 99, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.campaign-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.campaign-card p { color: var(--muted); font-size: 0.9rem; }

.stats {
  background:
    linear-gradient(120deg, rgba(60, 110, 113, 0.95), rgba(40, 75, 99, 0.92)),
    url("../images/team.jpg") center / cover;
  color: var(--white);
  padding: 42px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.stat i {
  font-size: 1.35rem;
  margin-bottom: 10px;
  opacity: 0.9;
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 6px;
}
.stat span { font-size: 0.92rem; opacity: 0.88; }

.why {
  background:
    radial-gradient(700px 300px at 0% 0%, rgba(60, 110, 113, 0.08), transparent 60%),
    linear-gradient(180deg, #f7f9f9, var(--white));
}
.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.split-copy .section-kicker { text-align: left; }
.split-copy h2 { margin-bottom: 14px; }
.split-copy .btn { margin-top: 22px; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.feature i {
  color: var(--teal);
  margin-bottom: 10px;
}
.feature h4 { margin-bottom: 6px; color: var(--charcoal); }
.feature p { color: var(--muted); font-size: 0.9rem; }

.reach {
  background: var(--white);
}
.reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.industries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.industry {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfcfc;
}
.industry i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(60, 110, 113, 0.12);
  color: var(--teal);
}
.world-card {
  background:
    radial-gradient(circle at 70% 30%, rgba(60, 110, 113, 0.35), transparent 45%),
    linear-gradient(160deg, var(--navy), var(--charcoal));
  color: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.world-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 280px;
  height: 280px;
  border: 28px solid rgba(60, 110, 113, 0.25);
  border-radius: 50%;
}
.world-card h3 {
  font-family: var(--display);
  font-size: 2rem;
  position: relative;
  z-index: 1;
  max-width: 280px;
}
.world-card p {
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  z-index: 1;
  max-width: 320px;
}
.world-card .btn { position: relative; z-index: 1; align-self: flex-start; }

.testimonials { background: #f5f7f7; }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
}
.quote i {
  color: var(--teal);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.quote p {
  color: var(--charcoal);
  font-size: 1.02rem;
  margin-bottom: 18px;
}
.quote strong { display: block; color: var(--navy); }
.quote span { color: var(--muted); font-size: 0.88rem; }

.cta-band {
  background: linear-gradient(120deg, var(--teal), var(--navy));
  color: var(--white);
  padding: 42px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-copy {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  flex: 0 0 auto;
}
.cta-copy h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); }

.contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  background: #fbfcfc;
}
.contact-card h3,
.contact-form h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-card p { color: var(--muted); margin-bottom: 18px; }
.contact-list { display: grid; gap: 14px; }
.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
}
.contact-list i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(60, 110, 113, 0.12);
  color: var(--teal);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: grid; gap: 6px; margin-bottom: 12px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 12px 14px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid rgba(60, 110, 113, 0.25);
  border-color: var(--teal);
}
.form-note {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--teal);
  min-height: 1.2em;
}

.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}
.faq-item button i { color: var(--teal); transition: transform 0.2s ease; }
.faq-item.open button i { transform: rotate(45deg); }
.faq-item .answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
}
.faq-item.open .answer { display: block; }

.site-footer {
  background: linear-gradient(180deg, var(--navy-deep), var(--charcoal));
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
  margin-bottom: 36px;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { max-width: 320px; font-size: 0.92rem; }
.footer-col h4 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}
.footer-col a:hover { color: var(--white); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-bottom a { margin-left: 14px; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .nav-links, .nav .btn { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-radius: 14px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .nav-links.open a { padding: 12px 14px; border-radius: 10px; }
  .nav-links.open a:hover { background: rgba(255, 255, 255, 0.06); }
  .nav-toggle { display: inline-grid; place-items: center; }
  .services-grid,
  .stats-grid,
  .feature-grid,
  .quote-grid,
  .reach-grid,
  .contact-grid,
  .why-grid,
  .footer-grid,
  .industries,
  .campaign-grid,
  .process-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    min-height: 88svh;
    align-items: center;
  }
  .hero-inner {
    padding: 78px 0 28px;
    max-width: none;
    text-align: center;
  }
  .eyebrow {
    justify-content: center;
    margin-bottom: 10px;
    font-size: 0.72rem;
  }
  .eyebrow::before { display: none; }
  .hero h1 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
    margin-bottom: 10px;
    line-height: 1.15;
  }
  .hero h1 .h1-line {
    white-space: nowrap;
  }
  .hero-lead {
    font-size: 0.98rem;
    margin-bottom: 16px;
    margin-inline: auto;
    max-width: 34rem;
  }
  .hero-actions {
    justify-content: center;
    margin-bottom: 16px;
    gap: 10px;
  }
  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
    padding: 12px 16px;
    font-size: 0.88rem;
  }
  .trust-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
  }
  .avatars img { width: 30px; height: 30px; }

  .services-grid,
  .stats-grid,
  .feature-grid,
  .quote-grid,
  .reach-grid,
  .contact-grid,
  .why-grid,
  .footer-grid,
  .industries,
  .form-row,
  .campaign-grid,
  .process-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom > span {
    display: block;
    width: 100%;
    text-align: center;
  }
  .footer-bottom a {
    margin-left: 0;
    margin-right: 12px;
  }
  .footer-bottom a:last-child { margin-right: 0; }
}
