:root {
  --bg:        #0a0a0c;
  --bg-2:      #101014;
  --ink:       #f4f4f6;
  --muted:     #a6a6ad;
  --faint:     #6f6f77;
  --red:       #d8392b;
  --red-soft:  #e5564a;
  --amber:     #e0a45b;
  --glass:     rgba(255,255,255,0.055);
  --glass-brd: rgba(255,255,255,0.12);
  --radius:    22px;
  --shadow:    0 20px 60px -20px rgba(0,0,0,0.65);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg); color: var(--ink);
  min-height: 100vh; overflow-x: hidden; max-width: 100%;
  -webkit-font-smoothing: antialiased; position: relative;
}

/* ---------- AMBIENT BACKGROUND ---------- */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background:
    radial-gradient(1200px 720px at 50% -8%, rgba(216,57,43,0.16), transparent 60%),
    radial-gradient(900px 600px at 50% 118%, rgba(224,164,91,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2)); }
.grid-overlay { position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 55%, #000 0%, transparent 72%); }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.orb--red   { width: 520px; height: 520px; top: -140px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(216,57,43,0.8), transparent 70%);
  animation: float 18s ease-in-out infinite; }
.orb--amber { width: 440px; height: 440px; bottom: -160px; left: 20%;
  background: radial-gradient(circle, rgba(224,164,91,0.5), transparent 70%);
  animation: float 22s ease-in-out infinite reverse; }
.noise { position: absolute; inset: 0; opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
@keyframes float { 0%,100% { transform: translate(-50%,0) scale(1);} 50% { transform: translate(-50%,26px) scale(1.06);} }
.orb--amber { animation-name: floatB; }
@keyframes floatB { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(24px,-24px) scale(1.08);} }

/* ---------- GLASS ---------- */
.glass {
  background: var(--glass); border: 1px solid var(--glass-brd);
  backdrop-filter: blur(22px) saturate(140%); -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.08); }

/* ---------- NAVBAR ---------- */
.nav { position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px 12px 20px; border-radius: 18px; z-index: 50;
  background: rgba(13,13,17,0.72); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand__mark { width: 34px; height: 38px; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__type { display: flex; flex-direction: column; line-height: 1; letter-spacing: 0.22em; }
.brand__type strong { font-size: 15px; font-weight: 700; }
.brand__type span { font-size: 9px; color: var(--red-soft); font-weight: 600; margin-top: 3px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; position: relative; transition: color .25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0; background: var(--red); transition: width .28s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.wa-dot { width: 7px; height: 7px; border-radius: 50%; background: #25d366; animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55);} 70% { box-shadow: 0 0 0 8px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: inherit;
  font-weight: 600; font-size: 14px; text-decoration: none; cursor: pointer;
  border-radius: 14px; padding: 13px 22px; transition: transform .22s ease, box-shadow .22s ease, background .22s; }
.btn:active { transform: translateY(1px); }
.btn--ghost { color: var(--ink); border: 1px solid var(--glass-brd); background: rgba(255,255,255,0.04); padding: 10px 16px; border-radius: 12px; }
.btn--ghost:hover { background: rgba(255,255,255,0.09); }
.btn--primary { color: #fff; background: linear-gradient(135deg, var(--red) 0%, #b32a1f 100%);
  box-shadow: 0 12px 34px -10px rgba(216,57,43,.7), inset 0 1px 0 rgba(255,255,255,.25); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -10px rgba(216,57,43,.85); }
.btn--glass { color: var(--ink); background: rgba(255,255,255,0.06); border: 1px solid var(--glass-brd); }
.btn--glass:hover { background: rgba(255,255,255,0.11); transform: translateY(-2px); }
.btn--glass .arrow { width: 17px; height: 17px; transition: transform .25s; }
.btn--glass:hover .arrow { transform: translateX(4px); }
.wa-icon { width: 18px; height: 18px; }

/* ---------- HERO (centered) ---------- */
.hero { max-width: 1000px; margin: 0 auto; padding: 132px 20px 60px;
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; text-align: center;
  overflow-x: clip; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: .02em;
  color: var(--muted); background: rgba(255,255,255,0.05); border: 1px solid var(--glass-brd); margin-bottom: 24px; }
.eyebrow__pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--red-soft); box-shadow: 0 0 12px 2px rgba(229,86,74,.7); animation: pulse 2.4s infinite; }

.headline { font-family: "Fraunces", Georgia, serif; font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -0.015em; margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 34%, #c5c5cc 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.headline em { font-style: italic; font-weight: 500;
  background: linear-gradient(120deg, var(--red-soft), var(--amber));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.subline { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.12rem); line-height: 1.6; max-width: 560px; margin: 0 auto 22px; }

.hero__free { display: inline-flex; align-items: center; gap: 11px; margin: 0 auto 26px;
  padding: 9px 18px 9px 11px; border-radius: 100px; font-size: 14px; color: var(--ink);
  background: rgba(37,211,102,0.10); border: 1px solid rgba(37,211,102,0.35);
  box-shadow: 0 0 26px -6px rgba(37,211,102,0.45); }
.hero__free strong { font-weight: 700; }
.hero__free-badge { width: 24px; height: 24px; border-radius: 50%; flex: none; display: grid; place-items: center;
  color: #fff; background: linear-gradient(135deg,#25d366,#128c3e); }
.hero__free-badge svg { width: 14px; height: 14px; }
.head-actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; margin-bottom: 22px; }

/* ---------- CENTERPIECE SCENE ---------- */
.scene { position: relative; width: 100%; max-width: 720px; margin: 8px auto 0;
  display: flex; justify-content: center; }
.scene__glow { position: absolute; bottom: 2%; left: 50%; transform: translateX(-50%);
  width: 70%; height: 60%; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(216,57,43,0.38), rgba(224,164,91,0.12) 45%, transparent 70%);
  filter: blur(30px); z-index: 0; }

