/* ==========================================================================
   Ayush SEO — stylesheet
   Vanilla CSS. No framework. Mobile-first.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --color-primary: #0F62FE;
  --color-primary-dark: #0043CE;
  --color-primary-darker: #002D9C;
  --color-secondary: #00C48C;
  --color-secondary-dark: #009A6D;
  --color-accent: #FFB800;

  --color-bg: #FFFFFF;
  --color-bg-alt: #F6F9FC;
  --color-bg-dark: #0A1128;

  --color-text: #0F1420;
  --color-text-muted: #5B6472;
  --color-text-faint: #8A92A3;
  --color-border: #E7EBF2;
  --color-on-primary: #FFFFFF;

  --font-heading: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --container: 1200px;
  --container-narrow: 780px;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(15, 20, 32, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 20, 32, 0.09);
  --shadow-lg: 0 24px 60px rgba(15, 20, 32, 0.14);
  --shadow-primary: 0 14px 30px rgba(15, 98, 254, 0.28);

  --ease: cubic-bezier(.16,.84,.44,1);
  --speed-fast: .2s;
  --speed-med: .4s;
  --speed-slow: .8s;

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  z-index: 1000;
  background: var(--color-primary);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top var(--speed-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2.5px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

section { position: relative; }

.section {
  padding-top: clamp(2.52rem, 5.04vw, 4.68rem);
  padding-bottom: clamp(3.5rem, 7vw, 6.5rem);
}

.section-alt { background: var(--color-bg-alt); }

/* Two adjacent sections sharing the same background would otherwise stack
   independent top/bottom padding into one oversized, seamless gap. */
.section-alt + .section-alt { padding-top: 0; }

.section-head {
  max-width: var(--container-narrow);
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(15, 98, 254, 0.08);
  padding: .5rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.1rem;
}
.eyebrow svg { width: 14px; height: 14px; }

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-head p {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.text-center { text-align: center; }

/* ---------- Mumbai SEO intro paragraph (full page width, left-aligned) ---------- */
.mumbai-seo-text {
  text-align: left;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 1.9rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .98rem;
  white-space: nowrap;
  transition: transform var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease), color var(--speed-fast) var(--ease), border-color var(--speed-fast) var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--speed-fast) var(--ease); }

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15, 98, 254, 0.38);
}
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  background: #fff;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-light {
  background: #fff;
  color: var(--color-primary);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-block { width: 100%; }
.btn-lg { padding: 1.15rem 2.3rem; font-size: 1.05rem; }

/* ---------- Decorative floating blobs ---------- */
.blob-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
  animation: float 18s ease-in-out infinite alternate;
}
.blob-primary { background: var(--color-primary); }
.blob-secondary { background: var(--color-secondary); }
.blob-accent { background: var(--color-accent); }

@keyframes float {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(4%, -6%) scale(1.08); }
  100% { transform: translate(-3%, 5%) scale(0.96); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

@keyframes pulseSoft {
  0%, 100% { opacity: 1; }
  50% { opacity: .55; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1.is-visible { transition-delay: .08s; }
.reveal-delay-2.is-visible { transition-delay: .16s; }
.reveal-delay-3.is-visible { transition-delay: .24s; }
.reveal-delay-4.is-visible { transition-delay: .32s; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  transition: box-shadow var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 var(--color-border), 0 12px 30px rgba(15,20,32,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text);
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-darker));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: var(--shadow-primary);
}
.logo-text-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .68rem;
  color: var(--color-text-muted);
  letter-spacing: .03em;
}

.main-nav {
  display: none;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.main-nav a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding-block: .3rem;
  transition: color var(--speed-fast);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--speed-fast) var(--ease);
}
.main-nav a:hover { color: var(--color-text); }
.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.is-active { color: var(--color-text); }

/* ---------- Nav dropdown (Services submenu) ---------- */
.nav-item-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: none;
  border: none;
  font: inherit;
  font-size: .95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  padding-block: .3rem;
  transition: color var(--speed-fast);
}
.nav-item-dropdown:hover .nav-dropdown-toggle,
.nav-item-dropdown:focus-within .nav-dropdown-toggle { color: var(--color-text); }
.nav-dropdown-toggle svg {
  width: 14px; height: 14px;
  transition: transform var(--speed-fast) var(--ease);
}
.nav-item-dropdown:hover .nav-dropdown-toggle svg,
.nav-item-dropdown:focus-within .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: .75rem;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--speed-fast) var(--ease), transform var(--speed-fast) var(--ease), visibility var(--speed-fast);
  z-index: 20;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li { width: 100%; }
.nav-dropdown a {
  display: block;
  padding: .55rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.header-cta { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--color-bg-alt); }
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--speed-fast) var(--ease), opacity var(--speed-fast) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 400;
  padding: 2rem 1.5rem 2.5rem;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--speed-med) var(--ease), transform var(--speed-med) var(--ease), visibility var(--speed-med);
}
.mobile-nav.is-open {
  opacity: 1;
  transform: none;
  visibility: visible;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: .3rem; }
