/* =========================================================
   Creators Vision — Design Tokens
========================================================= */
:root {
  --navy: #1a1a2e;
  --navy-soft: #2b2b47;
  --accent: #f5a623;
  --accent-dark: #d68910;
  --blue: #4a7fe0;
  --blue-dark: #3861b3;
  --green: #4caf50;
  --green-dark: #3d8b40;
  --purple: #8b5cf6;
  --teal: #14b8a6;
  --pink: #ec4899;
  --lavender: #f3f0fb;
  --lavender-line: #eadfff;
  --ink: #1a1a2e;
  --ink-soft: #55536e;
  --white: #ffffff;
  --border: #e7e3f5;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 12px 30px -12px rgba(26,26,46,0.18);
  --shadow-soft: 0 6px 18px -8px rgba(26,26,46,0.12);
  --container: 1240px;
  --font: 'Poppins', 'Noto Sans Devanagari', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }
p { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent); }

.icon { width: 1.2em; height: 1.2em; fill: currentColor; vertical-align: -0.2em; }
.icon--xs { width: 0.85em; height: 0.85em; }
.icon--sm { width: 16px; height: 16px; }
.icon--md { width: 26px; height: 26px; }
.icon--lg { width: 34px; height: 34px; }
.icon--xl { width: 44px; height: 44px; color: var(--blue); }

