/* ============ Unfavour design tokens ============ */
:root {
  --bg: oklch(0.985 0.008 300);            /* #FAF7FE airy lavender-white */
  --surface: oklch(1 0 0);                  /* white cards */
  --fg: oklch(0.21 0.04 290);               /* deep charcoal-violet ink */
  --muted: oklch(0.45 0.03 290);            /* secondary text */
  --border: oklch(0.92 0.02 300);
  --accent: oklch(0.54 0.22 293);           /* #7C3AED violet */
  --accent-strong: oklch(0.47 0.24 293);
  --accent-soft: oklch(0.95 0.03 300);
  --accent-2: oklch(0.68 0.17 296);         /* lighter violet for gradients */
  --fuchsia: oklch(0.62 0.26 328);          /* electric fuchsia */
  --pink: oklch(0.65 0.22 5);               /* warm pink */
  --grad: linear-gradient(115deg, oklch(0.54 0.22 293) 0%, oklch(0.62 0.26 328) 55%, oklch(0.65 0.22 5) 100%);
  --ink-section: oklch(0.18 0.03 290);      /* dark footer */
  --ring: var(--accent);
  --radius-sm: 8px; --radius-md: 14px; --radius-lg: 24px; --radius-full: 999px;
  --shadow-1: 0 1px 2px oklch(0.3 0.05 290 / .05), 0 4px 16px oklch(0.3 0.05 290 / .06);
  --shadow-2: 0 2px 4px oklch(0.3 0.05 290 / .06), 0 12px 40px oklch(0.3 0.08 290 / .12);
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --step-0: clamp(1rem, 0.94rem + 0.3vw, 1.125rem);
  --step-1: clamp(1.15rem, 1.05rem + 0.5vw, 1.375rem);
  --step-2: clamp(1.4rem, 1.2rem + 1vw, 1.9rem);
  --step-3: clamp(1.8rem, 1.45rem + 1.7vw, 2.6rem);
  --step-4: clamp(2.3rem, 1.6rem + 3.4vw, 4rem);
  --section-y: clamp(64px, 8vw, 128px);
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font-body); font-size: var(--step-0);
  line-height: 1.6; color: var(--fg); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-strong); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 16px; }
h1 { font-size: var(--step-4); font-weight: 700; }
h2 { font-size: var(--step-3); font-weight: 700; }
h3 { font-size: var(--step-1); font-weight: 600; }
p { margin: 0 0 16px; max-width: 65ch; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(16px, 5vw, 48px); }
.section { padding-block: var(--section-y); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--accent-strong); background: var(--accent-soft);
  border: 1px solid var(--border); border-radius: var(--radius-full); padding: 8px 16px; margin-bottom: 24px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--grad); }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head p { color: var(--muted); font-size: var(--step-1); }