/* decorative orbit rings behind the stage */
.orbit-ring { position: absolute; top: 50%; left: 50%; width: 560px; height: 560px;
  margin: -280px 0 0 -280px; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.10); z-index: 0;
  animation: spin 40s linear infinite; pointer-events: none; }
.orbit-ring--2 { width: 400px; height: 400px; margin: -200px 0 0 -200px;
  border-style: solid; border-color: rgba(216,57,43,0.12); animation-duration: 26s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

/* floating sparkles */
.sparkle { position: absolute; width: 6px; height: 6px; border-radius: 50%; z-index: 2;
  background: #fff; box-shadow: 0 0 10px 2px rgba(255,255,255,0.6);
  animation: twinkle 3.4s ease-in-out infinite; pointer-events: none; }
.sparkle--1 { top: 16%; left: 20%; background: var(--red-soft); box-shadow: 0 0 10px 2px rgba(229,86,74,.7); animation-delay: .2s; }
.sparkle--2 { top: 28%; right: 16%; animation-delay: 1.1s; }
.sparkle--3 { bottom: 30%; left: 12%; background: var(--amber); box-shadow: 0 0 10px 2px rgba(224,164,91,.7); animation-delay: 1.7s; }
.sparkle--4 { bottom: 22%; right: 22%; animation-delay: .8s; }
@keyframes twinkle { 0%,100% { transform: scale(.4); opacity: .25; } 50% { transform: scale(1); opacity: 1; } }

.stage { position: relative; z-index: 1; width: min(560px, 100%); border-radius: 28px;
  padding: 14px; overflow: hidden; animation: bob 8s ease-in-out infinite; }
.stage::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(255,255,255,0.10), transparent 60%); pointer-events: none; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* viewfinder corner brackets */
.corner { position: absolute; width: 22px; height: 22px; z-index: 4; pointer-events: none;
  border-color: rgba(255,255,255,0.35); border-style: solid; border-width: 0; }
.corner--tl { top: 14px; left: 14px; border-top-width: 2px; border-left-width: 2px; border-top-left-radius: 8px; }
.corner--tr { top: 14px; right: 14px; border-top-width: 2px; border-right-width: 2px; border-top-right-radius: 8px; }
.corner--bl { bottom: 14px; left: 14px; border-bottom-width: 2px; border-left-width: 2px; border-bottom-left-radius: 8px; }
.corner--br { bottom: 14px; right: 14px; border-bottom-width: 2px; border-right-width: 2px; border-bottom-right-radius: 8px; }

/* soft scanning light sweep across the stage */
.scan-line { position: absolute; top: 0; left: 0; width: 100%; height: 40%; z-index: 3; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), transparent);
  animation: scan 6s ease-in-out infinite; }
