@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --c-purple:      #3B1A78;
  --c-purple-dark: #250E50;
  --c-magenta:     #E91E8C;
  --c-magenta-dk:  #C4177A;
  --c-white:       #FFFFFF;
  --c-off:         #F4F2FB;
  --c-text:        #1A1228;
  --c-muted:       #5A5278;
  --c-border:      #E2DCF0;
  --c-nav:         #FFFFFF;
  --c-nav-text:    #1A1228;
  --c-footer:      #0D0720;
  --f-display:     'Outfit', system-ui, sans-serif;
  --f-body:        'Inter', system-ui, sans-serif;
  --max-w:         1200px;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --c-white:    #1C1138;
    --c-off:      #140D2E;
    --c-text:     #EDE8F8;
    --c-muted:    #9B8FC0;
    --c-border:   #3A2860;
    --c-nav:      #0F0820;
    --c-nav-text: #EDE8F8;
  }
}
:root[data-theme="dark"] {
  --c-white:    #1C1138;
  --c-off:      #140D2E;
  --c-text:     #EDE8F8;
  --c-muted:    #9B8FC0;
  --c-border:   #3A2860;
  --c-nav:      #0F0820;
  --c-nav-text: #EDE8F8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--f-body); font-size: 1rem; line-height: 1.6; color: var(--c-text); background: var(--c-white); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

.eyebrow {
  font-family: var(--f-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-magenta);
  margin-bottom: 0.6rem;
}
.eyebrow-white { color: rgba(255,255,255,0.5); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.8em 1.75em; border-radius: 100px;
  font-family: var(--f-body); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: background 0.18s, transform 0.15s; border: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-magenta { background: var(--c-magenta); color: #fff; }
.btn-magenta:hover { background: var(--c-magenta-dk); }
.btn-white-outline { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: #fff; }
.btn-white-outline:hover { background: rgba(255,255,255,0.08); }
.btn-purple-outline { background: transparent; border: 2px solid var(--c-purple); color: var(--c-purple); }
.btn-purple-outline:hover { background: var(--c-purple); color: #fff; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--c-nav); border-bottom: 1px solid var(--c-border);
  height: 70px; display: flex; align-items: center;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.55rem; flex-shrink: 0; }
.logo img { width: 38px; height: 38px; object-fit: contain; }
.logo-text { font-family: var(--f-display); color: var(--c-nav-text); line-height: 1; }
.logo-text strong { display: block; font-size: 1.05rem; font-weight: 800; }
.logo-text small  { display: block; font-size: 0.62rem; font-weight: 500; opacity: 0.6; letter-spacing: 0.06em; }
.nav-menu { display: flex; align-items: center; gap: 0.1rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 0.28rem;
  padding: 0.45rem 0.8rem; border-radius: 6px;
  font-size: 0.875rem; font-weight: 500; color: var(--c-nav-text);
  white-space: nowrap; transition: background 0.15s; cursor: pointer;
}
.nav-link:hover { background: var(--c-off); }
.nav-link.active { font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.caret { width: 9px; height: 9px; opacity: 0.45; flex-shrink: 0; }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: 10px; min-width: 210px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1); padding: 0.4rem;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s;
}
.nav-item::after {
  content: ''; position: absolute; top: 100%; left: 0;
  width: 100%; height: 10px;
}
.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a {
  display: block; padding: 0.55rem 0.75rem;
  font-size: 0.85rem; color: var(--c-text); border-radius: 6px;
  transition: background 0.12s;
}
.dropdown a:hover { background: var(--c-off); }

/* ── MEGA MENU ── */
.has-mega { position: relative; }
.has-mega > button.nav-link { background: none; border: none; font-family: inherit; cursor: pointer; }
.mega-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: 16px; width: 480px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12); padding: 0.6rem;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity 0.18s, transform 0.18s;
}
.has-mega:hover .mega-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.has-mega::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 10px; }
.mega-overview {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.8rem 0.9rem; border-radius: 10px;
  background: var(--c-off); text-decoration: none; transition: filter 0.15s;
}
.mega-overview:hover { filter: brightness(0.96); }
.mega-ov-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: var(--c-purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.mega-ov-icon svg { width: 18px; height: 18px; }
.mega-ov-title { font-size: 0.9rem; font-weight: 700; color: var(--c-text); line-height: 1.2; }
.mega-ov-desc { font-size: 0.78rem; color: var(--c-muted); margin-top: 0.2rem; }
.mega-divider { height: 1px; background: var(--c-border); margin: 0.55rem 0.3rem; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.15rem; }
.mega-item {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.65rem 0.75rem; border-radius: 9px; text-decoration: none;
  transition: background 0.13s;
}
.mega-item:hover { background: var(--c-off); }
.mega-icon {
  width: 30px; height: 30px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.05rem;
}
.mega-icon svg { width: 16px; height: 16px; }
.mega-item-title { font-size: 0.83rem; font-weight: 600; color: var(--c-text); line-height: 1.2; }
.mega-item-desc { font-size: 0.74rem; color: var(--c-muted); margin-top: 0.15rem; line-height: 1.4; }

/* ── THEME-AWARE LOGO ── */
.logo-dark { display: none; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark  { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .logo-light { display: none; }
  :root:not([data-theme="light"]) .logo-dark  { display: block; }
}

/* ── THEME TOGGLE ── */
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--c-border);
  background: transparent; cursor: pointer; color: var(--c-nav-text);
  transition: background 0.15s, color 0.15s; flex-shrink: 0; margin-left: 0.5rem;
}
.theme-toggle:hover { background: var(--c-off); }
.theme-toggle svg { width: 16px; height: 16px; pointer-events: none; }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun  { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
}