.mobile-nav a {
  display: block;
  padding: 1rem .25rem;
  font-size: 1.15rem;
  font-weight: 600;
  font-family: var(--font-heading);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav .btn { margin-top: 1.75rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero-grid > * { min-width: 0; }

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem 1.05rem .5rem .6rem;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 1.6rem;
}
.hero-eyebrow .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(0,196,140,.18);
  animation: pulseSoft 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.75rem);
  margin-bottom: 1.4rem;
}
@media (min-width: 768px) {
  .hero h1 {
    white-space: nowrap;
  }
}
.hero h1 .accent-underline {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 46ch;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.hero-trust svg { width: 19px; height: 19px; color: var(--color-secondary); flex-shrink: 0; }

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.hero-photo-wrap {
  position: relative;
  width: min(100%, 400px);
}

.hero-photo-blob {
  position: absolute;
  inset: 4%;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 42% 58% 63% 37% / 41% 42% 58% 59%;
  animation: morph 14s ease-in-out infinite alternate;
  opacity: .16;
  z-index: -1;
}

@keyframes morph {
  0%   { border-radius: 42% 58% 63% 37% / 41% 42% 58% 59%; }
  50%  { border-radius: 58% 42% 39% 61% / 58% 63% 37% 42%; }
  100% { border-radius: 48% 52% 55% 45% / 50% 46% 54% 50%; }
}

.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 664 / 980;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .7rem;
  background: #fff;
  padding: .85rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: .85rem;
  font-weight: 700;
  z-index: 3;
  animation: floatSlow 6s ease-in-out infinite;
}
.floating-card .fc-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.floating-card .fc-icon svg { width: 19px; height: 19px; }
.floating-card small {
  display: block;
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: .72rem;
}

.floating-card--years {
  top: 6%;
  left: -6%;
  animation-delay: .2s;
}
.floating-card--years .fc-icon { background: rgba(15,98,254,.12); color: var(--color-primary); }

.floating-card--hat {
  bottom: 10%;
  right: -8%;
  animation-delay: 1.4s;
}
.floating-card--hat .fc-icon { background: rgba(0,196,140,.14); color: var(--color-secondary-dark); }

.floating-card--available {
  bottom: -4%;
  left: 8%;
  animation-delay: 2.6s;
}
.floating-card--available .fc-icon { background: rgba(255,184,0,.18); color: #A66A00; }

/* ---------- Trust strip ---------- */
.trust-strip {
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1rem;
  text-align: center;
}
.trust-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.trust-strip-item svg {
  width: 26px; height: 26px;
  color: var(--color-primary);
}
.trust-strip-item span {
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  max-width: 16ch;
}

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.about-grid > * { min-width: 0; }

.about-photo-wrap {
  position: relative;
  max-width: 340px;
  margin-inline: auto;
}
.about-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 664 / 980;
}
.about-photo-card img { width: 100%; height: 100%; object-fit: cover; }

.about-stat-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.25rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-darker));
  color: #fff;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  line-height: 1;
}
.about-stat-card span {
  font-size: .74rem;
  font-weight: 600;
  opacity: .9;
  letter-spacing: .03em;
}

.about-body h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 1.15rem; }
.about-body p { color: var(--color-text-muted); margin-bottom: 1.15rem; }
.about-body p:last-of-type { margin-bottom: 1.75rem; }

.about-credentials {
  display: grid;
  gap: .9rem;
  margin-top: 1.75rem;
}
.about-credentials li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--color-text);
}
.about-credentials svg {
  width: 21px; height: 21px;
  color: var(--color-secondary-dark);
  flex-shrink: 0;
  margin-top: .1rem;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: transform var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease), border-color var(--speed-fast) var(--ease);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  background: rgba(15,98,254,.09);
  color: var(--color-primary);
  transition: transform var(--speed-fast) var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-icon svg { width: 26px; height: 26px; }