@keyframes scan { 0%,100% { transform: translateY(-30%); opacity: 0; } 45%,55% { opacity: 1; } 50% { transform: translateY(160%); } }

.svg-defs { position: absolute; width: 0; height: 0; }
.scenes { position: relative; width: 100%; aspect-ratio: 640 / 520; }
.scene-svg { position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; transform: scale(.94) translateY(10px);
  transition: opacity .8s ease, transform .8s ease; pointer-events: none;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.5)); }
.scene-svg.is-active { opacity: 1; transform: scale(1) translateY(0); }

.pin-pulse { transform-box: fill-box; transform-origin: center;
  animation: pinPulse 2.6s ease-in-out infinite; }
@keyframes pinPulse { 0%,100% { transform: scale(.7); opacity: .5; } 50% { transform: scale(1.15); opacity: .9; } }

/* caption + progress dots */
.scene-caption { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 14px; padding: 9px 16px; border-radius: 100px; z-index: 4; }
.scene-caption__label { font-family: "Fraunces", serif; font-size: .95rem; font-weight: 500;
  color: var(--ink); white-space: nowrap; min-width: 128px; text-align: center; }
.scene-dots { display: flex; gap: 6px; }
.scene-dots span { width: 6px; height: 6px; border-radius: 100px; background: rgba(255,255,255,0.25);
  transition: width .35s ease, background .35s ease; }
.scene-dots span.on { width: 18px; background: var(--red-soft); }

/* floating glass labels around the property */
.float-chip { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px; border-radius: 100px; font-size: 12.5px; font-weight: 600; color: var(--ink);
  white-space: nowrap; animation: bob 7s ease-in-out infinite; }
.fc-dot { width: 8px; height: 8px; border-radius: 50%; }
.float-chip svg { width: 15px; height: 15px; }
.float-chip--1 { top: 12%;  left: -2%;  animation-delay: .2s; }
.float-chip--2 { top: 4%;   right: 2%;  animation-delay: 1.1s; }
.float-chip--3 { bottom: 20%; left: 0%;  animation-delay: .7s; }
.float-chip--4 { bottom: 10%; right: -1%; animation-delay: 1.5s; }