/* ── FOOTER ── */
.footer { background: var(--c-footer); color: rgba(255,255,255,0.65); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; max-width: 270px; }
.footer-col h4 {
  font-family: var(--f-display); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 0.9rem;
}
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-contact { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 0.5rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color 0.15s; font-size: 0.78rem; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── HERO ── */
.hero {
  background: var(--c-purple); padding: 5.5rem 2rem 5rem;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 110%, rgba(91,46,152,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 35% 35% at 85% 15%, rgba(233,30,140,0.12) 0%, transparent 60%);
}
.hero-inner { position: relative; max-width: 740px; margin: 0 auto; }
.hero-badge {
  display: inline-block; border: 1px solid rgba(255,255,255,0.28);
  padding: 0.38em 1.1em; border-radius: 100px; margin-bottom: 1.75rem;
  font-family: var(--f-display); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.85);
}
.hero h1 {
  font-family: var(--f-display); font-size: clamp(2rem, 4.4vw, 3.04rem);
  font-weight: 800; color: #fff; line-height: 1.08; text-wrap: balance;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.78);
  max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.65;
}
.hero-note { margin-top: 0.7rem; font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* Hero left-aligned variant (for subpages) */
.hero-left { text-align: left; }
.hero-left .hero-inner { max-width: 680px; margin: 0; }
.hero-left .hero-sub { margin-left: 0; }
.hero-sm { padding: 4rem 2rem 3.5rem; }

/* ── SECTION SHELL ── */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--c-off); }
.section-purple { background: var(--c-purple); }
.sec-head { margin-bottom: 3rem; }
.sec-head h2 {
  font-family: var(--f-display); font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800; color: var(--c-text); text-wrap: balance; line-height: 1.15; margin-top: 0.4rem;
}
.section-purple .sec-head h2 { color: #fff; }
.sec-head p { margin-top: 0.7rem; font-size: 1.05rem; color: var(--c-muted); max-width: 580px; line-height: 1.65; }
.section-purple .sec-head p { color: rgba(255,255,255,0.72); }

/* ── LOGOS STRIP ── */
.logos { background: var(--c-white); padding: 2.5rem 0; border-bottom: 1px solid var(--c-border); }
.logos-label {
  text-align: center; font-family: var(--f-display); font-size: 0.62rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: 1.5rem; padding: 0 2rem;
}
.logos-track-wrap { overflow: hidden; }
.logos-track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 28s linear infinite; padding: 0.25rem 0; }
.logos-track:hover { animation-play-state: paused; }
.logo-chip { font-family: var(--f-display); font-size: 0.85rem; font-weight: 700; color: var(--c-muted); opacity: 0.45; white-space: nowrap; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── CARDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.4rem; }
.grid-auto-lg { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.4rem; }