.service-card:nth-child(3n+2) .service-icon { background: rgba(0,196,140,.12); color: var(--color-secondary-dark); }
.service-card:nth-child(3n+3) .service-icon { background: rgba(255,184,0,.15); color: #A66A00; }

.service-card h3 { font-size: 1.15rem; margin-bottom: .7rem; }
.service-card p { color: var(--color-text-muted); font-size: .93rem; }

/* ==========================================================================
   Process
   ========================================================================== */
.process-list {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: box-shadow var(--speed-fast) var(--ease), transform var(--speed-fast) var(--ease);
}
.process-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.process-num {
  counter-increment: step;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  flex-shrink: 0;
}
.process-num::before { content: counter(step, decimal-leading-zero); }

.process-item h3 {
  font-size: 1.1rem;
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.process-item h3 svg { width: 20px; height: 20px; color: var(--color-primary); }
.process-item p { color: var(--color-text-muted); font-size: .93rem; }

/* ==========================================================================
   Why / differentiators
   ========================================================================== */
.why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.why-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--speed-fast) var(--ease), transform var(--speed-fast) var(--ease);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(0,196,140,.13);
  color: var(--color-secondary-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.why-icon svg { width: 23px; height: 23px; }
.why-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.why-card p { color: var(--color-text-muted); font-size: .9rem; }

/* ==========================================================================
   Impact / KPI section (dark)
   ========================================================================== */
.impact {
  background: radial-gradient(ellipse at 20% 0%, #10204d 0%, var(--color-bg-dark) 55%);
  color: #fff;
  overflow: hidden;
}
.impact .section-head p { color: rgba(255,255,255,.68); }
.impact .eyebrow { background: rgba(255,255,255,.1); color: #cfe0ff; }
.impact h2 { color: #fff; }

.impact-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.impact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1.9rem 1.6rem;
  backdrop-filter: blur(6px);
  transition: transform var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease);
}
.impact-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); }
.impact-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15,98,254,.9), rgba(0,196,140,.85));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.impact-icon svg { width: 23px; height: 23px; color: #fff; }
.impact-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: .5rem; }
.impact-card p { color: rgba(255,255,255,.66); font-size: .89rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: box-shadow var(--speed-fast) var(--ease), transform var(--speed-fast) var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { display: flex; gap: .2rem; color: var(--color-accent); }
.stars svg { width: 17px; height: 17px; }
.testimonial-card blockquote {
  font-size: .97rem;
  color: var(--color-text);
  font-style: italic;
  flex-grow: 1;
}
.testimonial-person { display: flex; align-items: center; gap: .8rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.testimonial-person strong { display: block; font-size: .92rem; }
.testimonial-person .testimonial-role { display: block; font-size: .8rem; color: var(--color-text-muted); }

.testimonial-note {
  max-width: var(--container-narrow);
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: .85rem;
  color: var(--color-text-faint);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: var(--container-narrow);
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--speed-fast) var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  width: 20px; height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--speed-fast) var(--ease);
}
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-answer { padding: 0 1.6rem 1.5rem; color: var(--color-text-muted); font-size: .95rem; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  color: #fff;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: .9rem; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 52ch; margin-inline: auto 1.1rem; margin-bottom: 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
.contact-grid > * { min-width: 0; }

.contact-info h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 1rem; }
.contact-info > p { color: var(--color-text-muted); margin-bottom: 2rem; max-width: 46ch; }

.contact-methods { display: grid; gap: 1rem; margin-bottom: 2rem; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: transform var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease);
}
.contact-method:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.contact-method .cm-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(15,98,254,.09);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method .cm-icon svg { width: 21px; height: 21px; }
.contact-method strong { display: block; font-size: .95rem; }
.contact-method span { font-size: .85rem; color: var(--color-text-muted); word-break: break-word; }

.contact-social { display: flex; gap: .75rem; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease), color var(--speed-fast) var(--ease);
}
.social-btn svg { width: 19px; height: 19px; }
.social-btn:hover { background: var(--color-primary); color: #fff; transform: translateY(-3px); }

.contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.form-row { display: grid; gap: 1.25rem; margin-bottom: 1.25rem; }

.form-field { display: flex; flex-direction: column; gap: .5rem; }
.form-field label { font-size: .85rem; font-weight: 600; }
.form-field .required { color: var(--color-primary); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: var(--color-bg-alt);
  transition: border-color var(--speed-fast), background var(--speed-fast);
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
  background: #fff;
  outline: none;
}

.form-note { font-size: .78rem; color: var(--color-text-faint); margin-top: 1rem; text-align: center; }
.form-status {
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(0,196,140,.12);
  color: var(--color-secondary-dark);
  font-size: .88rem;
  font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,.7);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { color: #fff; }
.footer-brand p { margin-top: 1rem; font-size: .9rem; max-width: 34ch; color: rgba(255,255,255,.55); }
.footer-social { display: flex; gap: .7rem; margin-top: 1.5rem; }
.footer-social .social-btn { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff; }
.footer-social .social-btn:hover { background: var(--color-primary); }

.footer-col h4 {
  color: #fff;
  font-size: .92rem;
  margin-bottom: 1.1rem;
  letter-spacing: .02em;
}
.footer-col ul { display: grid; gap: .75rem; }
.footer-col a { font-size: .89rem; color: rgba(255,255,255,.6); transition: color var(--speed-fast); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 1.5rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 560px) {
  .trust-strip-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: .85fr 1.15fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .impact-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .process-list { grid-template-columns: repeat(5, 1fr); }
  .process-item { grid-template-columns: 1fr; text-align: left; }
  .contact-grid { grid-template-columns: .9fr 1.1fr; align-items: start; }
}

@media (min-width: 1100px) {
  .hero-lede { max-width: 50ch; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .mobile-nav, .blob-field, .floating-card, .cta-banner .btn { display: none; }
}