/* ---------- THE PROCESS ---------- */
.process { max-width: 1040px; margin: 0 auto; padding: 30px 20px 120px; overflow-x: clip; }
.process__head { text-align: center; margin-bottom: 64px; }
.section-title { font-family: "Fraunces", serif; font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; margin: 14px 0 12px;
  background: linear-gradient(180deg, #ffffff 40%, #c5c5cc 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-title em { font-style: italic;
  background: linear-gradient(120deg, var(--red-soft), var(--amber));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 460px; margin: 0 auto; }

.timeline { position: relative; }
.timeline__spine { position: absolute; left: 50%; top: 6px; bottom: 6px; width: 2px;
  transform: translateX(-50%); background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.timeline__progress { position: absolute; top: 0; left: 0; width: 100%; height: 0;
  background: linear-gradient(180deg, var(--red-soft), var(--amber));
  box-shadow: 0 0 14px rgba(216,57,43,0.55); }

.step { position: relative; display: grid; grid-template-columns: 1fr 64px 1fr; align-items: center;
  margin-bottom: 40px; opacity: 0; transition: opacity .6s ease; }
.step:last-child { margin-bottom: 0; }
.step.in { opacity: 1; }

.step__node { grid-column: 2; justify-self: center; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  font-family: "Fraunces", serif; font-weight: 600; font-size: 14px; color: var(--muted);
  background: rgba(16,16,20,0.85); border: 1px solid var(--glass-brd); backdrop-filter: blur(8px);
  transform: scale(.35);
  transition: transform .6s cubic-bezier(.34,1.56,.64,1) .12s,
              color .4s ease, border-color .4s ease, box-shadow .4s ease, background .4s ease; }
.step.in .step__node { transform: scale(1); color: var(--ink); border-color: rgba(229,86,74,0.6);
  box-shadow: 0 0 0 5px rgba(216,57,43,0.12); }
.step.in .step__node::after { content: ""; position: absolute; inset: -1px; border-radius: 50%;
  border: 1px solid rgba(229,86,74,0.5); animation: nodePulse 2.4s ease-out infinite; }
@keyframes nodePulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }
.step.in .step__node--end { background: linear-gradient(135deg, var(--red), #b32a1f); color: #fff;
  border-color: transparent; box-shadow: 0 0 0 5px rgba(216,57,43,0.2), 0 10px 26px -8px rgba(216,57,43,0.7); }

.step__card { grid-column: 1; justify-self: end; text-align: right; position: relative;
  padding: 24px 26px; border-radius: 18px; max-width: 430px;
  transform: translateX(-52px) scale(.96);
  transition: transform .75s cubic-bezier(.22,1,.36,1) .05s, box-shadow .4s ease; }
.step:nth-of-type(even) .step__card { grid-column: 3; justify-self: start; text-align: left;
  transform: translateX(52px) scale(.96); }
.step.in .step__card { transform: none; }
.step__media { display: block; width: 100%; height: 100px; border-radius: 14px; margin-bottom: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-brd); overflow: hidden; position: relative;
  transform: scale(.92); opacity: 0;
  transition: transform .6s cubic-bezier(.34,1.56,.64,1) .28s, opacity .4s ease .28s; }
.step.in .step__media { transform: none; opacity: 1; }
.step__media svg { display: block; width: 100%; height: 100%; }
.step__card h3 { font-family: "Fraunces", serif; font-weight: 500; font-size: 1.25rem; margin-bottom: 8px; }
.step__card p { color: var(--muted); font-size: .95rem; line-height: 1.55; }

/* ---------- WHY BILGO ---------- */
.why { max-width: 1120px; margin: 0 auto; padding: 20px 20px 120px; overflow-x: clip; }
.why__head { text-align: center; margin-bottom: 54px; }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { padding: 30px 28px; border-radius: 20px; position: relative;
  opacity: 0; transform: translateY(26px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1), border-color .3s, background .3s; }
.why-card.in { opacity: 1; transform: none; }
.why-card:nth-child(2) { transition-delay: .06s; }
.why-card:nth-child(3) { transition-delay: .12s; }
.why-card:nth-child(4) { transition-delay: .06s; }
.why-card:nth-child(5) { transition-delay: .12s; }
.why-card:nth-child(6) { transition-delay: .18s; }
.why-card:hover { transform: translateY(-5px); border-color: rgba(216,57,43,0.42);
  background: rgba(255,255,255,0.08); }
.why-card__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px;
  color: var(--red-soft); background: rgba(216,57,43,0.10); border: 1px solid rgba(216,57,43,0.28); margin-bottom: 18px; }
.why-card__icon svg { width: 24px; height: 24px; }
.why-card:nth-child(3n+2) .why-card__icon { color: var(--amber); background: rgba(224,164,91,0.10); border-color: rgba(224,164,91,0.28); }
.why-card:nth-child(3n) .why-card__icon { color: #6ee79a; background: rgba(110,231,154,0.10); border-color: rgba(110,231,154,0.28); }
.why-card h3 { font-family: "Fraunces", serif; font-weight: 500; font-size: 1.28rem; margin-bottom: 9px; }
.why-card p { color: var(--muted); font-size: .96rem; line-height: 1.55; }

/* --- per-step mini animations (run only when revealed) --- */
.anim * { transform-box: fill-box; }
.step .anim, .step .anim * { animation-play-state: paused; }
.step.in .anim, .step.in .anim * { animation-play-state: running; }

/* 1 · share (paper plane on a motion path) */
.a1-plane { offset-path: path("M12 52 C 40 22, 80 22, 108 44"); offset-rotate: auto;
  animation: a1fly 2.8s ease-in-out infinite; }
@keyframes a1fly { 0% { offset-distance: 0%; opacity: 0; } 10% { opacity: 1; } 85% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }
.a1-ping { transform-origin: center; animation: a1ping 2.8s ease-out infinite; }
@keyframes a1ping { 0%,80% { transform: scale(1); opacity: 0; } 86% { opacity: .8; } 100% { transform: scale(3.2); opacity: 0; } }

/* 2 · choose (check pops on a card) */
.a2-check { transform-origin: center; animation: a2pop 3s ease-in-out infinite; }
@keyframes a2pop { 0%,8% { transform: scale(0); opacity: 0; } 22% { transform: scale(1.15); opacity: 1; } 30% { transform: scale(1); } 82% { transform: scale(1); opacity: 1; } 92%,100% { transform: scale(0); opacity: 0; } }

/* 3 · discussion (typing dots + reply bubble) */
.a3-d { transform-origin: center; animation: a3bounce 1.4s ease-in-out infinite; }
.a3-d2 { animation-delay: .16s; } .a3-d3 { animation-delay: .32s; }
@keyframes a3bounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }
.a3-reply { transform-origin: right bottom; animation: a3reply 3.4s ease-in-out infinite; }
@keyframes a3reply { 0%,45% { transform: scale(0); opacity: 0; } 56% { transform: scale(1); opacity: 1; } 90% { transform: scale(1); opacity: 1; } 100% { transform: scale(0); opacity: 0; } }