.muted { color: var(--muted); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 28px; border-radius: var(--radius-full);
  font-family: var(--font-display); font-size: 1rem; font-weight: 600; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, background-color 200ms ease-out, border-color 200ms;
}
.btn-primary {
  position: relative; overflow: hidden;
  color: #fff; background: linear-gradient(115deg, var(--accent) 0%, var(--fuchsia) 100%);
  box-shadow: 0 4px 14px oklch(0.58 0.24 310 / .35);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-110%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, oklch(1 0 0 / .35), transparent);
  transition: transform 500ms ease-out;
}
.btn-primary:hover::after { transform: translateX(110%) skewX(-18deg); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 26px oklch(0.58 0.24 310 / .5); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { color: var(--fg); background: var(--surface); border-color: var(--border); box-shadow: var(--shadow-1); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-strong); transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 2px solid var(--ring); outline-offset: 3px;
}
.skip-link {
  position: absolute; left: 16px; top: -80px; z-index: 100; background: var(--fg); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-sm); text-decoration: none; transition: top 150ms ease-out;
}
.skip-link:focus { top: 12px; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.985 0.008 300 / .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color 200ms, box-shadow 200ms;
}
.site-header.scrolled { border-color: var(--border); box-shadow: 0 4px 20px oklch(0.3 0.05 290 / .06); }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--fg); }
.brand img { width: 40px; height: auto; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.22em; }
.brand-fav {
  background: linear-gradient(115deg, var(--accent) 0%, var(--fuchsia) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links { display: none; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block; padding: 10px 16px; border-radius: var(--radius-full);
  color: var(--muted); text-decoration: none; font-weight: 500; font-size: 0.95rem;
  transition: color 150ms, background-color 150ms;
}
.nav-links a:hover { color: var(--fg); background: var(--accent-soft); }
.nav-cta { display: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.wa-nav {
  display: none; align-items: center; gap: 8px;
  min-height: 44px; padding: 10px 18px; border-radius: var(--radius-full);
  font: 600 0.95rem var(--font-display); text-decoration: none;
  color: #1DA851; background: rgb(37 211 102 / .1); border: 1px solid rgb(37 211 102 / .35);
  transition: background-color 200ms, color 200ms, transform 200ms ease-out, box-shadow 200ms ease-out;
}
.wa-nav:hover {
  color: #fff; background: linear-gradient(135deg, #25D366, #1DA851);
  transform: translateY(-2px); box-shadow: 0 6px 18px rgb(29 168 81 / .35);
}
.menu-toggle {
  display: inline-flex; align-items: center; gap: 8px; min-width: 44px; min-height: 44px;
  padding: 8px 14px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-full); font: 600 0.9rem var(--font-display); color: var(--fg); cursor: pointer;
}
.mobile-menu { border-top: 1px solid var(--border); background: var(--bg); }
.mobile-menu[hidden] { display: none; }
.mobile-menu ul { list-style: none; margin: 0; padding: 12px clamp(16px, 5vw, 48px) 20px; display: grid; gap: 4px; }
.mobile-menu a { display: block; padding: 14px 12px; border-radius: var(--radius-sm); color: var(--fg); text-decoration: none; font-weight: 600; }
.mobile-menu a:hover { background: var(--accent-soft); }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; min-height: 44px; padding: 10px 22px; }
  .wa-nav { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ============ Hero ============ */
.hero { position: relative; overflow: clip; padding-block: clamp(56px, 7vw, 110px) clamp(48px, 6vw, 96px); }
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-bg::before {
  content: ""; position: absolute; width: 900px; height: 900px; top: -420px; right: -240px;
  background:
    radial-gradient(circle closest-side at 35% 65%, oklch(0.84 0.11 296 / .6) 0%, transparent 100%),
    radial-gradient(circle closest-side at 62% 42%, oklch(0.86 0.11 340 / .5) 0%, transparent 100%);
  animation: aurora-a 11s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: ""; position: absolute; width: 760px; height: 760px; bottom: -360px; left: -220px;
  background:
    radial-gradient(circle closest-side at 55% 38%, oklch(0.9 0.06 250 / .55) 0%, transparent 100%),
    radial-gradient(circle closest-side at 38% 62%, oklch(0.92 0.06 40 / .5) 0%, transparent 100%);
  animation: aurora-b 13s ease-in-out infinite alternate;
}
@keyframes aurora-a { from { transform: translate(0,0) scale(1); } to { transform: translate(-70px, 50px) scale(1.12); } }
@keyframes aurora-b { from { transform: translate(0,0) scale(1.08); } to { transform: translate(60px, -40px) scale(1); } }

/* Interactive dot grid (ported from 21st.dev ParticleHero) */
#hero-dots {
  position: absolute; inset: 0; width: 100%; height: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, oklch(0 0 0 / .45) 34%, #000 62%);
  mask-image: linear-gradient(90deg, transparent 0%, oklch(0 0 0 / .45) 34%, #000 62%);
}

/* Faint blueprint grid behind the hero */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(oklch(0.54 0.22 293 / .05) 1px, transparent 1px),
    linear-gradient(90deg, oklch(0.54 0.22 293 / .05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(120% 100% at 70% 0%, #000 35%, transparent 95%);
  mask-image: radial-gradient(120% 100% at 70% 0%, #000 35%, transparent 95%);
}

.hero-grid { display: grid; gap: clamp(40px, 5vw, 72px); align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.hero h1 { max-width: 15ch; }
.hero h1 .grad {
  background: var(--grad); background-size: 180% 180%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: grad-shift 8s ease-in-out infinite alternate;
}
@keyframes grad-shift { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
.hero-sub { font-size: var(--step-1); color: var(--muted); max-width: 52ch; margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.hero-note { font-size: 0.875rem; color: var(--muted); }

/* Soft pulse on the hero CTA (ported from 21st.dev, tuned to violet) */
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 14px oklch(0.58 0.24 310 / .35); }
  50% { box-shadow: 0 4px 26px oklch(0.58 0.24 310 / .55), 0 0 40px oklch(0.62 0.26 328 / .25); }
}
.btn-primary.pulse { animation: cta-pulse 2.6s ease-in-out infinite; }
.btn-primary.pulse:hover { animation-play-state: paused; }

/* hero visual: staggered glass cards (grid = no overlap at any width) */
.hero-visual {
  position: relative; display: grid; gap: 26px; align-content: center; min-height: 520px;
  transform-style: preserve-3d; will-change: transform; transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.glass-card {
  background: oklch(1 0 0 / .78); backdrop-filter: blur(10px);
  border: 1px solid oklch(1 0 0 / .9); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2); padding: 20px 24px;
}
.gc-metric { justify-self: start; width: min(72%, 300px); animation: float 7s ease-in-out infinite; }
.gc-metric .kpi { font: 700 2.2rem var(--font-display); letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gc-metric .kpi-label { font-size: 0.85rem; color: var(--muted); }
.gc-chart { justify-self: end; width: min(66%, 300px); animation: float 8s ease-in-out 0.8s infinite; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 80px; margin-top: 12px; }
.bars span { flex: 1; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, var(--fuchsia), var(--accent)); opacity: .9; transform-origin: bottom; animation: grow 900ms ease-out both; }
.bars span:nth-child(1) { height: 34%; animation-delay: .1s; }
.bars span:nth-child(2) { height: 48%; animation-delay: .2s; }
.bars span:nth-child(3) { height: 42%; animation-delay: .3s; }
.bars span:nth-child(4) { height: 64%; animation-delay: .4s; }
.bars span:nth-child(5) { height: 78%; animation-delay: .5s; }
.bars span:nth-child(6) { height: 96%; animation-delay: .6s; }
.gc-lead { justify-self: start; width: min(80%, 340px); animation: float 7.5s ease-in-out 1.4s infinite; }
.lead-row { display: flex; align-items: center; gap: 12px; }
.lead-dot { width: 40px; height: 40px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-strong); }
.lead-row strong { font-family: var(--font-display); }
.lead-row small { color: var(--muted); }
.pill { margin-left: auto; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; padding: 4px 10px; border-radius: var(--radius-full); background: oklch(0.94 0.05 160); color: oklch(0.42 0.1 160); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@media (max-width: 639px) {
  .hero-visual { min-height: 0; gap: 16px; }
  .hero-visual .glass-card { width: 100%; animation: none; }
}

/* ============ Trusted-by marquee ============ */
.trust { border-block: 1px solid var(--border); background: var(--surface); padding-block: 28px; }
.trust-label { display: block; text-align: center; margin-bottom: 18px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.marquee {
  overflow: hidden; display: flex;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.trust-names {
  display: flex; align-items: center; gap: 64px; list-style: none; margin: 0; padding: 0 32px;
  flex: none; min-width: 100%; justify-content: space-around;
  animation: marquee 34s linear infinite;
}
.marquee:hover .trust-names { animation-play-state: paused; }
.trust-names li { font: 600 1.1rem var(--font-display); letter-spacing: 0.08em; color: oklch(0.55 0.02 290); white-space: nowrap; transition: color 200ms; }
.trust-names li:hover { color: var(--accent-strong); }
.trust-names li img {
  height: 34px; width: auto; max-width: 190px; object-fit: contain;
  filter: grayscale(1); opacity: 0.62; transition: filter 250ms ease-out, opacity 250ms ease-out;
}
.trust-names li img.sq { height: 62px; }
.trust-names li img[alt="Sainath Estate"] { height: 40px; filter: grayscale(1) contrast(1.8) brightness(0.75); }
.trust-names li:hover img { filter: none; opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; flex-wrap: wrap; }
  .trust-names { animation: none; min-width: 0; flex-wrap: wrap; gap: 12px 40px; justify-content: center; }
  .trust-names[aria-hidden="true"] { display: none; }
}

/* ============ Problem → outcome ============ */
.shift-grid { display: grid; gap: 24px; }
@media (min-width: 900px) { .shift-grid { grid-template-columns: 1fr 1fr; } }
.shift-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow-1); }
.shift-card.after { border-color: oklch(0.85 0.09 296); background: linear-gradient(180deg, oklch(0.98 0.012 300), oklch(0.965 0.025 300)); }
.shift-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--radius-full); margin-bottom: 20px; }
.shift-card.before .shift-tag { background: oklch(0.94 0.01 290); color: var(--muted); }
.shift-card.after .shift-tag { background: linear-gradient(115deg, var(--accent), var(--fuchsia)); color: #fff; }
.shift-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.shift-card li { display: flex; gap: 12px; align-items: flex-start; }
.shift-card li svg { flex: none; margin-top: 3px; }
.shift-card.before li { color: var(--muted); }

/* ============ Services bento ============ */
.services { background: var(--surface); border-block: 1px solid var(--border); }
.bento { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.service {
  position: relative; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px); transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: var(--grad); opacity: 0; transition: opacity 250ms ease-out;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude;
  pointer-events: none;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.service:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md); display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-soft), oklch(0.93 0.06 330)); color: var(--accent-strong);
  transition: transform 250ms ease-out;
}
.service:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service p { color: var(--muted); font-size: 0.975rem; margin: 0; }
.service .tagline { display: block; margin-top: 14px; font: 600 0.85rem var(--font-display); color: var(--accent-strong); }

/* ============ Process ============ */
.steps { display: grid; gap: 20px; counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-1); }
.step-num { font: 700 0.9rem var(--font-display); letter-spacing: 0.08em; color: #fff; background: linear-gradient(115deg, var(--accent), var(--fuchsia)); border-radius: var(--radius-full); padding: 6px 14px; display: inline-block; margin-bottom: 18px; }
.step p { color: var(--muted); font-size: 0.975rem; margin: 0; }

/* ============ Why / stats band ============ */
.why { background: linear-gradient(180deg, var(--bg) 0%, oklch(0.965 0.02 298) 100%); }
.why-grid { display: grid; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.why-points li { display: flex; gap: 16px; }
.why-points .service-icon { width: 44px; height: 44px; flex: none; margin: 0; }
.why-points strong { display: block; font-family: var(--font-display); margin-bottom: 4px; }
.why-points span { color: var(--muted); font-size: 0.95rem; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(20px, 2.5vw, 32px); text-align: center; box-shadow: var(--shadow-1); }
.stat b { display: block; font: 700 clamp(1.9rem, 3vw, 2.75rem) var(--font-display); letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-size: 0.875rem; color: var(--muted); }

/* ============ FAQ ============ */
.faq-list { display: grid; gap: 12px; max-width: 780px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; cursor: pointer; font: 600 1.05rem var(--font-display);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--accent-strong); transition: transform 200ms ease-out; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 20px; color: var(--muted); margin: 0; }

/* ============ Contact ============ */
.contact { background: var(--surface); border-top: 1px solid var(--border); }
.contact-grid { display: grid; gap: clamp(32px, 5vw, 72px); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-form { display: grid; gap: 20px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow-1); }
.field { display: grid; gap: 8px; }
.field label { font: 600 0.9rem var(--font-display); }
.field input, .field textarea {
  font: 400 1rem var(--font-body); color: var(--fg); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 16px; width: 100%;
  transition: border-color 150ms;
}
.field input:hover, .field textarea:hover { border-color: oklch(0.8 0.06 296); }
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 0.8rem; color: var(--muted); }
.form-note { font-size: 0.85rem; color: var(--muted); margin: 0; }
.contact-alt { display: grid; gap: 8px; align-content: start; }
.contact-alt a.email { font: 600 var(--step-2) var(--font-display); letter-spacing: -0.01em; text-decoration: none; }
.contact-alt a.email:hover { text-decoration: underline; }