/* =========================================================
   Buttons
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 9px 16px; font-size: 0.85rem; }
.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--blue { background: var(--blue); color: #fff; box-shadow: var(--shadow-soft); }
.btn--blue:hover { background: var(--blue-dark); }
.btn--outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline-blue:hover { background: var(--blue); color: #fff; }

.btn--green { background: var(--green); color: #fff; box-shadow: var(--shadow-soft); }
.btn--green:hover { background: var(--green-dark); }

.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: #000; }

.btn--light { background: #fff; color: var(--blue-dark); }
.btn--light:hover { background: #f2f2f2; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline-light:hover { background: rgba(255,255,255,.15); }

/* =========================================================
   Badges / Pills
========================================================= */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 999px;
}
.badge--eyebrow {
  background: linear-gradient(90deg, #ffe6b3, #ffd166);
  color: #8a5a00;
  margin-bottom: 14px;
}
.badge--on-dark { background: rgba(245,166,35,.18); color: var(--accent); }

.pill {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  z-index: 2;
}
.pill--trending { background: #8b5cf6; }
.pill--limited { background: #f5c518; color: #4a3900; }
.pill--new { background: #14b8a6; }
.pill--offer { background: #ef476f; }

/* =========================================================
   Top Utility Bar
========================================================= */
.topbar {
  background: var(--navy);
  color: #cfd0e6;
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}
.topbar__contact { display: flex; gap: 22px; min-width: 0; }
.topbar__contact a { display: inline-flex; align-items: center; gap: 6px; color: #cfd0e6; white-space: nowrap; }
.topbar__contact a:hover { color: var(--accent); }

/* =========================================================
   Header / Nav
========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease, padding .25s ease;
}
.header.is-scrolled { box-shadow: 0 8px 24px -12px rgba(26,26,46,.25); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  transition: height .25s ease;
  gap: 24px;
}
.header.is-scrolled .header__inner { height: 62px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__brand { font-weight: 800; font-size: 1.15rem; color: var(--navy); }

.nav__list { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.nav__link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  background: none;
  border: none;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.is-active { color: var(--navy); background: var(--lavender); }

.nav__item--dropdown { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown.is-open .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.nav__dropdown li a:hover { background: var(--lavender); color: var(--navy); }

.header__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger {
  display: none;
  background: none; border: none; color: var(--navy);
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: 10px;
}
.hamburger:hover { background: var(--lavender); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(320px, 85vw);
  background: #fff; z-index: 200; box-shadow: -12px 0 30px rgba(0,0,0,.15);
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex; flex-direction: column;
  padding: 22px;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-drawer__list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-drawer__list a { display: block; padding: 12px 8px; font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-drawer__cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(26,26,46,.45);
  z-index: 190; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* =========================================================
   Hero
========================================================= */
.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(74,127,224,.12), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(245,166,35,.12), transparent 40%),
    #fff;
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.hero__title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--navy);
}
.hero__title-colon { color: var(--accent); }
.hero__subline { font-size: 1.1rem; color: var(--ink-soft); margin-top: 10px; }
.hero__subline strong { color: var(--navy); }
.hero__subline--hi { font-family: 'Noto Sans Devanagari', var(--font); font-weight: 600; color: var(--navy); font-size: 1.15rem; }
.hero__subline--muted { color: var(--ink-soft); font-style: italic; }
.hero__cta { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }

.hero__visual { display: flex; justify-content: center; }
.hero__photo-wrap { position: relative; width: min(400px, 100%); aspect-ratio: 1/1; }
.hero__photo {
  width: 100%; height: 100%; border-radius: 50%;
  overflow: hidden; border: 6px solid #fff;
  box-shadow: var(--shadow-card);
  background: linear-gradient(150deg, #fff 0%, var(--lavender) 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero__photo img { width: 62%; height: auto; object-fit: contain; }

.orbit-chip {
  position: absolute;
  display: flex; align-items: center; gap: 7px;
  background: #fff;
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.orbit-chip svg { color: var(--blue); }
.orbit-chip--1 { top: -6px; left: -10px; }
.orbit-chip--1 svg { color: var(--purple); }
.orbit-chip--2 { top: 10%; right: -14px; }
.orbit-chip--2 svg { color: var(--teal); }
.orbit-chip--3 { bottom: 8%; left: -22px; }
.orbit-chip--3 svg { color: var(--accent-dark); }
.orbit-chip--4 { bottom: -8px; right: 4%; }
.orbit-chip--4 svg { color: var(--blue); }

/* =========================================================
   Sections (generic)
========================================================= */
.section { padding: 80px 0; }
.section--tight { padding: 50px 0; }
.section--lavender { background: var(--lavender); }
.section--pattern {
  background-color: var(--lavender);
  background-image:
    linear-gradient(rgba(245,166,35,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.section__head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section__head--left { text-align: left; margin: 0 0 30px; }
.section__title { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; color: var(--navy); }
.section__title .accent { position: relative; }
.section__title .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 4px;
  background: var(--accent); border-radius: 4px;
}
.section__subtitle { margin-top: 12px; color: var(--ink-soft); font-size: 1rem; }

/* =========================================================
   Carousel
========================================================= */
.carousel { position: relative; padding: 0 56px; }
.carousel__viewport { overflow: hidden; }
.carousel__track {
  display: flex;
  gap: 24px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.carousel__slide { flex: 0 0 calc((100% - 48px) / 3); min-width: 0; }
.carousel__arrow {
  position: absolute; top: 40%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  z-index: 5;
}
.carousel__arrow:hover { background: var(--navy); color: #fff; }
.carousel__arrow--prev { left: 0; }
.carousel__arrow--next { right: 0; }
.carousel__arrow[disabled] { opacity: .35; cursor: default; }
.carousel__arrow[disabled]:hover { background: #fff; color: var(--navy); }
.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.carousel__dots button {
  width: 9px; height: 9px; border-radius: 50%; background: #d9d4ef; border: none; padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.carousel__dots button.is-active { background: var(--accent); transform: scale(1.3); }

/* =========================================================
   Service Cards
========================================================= */
.card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 20px;
  padding-top: 46px;
  color: #fff;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.card--pink { background: linear-gradient(160deg, #ff8a9e, #f5a623); }
.card--teal { background: linear-gradient(160deg, #14b8a6, #4caf50); }
.card--purple { background: linear-gradient(160deg, #8b5cf6, #4a7fe0); }
.card__media {
  border-radius: var(--radius-md); background: rgba(255,255,255,.16);
  height: 150px; display: flex; align-items: center; justify-content: center;
}
.card__icon { width: 56px; height: 56px; color: #fff; opacity: .95; }
.card__title { font-size: 1.15rem; font-weight: 700; }
.card__desc { font-size: 0.88rem; opacity: .95; }
.card__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { background: rgba(255,255,255,.25); font-size: 0.7rem; padding: 4px 10px; border-radius: 999px; }
.card .btn--dark { margin-top: auto; }

/* =========================================================
   CTA Banner
========================================================= */
.cta-banner {
  background: linear-gradient(120deg, var(--blue), var(--purple) 80%);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  color: #fff;
}
.cta-banner__title { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; }
.cta-banner__text { margin-top: 10px; opacity: .92; }
.cta-banner__actions { display: flex; justify-content: center; gap: 16px; margin-top: 26px; flex-wrap: wrap; }

/* =========================================================
   Team
========================================================= */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; }
.team-card {
  background: var(--lavender); border-radius: var(--radius-lg); padding: 30px;
  text-align: center;
}
.team-card__photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 4px solid #fff; box-shadow: var(--shadow-soft); }
.team-card__name { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.team-card__role { color: var(--ink-soft); font-size: 0.88rem; margin-top: 4px; }

/* =========================================================
   Vision (dark section)
========================================================= */
.vision { background: var(--navy); color: #e8e7f5; padding: 90px 0; }
.vision__quote {
  position: relative;
  max-width: 880px;
  margin: 0 auto 76px;
  padding: 46px 44px 42px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(130% 150% at 50% -25%, rgba(74,127,224,.22), transparent 62%),
    radial-gradient(90% 120% at 50% 130%, rgba(139,92,246,.20), transparent 65%),
    rgba(255,255,255,.045);
  box-shadow: 0 26px 60px -34px rgba(0,0,0,.85);
  overflow: hidden;
}
/* oversized watermark quote mark */
.vision__quote::before {
  content: "\201C";
  position: absolute; z-index: 0;
  top: -26px; left: 26px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 200px; line-height: 1;
  color: rgba(255,255,255,.07);
  pointer-events: none;
}
.vision__quote > * { position: relative; z-index: 1; }
.vision__quote-text {
  margin: 18px 0 0;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 600; line-height: 1.55; color: #fff;
  text-wrap: balance;
}
.vision__quote-hl {
  background: linear-gradient(100deg, var(--blue), var(--purple) 45%, var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.vision__quote-rule {
  display: block; width: 88px; height: 3px; margin: 28px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--accent));
}
.vision__block { margin-bottom: 70px; }
.vision__block:last-of-type { margin-bottom: 50px; }
.vision__block-title { text-align: center; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 34px; }
.vision__tiles { display: grid; gap: 24px; }
.vision__tiles--2 { grid-template-columns: repeat(2, 1fr); }
.vision__tiles--3 { grid-template-columns: repeat(3, 1fr); }
.vision__tiles--4 { grid-template-columns: repeat(4, 1fr); }
.vision__tile {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: 26px; text-align: center;
}
.vision__tile svg { color: var(--accent); margin-bottom: 12px; }
.vision__tile h4 { color: #fff; font-size: 1.02rem; margin-bottom: 8px; }
.vision__tile p { font-size: 0.86rem; color: #b9b8d1; line-height: 1.5; }
.vision__cta { text-align: center; }
.vision__cta h3 { color: #fff; font-size: 1.3rem; margin-bottom: 20px; }

/* =========================================================
   Offices
========================================================= */
.offices { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.offices__list { display: grid; grid-template-columns: 1fr; gap: 18px; align-content: start; }
.contact-panel { display: grid; gap: 14px; align-content: start; }
.contact-row {
  display: flex; align-items: center; gap: 14px;
  background: var(--lavender); border-radius: var(--radius-md); padding: 18px;
  border: 1px solid transparent; transition: border-color .2s ease, transform .2s ease;
}
.contact-row:hover { border-color: var(--blue); transform: translateY(-2px); }
.contact-row svg { color: var(--blue); flex-shrink: 0; }
.contact-row span { display: flex; flex-direction: column; font-size: 0.92rem; color: var(--navy); }
.contact-row strong { font-size: 0.78rem; color: var(--ink-soft); font-weight: 600; margin-bottom: 2px; }
.office-card {
  background: var(--lavender); border-radius: var(--radius-md); padding: 18px;
  display: flex; gap: 12px; align-items: flex-start;
}
.office-card svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.office-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.office-card__tag {
  display: inline-block; margin-left: 8px; vertical-align: middle;
  background: var(--blue); color: #fff;
  font-size: 0.62rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px;
}
.office-card p { font-size: 0.82rem; color: var(--ink-soft); }

/* =========================================================
   FAQ
========================================================= */
.faq { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.accordion__item {
  background: #fff; border-radius: var(--radius-md); margin-bottom: 12px;
  border: 1px solid var(--border); overflow: hidden;
}
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; padding: 18px 20px; text-align: left;
  font-weight: 600; color: var(--navy); font-size: 0.96rem;
}
.accordion__chevron { transition: transform .25s ease; color: var(--blue); flex-shrink: 0; }
.accordion__item.is-open .accordion__chevron { transform: rotate(180deg); }
.accordion__panel {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.accordion__panel p { padding: 0 20px 18px; color: var(--ink-soft); font-size: 0.9rem; line-height: 1.55; }
.accordion__item.is-open .accordion__panel { max-height: 200px; }

.faq__side {
  background: #fff; border-radius: var(--radius-lg); padding: 34px 26px;
  text-align: center; box-shadow: var(--shadow-card);
  position: sticky; top: 110px;
}
.faq__side h3 { margin-top: 12px; font-size: 1.1rem; color: var(--navy); }
.faq__side p { margin-top: 8px; color: var(--ink-soft); font-size: 0.88rem; }
.faq__side .btn { margin-top: 18px; }

/* =========================================================
   Stats strip (pre-footer)
========================================================= */
.stats-strip { background: linear-gradient(120deg, var(--navy), var(--navy-soft)); padding: 34px 0; }
.stats-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.stats-strip__stats { display: flex; gap: 44px; flex-wrap: wrap; }
.stats-strip__stats div { display: flex; flex-direction: column; }
.stats-strip__stats span { color: var(--accent); font-weight: 800; font-size: 1.3rem; }
.stats-strip__stats small { color: #b9b8d1; font-size: 0.78rem; margin-top: 2px; }
.stats-strip__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================================================
   Footer
========================================================= */
.footer { background: var(--navy); color: #b9b8d1; padding-top: 64px; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 32px; padding-bottom: 50px;
}
.footer__brand p { margin: 16px 0 18px; font-size: 0.88rem; line-height: 1.6; }
.footer .logo__brand { color: #fff; }
.footer__col h4 { color: #fff; font-size: 0.98rem; margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 0.88rem; }
.footer__col a:hover { color: var(--accent); }
.footer__contact li { display: flex; gap: 8px; align-items: flex-start; font-size: 0.86rem; line-height: 1.5; }
.footer__contact svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer__bottom-inner { text-align: center; font-size: 0.82rem; }

/* =========================================================
   Floating buttons
========================================================= */
.fab {
  position: fixed; z-index: 150;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.35);
  border-radius: 999px;
  transition: transform .2s ease, opacity .3s ease, visibility .3s ease;
}
.fab:hover { transform: translateY(-3px); }
.fab--whatsapp {
  bottom: 24px; right: 24px; width: 58px; height: 58px;
  background: var(--green); color: #fff;
}
.fab--whatsapp .fab__label { display: none; }
.fab--call {
  bottom: 94px; right: 24px; width: 54px; height: 54px;
  background: var(--accent); color: #fff;
  opacity: 0; visibility: hidden; transform: scale(.7);
}
.fab--call.is-visible { opacity: 1; visibility: visible; transform: scale(1); }

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1080px) {
  .logo__mark { height: 34px; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .vision__tiles--4 { grid-template-columns: repeat(2, 1fr); }
  .vision__tiles--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nav, .header__cta .btn--outline-blue, .header__cta .btn--green { display: none; }
  .hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__cta { justify-content: center; }
  .hero__visual { order: -1; margin-bottom: 20px; }
  .carousel__slide { flex: 0 0 calc((100% - 24px) / 2); }
  .faq { grid-template-columns: 1fr; }
  .faq__side { position: static; }
  .offices { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar__inner { font-size: 0.72rem; }
  .topbar__contact { gap: 12px; }
  .topbar__contact a[href^="mailto"] { display: none; }
  .container { padding: 0 18px; }
  .carousel { padding: 0 44px; }
  .carousel__slide { flex: 0 0 100%; }
  .carousel__arrow { width: 38px; height: 38px; }
  .team-grid, .offices__list { grid-template-columns: 1fr; }
  .vision__tiles--2, .vision__tiles--3, .vision__tiles--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats-strip__inner { flex-direction: column; align-items: flex-start; }
  .hero__photo-wrap { width: 260px; }
  .orbit-chip { font-size: 0.68rem; padding: 7px 10px; }
  .cta-banner { padding: 40px 22px; }
  .vision__quote { padding: 34px 22px 30px; }
  .vision__quote::before { font-size: 140px; top: -18px; left: 12px; }
}