/* 4 · site visit (pin drops + ripple) */
.a4-pin { transform-origin: bottom center; animation: a4drop 2.8s ease-in-out infinite; }
@keyframes a4drop { 0% { transform: translateY(-30px); opacity: 0; } 15% { opacity: 1; } 40% { transform: translateY(0); } 50% { transform: translateY(-6px); } 60% { transform: translateY(0); } 85% { opacity: 1; } 100% { transform: translateY(0); opacity: 0; } }
.a4-ripple { transform-origin: center; animation: a4ripple 2.8s ease-out infinite; }
@keyframes a4ripple { 0%,40% { transform: scale(.3); opacity: 0; } 52% { opacity: .7; } 82% { transform: scale(1.7); opacity: 0; } 100% { opacity: 0; } }

/* 5 · sign (signature draws itself, pen follows) */
.a5-sig { stroke-dasharray: 92; stroke-dashoffset: 92; animation: a5draw 3.2s ease-in-out infinite; }
@keyframes a5draw { 0% { stroke-dashoffset: 92; } 55% { stroke-dashoffset: 0; } 85% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 92; } }
.a5-pen { offset-path: path("M42 50 c 4 -8, 8 8, 12 0 c 3 -6, 6 4, 10 2 c 3 -1, 5 -3, 8 -6"); offset-rotate: auto;
  animation: a5pen 3.2s ease-in-out infinite; }
@keyframes a5pen { 0% { offset-distance: 0%; opacity: 0; } 5% { opacity: 1; } 55% { offset-distance: 100%; opacity: 1; } 62% { opacity: 0; } 100% { offset-distance: 100%; opacity: 0; } }

/* 6 · ownership (key turns + sparkle) */
.a6-key { transform-origin: 23% 50%; animation: a6turn 3s ease-in-out infinite; }
@keyframes a6turn { 0%,25% { transform: rotate(0); } 50% { transform: rotate(88deg); } 64% { transform: rotate(88deg); } 100% { transform: rotate(0); } }
.a6-spark { transform-origin: center; animation: a6spark 3s ease-in-out infinite; }
@keyframes a6spark { 0%,55% { transform: scale(0); opacity: 0; } 70% { transform: scale(1); opacity: 1; } 85% { transform: scale(1); opacity: 1; } 100% { transform: scale(0); opacity: 0; } }

/* ---------- FOOTER + CONTACT ---------- */
.footer { max-width: 1200px; margin: 0 auto; padding: 20px 20px 40px; }

.cta { position: relative; overflow: hidden; border-radius: 28px; padding: 52px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  border-color: rgba(216,57,43,0.25); }
.cta__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(600px 300px at 20% 0%, rgba(216,57,43,0.22), transparent 60%),
              radial-gradient(500px 300px at 100% 120%, rgba(224,164,91,0.14), transparent 60%); }