.card {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: 14px; padding: 1.75rem;
}
.section-alt .card { background: var(--c-white); }
.card.card-purple, .card-purple {
  background: var(--c-purple); border: 1px solid transparent;
  border-radius: 14px; padding: 1.75rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .card.card-purple,
  :root:not([data-theme="light"]) .card-purple {
    background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14);
  }
}
:root[data-theme="dark"] .card.card-purple,
:root[data-theme="dark"] .card-purple {
  background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14);
}
.card h3 { font-family: var(--f-display); font-size: 1.1rem; font-weight: 700; color: var(--c-text); margin-bottom: 0.5rem; line-height: 1.25; }
.card p  { font-size: 0.88rem; color: var(--c-muted); line-height: 1.6; }
.card-purple h3 { color: #fff; }
.card-purple p  { color: rgba(255,255,255,0.72); }

/* ── SERVICE TAGS ── */
.svc-tag {
  display: inline-block; padding: 0.22em 0.72em; border-radius: 100px;
  font-family: var(--f-display); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff; width: fit-content; margin-bottom: 0.5rem;
}
.t-strategy  { background: #7B3FE4; }
.t-adopt     { background: #1E6FD4; }
.t-govern    { background: #B84A1A; }
.t-execute   { background: #1E8057; }
.t-support   { background: #0B7B9B; }

/* ── TESTIMONIAL ── */
.testimonial { text-align: center; max-width: 640px; margin: 0 auto; padding: 2.5rem 1rem; }
.testimonial blockquote { font-size: 1.05rem; color: rgba(255,255,255,0.82); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.testimonial cite { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.45); font-style: normal; }
.testimonial-card {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: 14px; padding: 1.75rem 2rem; position: relative;
}
.testimonial-card blockquote { font-size: 0.95rem; color: var(--c-text); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.testimonial-card .cite-wrap { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card .cite-wrap img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-card cite { font-size: 0.82rem; font-style: normal; }
.testimonial-card cite strong { display: block; font-weight: 600; color: var(--c-text); }
.testimonial-card cite span { color: var(--c-muted); font-size: 0.78rem; }

/* ── STAT BANNER ── */
.stat-banner {
  background: var(--c-purple); border-radius: 16px; padding: 2.5rem 2.75rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.stat-num { font-family: var(--f-display); font-size: 4rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem; }
.stat-copy { max-width: 340px; }
.stat-copy p { color: rgba(255,255,255,0.78); font-size: 0.92rem; line-height: 1.65; margin-bottom: 1.25rem; }

/* ── COMPARISON TABLE ── */
.compare-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.compare-table th, .compare-table td { padding: 0.75rem 1rem; text-align: center; border-bottom: 1px solid var(--c-border); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table thead th { font-family: var(--f-display); font-weight: 700; color: var(--c-text); background: var(--c-off); }
.compare-table thead th:nth-child(2) { background: var(--c-purple); color: #fff; border-radius: 8px 8px 0 0; }
.compare-table .tick { color: #1E8057; font-size: 1rem; }
.compare-table .cross { color: var(--c-muted); }

/* ── FAQ ACCORDION ── */
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.1rem 0; cursor: pointer;
  font-family: var(--f-display); font-size: 0.975rem; font-weight: 600; color: var(--c-text);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-icon { font-size: 1.1rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1.1rem; font-size: 0.9rem; color: var(--c-muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── CHECKLIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--c-text); }
.check-list li::before { content: '✓'; color: var(--c-magenta); font-weight: 700; flex-shrink: 0; margin-top: 0.05em; }
.check-list-white li { color: rgba(255,255,255,0.82); }
.check-list-white li::before { color: rgba(255,255,255,0.55); }

/* ── SAGE STEPS ── */
.sage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.sage-step { background: var(--c-white); border: 1px solid var(--c-border); border-radius: 14px; padding: 1.75rem; }
.sage-letter {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-purple); color: #fff;
  font-family: var(--f-display); font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.sage-step h3 { font-family: var(--f-display); font-size: 1rem; font-weight: 700; color: var(--c-text); margin-bottom: 0.4rem; }
.sage-step p  { font-size: 0.875rem; color: var(--c-muted); line-height: 1.6; }

/* ── TEAM GRID ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.5rem; }
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 12px; margin-bottom: 0.75rem;
  background: var(--c-off);
}
.team-card h3 { font-family: var(--f-display); font-size: 0.92rem; font-weight: 700; color: var(--c-text); }
.team-card p  { font-size: 0.78rem; color: var(--c-muted); }

/* ── ACCREDITATION BADGES ── */
.badge-row { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.badge-row img { height: 70px; width: auto; object-fit: contain; opacity: 0.85; }

/* ── CTA BLOCK ── */
.cta-block {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px; padding: 2rem 2rem;
}
.cta-block h3 { font-family: var(--f-display); font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.cta-block p  { font-size: 0.9rem; color: rgba(255,255,255,0.68); line-height: 1.65; margin-bottom: 1.5rem; }
.cta-center { text-align: center; margin-top: 2.5rem; }

/* ── TWO-COL LAYOUT ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.two-col-6040 { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--c-text); }
.form-field input, .form-field textarea, .form-field select {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: 8px; padding: 0.7rem 0.9rem;
  font-family: var(--f-body); font-size: 0.9rem; color: var(--c-text);
  transition: border-color 0.15s;
  width: 100%;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--c-purple);
}
.form-field textarea { resize: vertical; min-height: 130px; }

/* ── BLOG CARDS ── */
.blog-card {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: 14px; overflow: hidden; display: flex; flex-direction: column;
}
.blog-thumb { height: 130px; background: linear-gradient(135deg, var(--c-purple) 0%, #5C3099 100%); display: flex; align-items: center; justify-content: center; }
.blog-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-date  { font-size: 0.75rem; color: var(--c-muted); }
.blog-card h3 { font-family: var(--f-display); font-size: 0.93rem; font-weight: 700; color: var(--c-text); line-height: 1.35; text-wrap: balance; flex: 1; }
.blog-card h3 a:hover { color: var(--c-magenta); }
.blog-more { font-size: 0.78rem; font-weight: 600; color: var(--c-magenta); }

/* ── RESPONSIVE ── */
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col, .two-col-6040 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-menu { display: none; }
  .section { padding: 4rem 0; }
  .hero { padding: 3.5rem 2rem 3rem; }
}
@media (max-width: 540px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .badge-row img { height: 55px; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .logos-track { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