/* ============ Footer ============ */
.site-footer { background: var(--ink-section); color: oklch(0.85 0.01 290); }
.footer-grid { display: grid; gap: 40px; padding-block: clamp(48px, 6vw, 80px) 32px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.site-footer img { width: 180px; }
.site-footer h3 { color: #fff; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: oklch(0.78 0.02 290); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-tag { margin-top: 20px; max-width: 34ch; color: oklch(0.7 0.02 290); font-size: 0.95rem; }
.footer-bottom { border-top: 1px solid oklch(0.3 0.02 290); padding-block: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 0.85rem; color: oklch(0.65 0.02 290); }

/* ============ 21st.dev-style effects ============ */
/* Cursor spotlight on cards (hover devices only) */
@media (hover: hover) {
  .service::after, .stat::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0;
    background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), oklch(0.72 0.17 315 / .16), transparent 65%);
    transition: opacity 250ms ease-out; pointer-events: none;
  }
  .service:hover::after, .stat:hover::after { opacity: 1; }
}
.stat { position: relative; overflow: hidden; }

/* Border beam around the contact form */
@property --beam { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.contact-form { position: relative; }
.contact-form::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: conic-gradient(from var(--beam), transparent 0%, var(--accent) 8%, var(--fuchsia) 16%, transparent 26%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude;
  animation: beam 7s linear infinite; pointer-events: none;
}
@keyframes beam { to { --beam: 360deg; } }
@media (prefers-reduced-motion: reduce) { .contact-form::before { display: none; } }

/* ============ WhatsApp sticky CTA ============ */
.wa-cta {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; background: linear-gradient(135deg, #25D366, #1DA851);
  box-shadow: 0 6px 20px rgb(29 168 81 / .4), 0 2px 6px rgb(0 0 0 / .12);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}
.wa-cta::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  border: 2px solid #25D366; opacity: 0;
  animation: wa-ring 2.6s ease-out infinite;
}
@keyframes wa-ring {
  0% { transform: scale(1); opacity: .55; }
  70%, 100% { transform: scale(1.45); opacity: 0; }
}
.wa-cta:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 30px rgb(29 168 81 / .5), 0 3px 8px rgb(0 0 0 / .15); }
@media (prefers-reduced-motion: reduce) { .wa-cta::before { animation: none; } }

/* ============ Reveal on scroll ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 500ms ease-out, transform 500ms ease-out; }
.reveal.in { opacity: 1; transform: none; }

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