.cta__text { position: relative; z-index: 1; max-width: 560px; }
.cta__text .eyebrow { margin-bottom: 18px; }
.cta__text .section-title { text-align: left; margin: 0 0 12px; font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.cta__text .section-sub { text-align: left; margin: 0; }
.cta__free { color: #6ee79a; font-weight: 700; }
.cta__actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 13px; }

.footer__main { display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px;
  padding: 64px 8px 44px; }
.footer__brand .brand { margin-bottom: 20px; }
.footer__tag { color: var(--muted); font-size: .95rem; line-height: 1.65; max-width: 340px; margin-bottom: 22px; }
.footer__social { display: flex; gap: 12px; }
.social { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  color: var(--muted); background: rgba(255,255,255,0.05); border: 1px solid var(--glass-brd);
  transition: color .25s, background .25s, transform .25s, border-color .25s; }
.social svg { width: 19px; height: 19px; }
.social:hover { color: #fff; background: rgba(216,57,43,0.18); border-color: rgba(216,57,43,0.5); transform: translateY(-3px); }

.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__col h4 { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 18px; }
.footer__col a { display: flex; align-items: center; gap: 9px; color: var(--muted); text-decoration: none;
  font-size: .95rem; margin-bottom: 12px; transition: color .22s; width: fit-content; }
.footer__col a:hover { color: var(--ink); }
.footer__col a svg { width: 17px; height: 17px; flex: none; color: var(--red-soft); }
.footer__addr { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .95rem; }
.footer__addr svg { width: 17px; height: 17px; flex: none; color: var(--red-soft); }

.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 24px 8px 0; border-top: 1px solid var(--glass-brd); color: var(--faint); font-size: 13px; }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a { color: var(--faint); text-decoration: none; transition: color .22s; }
.footer__legal a:hover { color: var(--ink); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .process { padding: 20px 18px 90px; }
  .process__head { margin-bottom: 44px; }
  .timeline__spine { left: 24px; }
  .step { grid-template-columns: 48px 1fr; gap: 14px; margin-bottom: 24px; }
  .step__node { grid-column: 1; width: 42px; height: 42px; font-size: 13px; }
  .step__card,
  .step:nth-of-type(even) .step__card { grid-column: 2; justify-self: start; text-align: left;
    max-width: none; padding: 20px; transform: translateX(26px) scale(.97); }
  .step.in .step__card,
  .step.in:nth-of-type(even) .step__card { transform: none; }
  .step__media { height: 92px; }
}
@media (max-width: 900px) {
  .why { padding-bottom: 90px; }
  .why__head { margin-bottom: 40px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr; gap: 34px; padding-top: 48px; }
}
@media (max-width: 640px) {
  .cta { padding: 34px 26px; }
  .cta__actions { width: 100%; }
  .cta__actions .btn { flex: 1 1 auto; justify-content: center; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 980px) { .nav__links { display: none; } }
@media (max-width: 680px) {
  .hero { padding: 104px 18px 48px; }
  .brand__type { display: none; }
  .headline { font-size: clamp(2.1rem, 8.5vw, 3rem); }
  .subline { font-size: 1rem; }
  .orbit-ring { width: 380px; height: 380px; margin: -190px 0 0 -190px; }
  .orbit-ring--2 { width: 270px; height: 270px; margin: -135px 0 0 -135px; }
  .float-chip { font-size: 11px; padding: 7px 11px; }
  .float-chip--1 { top: 5%; left: 1%; }
  .float-chip--2 { top: 0; right: 1%; }
  .float-chip--3, .float-chip--4 { display: none; }
}
@media (max-width: 560px) {
  .why__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .nav { padding: 10px 12px; width: calc(100% - 24px); }
  .nav__cta { padding: 9px 12px; font-size: 12.5px; }
  .headline { font-size: clamp(1.85rem, 9vw, 2.6rem); }
  .subline { font-size: .95rem; margin-bottom: 24px; }
  .head-actions { flex-direction: column; width: 100%; gap: 10px; }
  .head-actions .btn { width: 100%; justify-content: center; }
  .stage { padding: 10px; border-radius: 20px; }
  .corner { width: 15px; height: 15px; top: 10px; left: 10px; }
  .corner--tr { left: auto; right: 10px; } .corner--bl { top: auto; bottom: 10px; }
  .corner--br { top: auto; left: auto; right: 10px; bottom: 10px; }
  .scene-caption { bottom: 10px; gap: 10px; padding: 7px 13px; }
  .scene-caption__label { font-size: .85rem; min-width: 100px; }
  .float-chip--1, .float-chip--2 { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .stage, .float-chip, .orb, .orbit-ring, .sparkle, .scan-line, .pin-pulse { animation: none; }
  .scan-line { display: none; }
  .step, .step__card, .step__media, .step__node, .why-card { opacity: 1 !important; transform: none !important; transition: none !important; }
  .step.in .step__node::after { display: none; }
  .anim, .anim * { animation: none !important; }
}
