:root{
  --navy-950:#091a3d;
  --navy-900:#0f2a5c;
  --navy-800:#15366f;
  --navy-700:#1a3d7c;
  --navy-600:#2453a3;
  --navy-500:#3a6dc4;
  --navy-300:#7b95c3;
  --navy-100:#dbe5f5;
  --navy-50:#eef3fb;
  --gold-500:#f5b800;
  --gold-400:#ffc928;
  --gold-100:#fff3cb;
  --cream:#faf6ec;
  --bg:#ffffff;
  --bg-soft:#f7f9fc;
  --ink-900:#0b1220;
  --ink-700:#243049;
  --ink-500:#4a5876;
  --ink-400:#6b7790;
  --ink-300:#9aa5be;
  --line:#e6ebf3;
  --line-strong:#cfd6e4;
  --shadow-sm: 0 1px 2px rgba(11,18,32,.06), 0 1px 1px rgba(11,18,32,.04);
  --shadow-md: 0 6px 18px -8px rgba(15,42,92,.18), 0 2px 6px rgba(15,42,92,.06);
  --shadow-lg: 0 24px 60px -24px rgba(15,42,92,.28), 0 8px 24px -12px rgba(15,42,92,.14);
  --shadow-xl: 0 40px 80px -30px rgba(15,42,92,.35);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}
*{box-sizing:border-box}
html,body{margin:0; padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Manrope", system-ui, -apple-system, sans-serif;
  font-size:16px; color:var(--ink-700);
  background:var(--bg); line-height:1.55;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
.serif {
  font-family: "Lora", "Georgia", serif;
  letter-spacing: -.01em;
}
.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}
h1,h2,h3,h4{color:var(--ink-900); margin:0; font-weight:600; letter-spacing:-.02em}
h1,h2{font-family:"Lora", serif; font-weight:600}
p{margin:0}
a{color:inherit; text-decoration:none}
button{font-family:inherit; cursor:pointer; border:0; background:none}
.container{max-width:1240px; margin:0 auto; padding:0 28px}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  color:var(--navy-700);
}
.eyebrow .dot{width:6px; height:6px; border-radius:50%; background:var(--gold-500); box-shadow:0 0 0 4px rgba(245,184,0,.18)}

/* BREADCRUMBS */
.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-400);
  margin-bottom: 6px;
}
.crumbs a {
  color: var(--navy-700);
  font-weight: 600;
}
.crumbs .sep {
  opacity: .5;
}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled{border-color:var(--line); box-shadow:0 1px 0 rgba(15,42,92,.04)}
.nav-inner{display:flex; align-items:center; gap:32px; padding:14px 0}
.brand{display:flex; align-items:center; gap:10px}
.brand img{height:34px; width:auto; display:block}
.nav-links{display:flex; gap:28px; margin-left:14px}
.nav-links a{font-size:14px; font-weight:500; color:var(--ink-700); position:relative; padding:6px 0}
.nav-links a:hover{color:var(--navy-700)}
.nav-links a.active{color:var(--navy-900); font-weight:600}
.nav-links a::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px;
  background:var(--gold-500); transform:scaleX(0); transform-origin:left;
  transition:transform .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{transform:scaleX(1)}
.nav-cta{margin-left:auto; display:flex; align-items:center; gap:14px}
.nav-cta .login{font-size:14px; font-weight:600; color:var(--navy-700)}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:11px 20px; font-size:14px; font-weight:600;
  border-radius:999px; transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space:nowrap; cursor:pointer;
}
.btn-primary{background:var(--navy-700); color:#fff; box-shadow:0 8px 18px -8px rgba(26,61,124,.5)}
.btn-primary:hover{background:var(--navy-800); transform:translateY(-1px); box-shadow:0 12px 22px -8px rgba(26,61,124,.55)}
.btn-gold{background:var(--gold-500); color:var(--navy-900); box-shadow:0 8px 18px -8px rgba(245,184,0,.55)}
.btn-gold:hover{background:var(--gold-400); transform:translateY(-1px)}
.btn-ghost{background:transparent; color:var(--navy-700); border:1px solid var(--line-strong)}
.btn-ghost:hover{border-color:var(--navy-700); background:var(--navy-50)}
.btn .arr{transition:transform .2s ease}
.btn:hover .arr{transform:translateX(3px)}

/* SECTION HEADERS */
.sect-head{text-align:center; max-width:760px; margin: 0 auto 64px}
.sect-head h2{
  font-family:"Lora", serif; font-weight:600;
  font-size: clamp(32px, 4vw, 50px); line-height:1.1; margin-top:18px; color:var(--navy-950);
}
.sect-head p{margin-top:18px; font-size:18px; color:var(--ink-500); line-height:1.55}

/* REVEAL */
.reveal{opacity:0; transform:translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1)}
.reveal.in{opacity:1; transform:none}

/* FINAL CTA SHARED */
.final-cta{
  position:relative; overflow:hidden;
  background: radial-gradient(800px 500px at 80% 20%, rgba(245,184,0,.15), transparent 60%), linear-gradient(135deg, var(--navy-900), var(--navy-950));
  border-radius:var(--radius-xl);
  padding:80px 60px; color:#fff; text-align:center;
}
.final-cta h2{color:#fff; font-family:"Lora", serif; font-weight:600; font-size: clamp(36px, 4.5vw, 56px); line-height:1.05}
.final-cta p{margin-top:20px; color:#a4b1c8; font-size:18px; max-width:620px; margin-left:auto; margin-right:auto}
.final-cta .actions{margin-top:36px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap}
.final-cta .btn{padding:16px 28px; font-size:15px}
.spark{
  position:absolute; pointer-events:none;
  width:8px; height:8px;
  background: var(--gold-500);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
  opacity:.8;
}
@keyframes twinkle{0%,100%{transform:scale(.5); opacity:.2} 50%{transform:scale(1.1); opacity:.9}}
.cta-stars{position:absolute; pointer-events:none; animation: twinkle 3s ease-in-out infinite}
.cta-s1{top:30px; left:60px}
.cta-s2{bottom:40px; right:80px; animation-delay:.4s}
.cta-s3{top:80px; right:30%; animation-delay:.8s; width:10px; height:10px}

/* FOOTER */
footer{padding:60px 0 40px; border-top:1px solid var(--line); margin-top:0; background:#fff}
.foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px}
.foot-brand img{height:38px}
.foot-brand p{margin-top:14px; font-size:14px; color:var(--ink-500); max-width:280px}
.foot-col h5{font-size:13px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-700); margin-bottom:14px}
.foot-col a{display:block; padding:5px 0; font-size:14px; color:var(--ink-500)}
.foot-col a:hover{color:var(--navy-700)}
.foot-bot{
  border-top:1px solid var(--line); padding-top:22px;
  display:flex; align-items:center; justify-content:space-between;
  font-size:13px; color:var(--ink-400); flex-wrap:wrap; gap:14px;
}
.foot-soc{display:flex; gap:10px}
.foot-soc a{
  width:34px; height:34px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; color:var(--ink-500);
}
.foot-soc a:hover{border-color:var(--navy-700); color:var(--navy-700)}

@media (max-width: 980px){
  .nav-links{display:none}
  .foot-grid{grid-template-columns:1fr 1fr}
}


/* ============================================================= */
/* =========          LANDING PAGE SPECIFIC            ========= */
/* ============================================================= */

/* ========= HERO ========= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background:
    radial-gradient(900px 500px at 12% 10%, rgba(245, 184, 0, .10), transparent 60%),
    radial-gradient(800px 600px at 95% 30%, rgba(36, 83, 163, .10), transparent 60%),
    linear-gradient(180deg, #fff 0%, #f8fafd 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink-500);
  box-shadow: var(--shadow-sm);
}

.hero-pill .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  margin-top: 22px;
  color: var(--navy-950);
}

.hero h1 .accent {
  background: linear-gradient(120deg, var(--navy-700) 0%, var(--navy-500) 60%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10' preserveAspectRatio='none'><path d='M0 6 Q50 0 100 5 T200 4' fill='none' stroke='%23f5b800' stroke-width='3' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
  opacity: .85;
}

.hero p.lede {
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--ink-500);
  margin-top: 22px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  align-items: center;
  flex-wrap: wrap
}

.hero-cta .btn {
  padding: 14px 24px;
  font-size: 15px
}

.hero-meta {
  display: flex;
  gap: 22px;
  margin-top: 26px;
  align-items: center;
  color: var(--ink-400);
  font-size: 13px
}

.hero-meta .check {
  color: #15a36b;
  font-weight: 700
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px
}

/* hero animated visual: phone + QR + review card stack */
.hero-visual {
  position: relative;
  height: 560px
}

.phone {
  position: absolute;
  top: 0;
  right: 30px;
  width: 300px;
  height: 600px;
  background: #0b1220;
  border-radius: 42px;
  box-shadow: var(--shadow-xl), inset 0 0 0 2px rgba(255, 255, 255, .04);
  padding: 14px;
  transform: rotate(-4deg);
  transform-origin: 60% 50%;
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0)
  }
  50% {
    transform: rotate(-4deg) translateY(-10px)
  }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, #f5f8fd 100%);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #0b1220;
  border-radius: 14px;
  z-index: 2;
}

.phone-frames {
  position: absolute;
  inset: 0
}

.frame {
  position: absolute;
  inset: 0;
  padding: 44px 18px 18px;
  opacity: 0;
  transition: opacity .5s ease;
  display: flex;
  flex-direction: column;
}

.frame.active {
  opacity: 1
}

/* Frame 1: QR scan */
.frame-qr {
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center
}

.frame-qr h4 {
  font-size: 15px;
  color: var(--navy-900);
  font-family: "Manrope";
  font-weight: 700
}

.frame-qr p {
  font-size: 12px;
  color: var(--ink-400)
}

.qr-box {
  width: 170px;
  height: 170px;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 0 0 1px var(--line), 0 14px 30px -16px rgba(15, 42, 92, .3);
  position: relative;
}

.qr-svg {
  width: 100%;
  height: 100%;
  display: block
}

.qr-scanline {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(245, 184, 0, .7);
  animation: qr-scan 2.4s ease-in-out infinite;
}

@keyframes qr-scan {
  0%,
  100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(150px)
  }
}

.qr-cta {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--navy-700);
  padding: 9px 16px;
  border-radius: 999px;
}

/* Frame 2: pick what you liked */
.frame-pick {
  padding-top: 56px
}

.frame-pick h4 {
  font-size: 14px;
  color: var(--navy-900);
  font-weight: 700;
  margin-bottom: 4px
}

.frame-pick .sub {
  font-size: 11.5px;
  color: var(--ink-400);
  margin-bottom: 14px
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.chip {
  font-size: 11px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-500);
  transition: all .3s ease;
}

.chip.on {
  background: var(--navy-700);
  color: #fff;
  border-color: var(--navy-700);
  transform: translateY(-1px)
}

.chip.warn {
  background: #fff5e8;
  color: #b45309;
  border-color: #fde2bb
}

.tone-row {
  display: flex;
  gap: 8px;
  margin-top: 14px
}

.tone {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-500);
  background: #fff;
}

.tone.on {
  border-color: var(--navy-700);
  color: var(--navy-700);
  background: var(--navy-50)
}

/* Frame 3: AI generating */
.frame-gen {
  padding-top: 54px
}

.gen-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px
}

.gen-head .ai-pulse {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-400), var(--navy-700));
  box-shadow: 0 0 0 4px rgba(245, 184, 0, .18);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(245, 184, 0, .18)
  }
  50% {
    box-shadow: 0 0 0 8px rgba(245, 184, 0, .28)
  }
}

.gen-head .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-900)
}

.gen-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 11.5px;
  color: var(--ink-700);
  line-height: 1.55;
  min-height: 160px;
}

.gen-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px
}

.gen-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-500)
}

.typing::after {
  content: "▍";
  color: var(--navy-700);
  animation: caret 1s steps(1) infinite
}

@keyframes caret {
  50% {
    opacity: 0
  }
}

/* Frame 4: posted */
.frame-done {
  padding-top: 60px;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  display: flex
}

.success-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 14px 32px -10px rgba(16, 185, 129, .55);
  animation: pop .5s cubic-bezier(.2, 1.6, .4, 1);
}

@keyframes pop {
  from {
    transform: scale(.5);
    opacity: 0
  }
  to {
    transform: scale(1);
    opacity: 1
  }
}

.frame-done h4 {
  font-size: 16px;
  color: var(--navy-900);
  font-weight: 700;
  margin-top: 8px
}

.frame-done p {
  font-size: 12px;
  color: var(--ink-400);
  padding: 0 18px
}

.posted-where {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  background: var(--navy-50);
  color: var(--navy-700);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

/* floating side cards */
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  width: 240px;
}

.float-card .row {
  display: flex;
  align-items: center;
  gap: 10px
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px
}

.fc-1 {
  top: 30px;
  left: 0;
  transform: rotate(-3deg);
  animation: float-a 7s ease-in-out infinite
}

.fc-2 {
  bottom: 30px;
  left: 50px;
  transform: rotate(2deg);
  animation: float-b 8s ease-in-out infinite
}

.fc-3 {
  top: 200px;
  right: -80px;
  transform: rotate(4deg);
  animation: float-c 6.5s ease-in-out infinite
}

@keyframes float-a {
  0%,
  100% {
    transform: rotate(-3deg) translateY(0)
  }
  50% {
    transform: rotate(-3deg) translateY(-12px)
  }
}

@keyframes float-b {
  0%,
  100% {
    transform: rotate(2deg) translateY(0)
  }
  50% {
    transform: rotate(2deg) translateY(-8px)
  }
}

@keyframes float-c {
  0%,
  100% {
    transform: rotate(4deg) translateY(0)
  }
  50% {
    transform: rotate(4deg) translateY(10px)
  }
}

.fc-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-900)
}

.fc-time {
  font-size: 11px;
  color: var(--ink-400)
}

.fc-stars {
  display: flex;
  gap: 1px;
  margin: 8px 0 6px
}

.fc-stars svg {
  width: 13px;
  height: 13px;
  fill: var(--gold-500)
}

.fc-text {
  font-size: 11.5px;
  color: var(--ink-500);
  line-height: 1.5
}

.fc-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm)
}

/* sparkle particles around phone */
.spark {
  position: absolute;
  pointer-events: none;
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
  opacity: .8;
}

.spark:nth-child(1) {
  top: 80px;
  left: 80px;
  animation: twinkle 3s ease-in-out infinite
}

.spark:nth-child(2) {
  top: 380px;
  right: 60px;
  animation: twinkle 3.4s ease-in-out infinite .4s
}

.spark:nth-child(3) {
  top: 230px;
  left: 140px;
  animation: twinkle 2.8s ease-in-out infinite .8s;
  width: 6px;
  height: 6px
}

.spark:nth-child(4) {
  bottom: 60px;
  right: 160px;
  animation: twinkle 3.6s ease-in-out infinite .2s;
  width: 10px;
  height: 10px
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(.5);
    opacity: .2
  }
  50% {
    transform: scale(1.1);
    opacity: .9
  }
}

/* ========= TRUST BAR ========= */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 28px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between
}

.trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-400)
}

.trust-stats {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 10px
}

.trust-stat .badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

.trust-stat .num {
  font-weight: 700;
  color: var(--ink-900);
  font-size: 15px
}

.trust-stat .stars {
  color: var(--gold-500);
  font-size: 13px
}

.trust-stat .src {
  font-size: 12px;
  color: var(--ink-400)
}

/* ========= SECTION ========= */
section {
  padding: 110px 0;
  position: relative
}

.sect-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px
}

.sect-head h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
  margin-top: 18px;
  color: var(--navy-950)
}

.sect-head p {
  margin-top: 18px;
  font-size: 18px;
  color: var(--ink-500);
  line-height: 1.55
}

/* fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1)
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ========= HOW IT WORKS (v2) ========= */
.how {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.how .how-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(59, 91, 219, .08);
  color: #3b5bdb;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.how .sect-head h2 {
  font-family: "Lora", serif;
  font-size: clamp(28px, 3.6vw, 38px);
  color: var(--navy-950);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

/* no connector line */
.steps::before {
  display: none;
}

.step {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  z-index: 1;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -12px rgba(15, 42, 92, .14);
}

/* card header row: icon + step number */
.step-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.step-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(59, 91, 219, .08);
  color: #3b5bdb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.step-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-300);
  letter-spacing: .04em;
  line-height: 1;
  /* reset old circle styles */
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  margin-bottom: 0;
  font-family: "Manrope", sans-serif;
}

.step h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--navy-900);
}

.step p {
  color: var(--ink-400);
  font-size: 13px;
  line-height: 1.6;
}

.step-art {
  margin-top: auto;
  padding-top: 16px;
  height: 140px;
  background: var(--bg-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* step 1 art: Connect business */
.art-connect {
  background: var(--bg-soft);
}

.connect-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.connect-badge .g-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
}

.connect-badge .c-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.connect-badge .c-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-300);
  animation: dot-pulse 1.4s ease-in-out infinite;
}

.connect-badge .c-dots span:nth-child(2) {
  animation-delay: .2s;
}

.connect-badge .c-dots span:nth-child(3) {
  animation-delay: .4s;
}

@keyframes dot-pulse {
  0%,
  100% {
    opacity: .3;
    transform: scale(.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.connect-badge .sso-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
}

/* step 2 art: Collect reviews */
.art-collect {
  background: var(--bg-soft);
  flex-direction: column;
  gap: 8px;
  padding: 14px;
}

.msg-bubble {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-700);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  width: 88%;
  animation: float-msg 3s ease-in-out infinite;
}

.msg-bubble .wa-ico {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}

.msg-bubble.whatsapp {
  align-self: flex-start;
}

.msg-bubble.sms {
  border-left: 2px solid #3b82f6;
  align-self: flex-end;
  animation-delay: 1.5s;
}

@keyframes float-msg {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* step 3 art: thumbs and chips (sentiment routing) */
.art-pick {
  background: var(--bg-soft);
  flex-direction: column;
  gap: 10px;
  padding: 14px;
}

.art-pick .row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.art-pick .pchip {
  font-size: 10.5px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy-700);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.art-pick .pchip.on {
  background: var(--navy-700);
  color: #fff;
  border-color: var(--navy-700);
}

.art-pick .pchip.warn {
  background: #fff8ef;
  color: #b45309;
  border-color: #fde2bb;
}

.thumbs {
  display: flex;
  gap: 10px;
}

.thumb {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  animation: bob 2s ease-in-out infinite;
}

.thumb.up {
  background: rgba(16, 185, 129, .1);
  color: #10b981;
}

.thumb.dn {
  background: rgba(239, 68, 68, .1);
  color: #ef4444;
  animation-delay: .5s;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* step 4 art: Improve & convert */
.art-improve {
  background: var(--bg-soft);
}

.rank-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.rank-num {
  font-family: "Lora", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
}

.rank-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-900);
}

.rank-stars {
  color: var(--gold-500);
  font-size: 11px;
  letter-spacing: 1px;
}

/* ========= FEATURES ========= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px 24px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: var(--navy-100);
  box-shadow: var(--shadow-lg)
}

.feature .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f1f3f6;
  border: 1px solid #e3e7ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-500);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.feature .icon svg {
  display: block
}

.feature.hl .icon {
  background: linear-gradient(135deg, #fff3c4, #fde97a);
  color: #92600a;
  border-color: #f5d660;
  box-shadow: 0 4px 12px -4px rgba(245, 184, 0, .35);
}

.feature h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy-900)
}

.feature p {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
  flex: 1
}

.feature .meta-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f0f2f4;
  color: #52606d;
  border: 1px solid #dde1e7;
}

/* ========= BIG DEMO BLOCK ========= */
.demo {
  background: var(--navy-950);
  color: #fff;
  overflow: hidden;
  position: relative
}

.demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 12% 20%, rgba(245, 184, 0, .10), transparent 60%),
    radial-gradient(800px 500px at 88% 80%, rgba(58, 109, 196, .18), transparent 60%);
}

.demo .container {
  position: relative
}

.demo .sect-head h2 {
  color: #fff
}

.demo .sect-head p {
  color: #a4b1c8
}

.demo .eyebrow {
  color: var(--gold-500)
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.demo-input {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}

.demo-input h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px
}

.demo-input .biz {
  font-size: 13px;
  color: #a4b1c8;
  margin-bottom: 18px
}

.demo-input .group-label {
  font-size: 12px;
  font-weight: 600;
  color: #a4b1c8;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 16px 0 10px
}

.demo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.dchip {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #cbd5e8;
  cursor: pointer;
  transition: all .2s ease;
  user-select: none;
}

.dchip:hover {
  border-color: rgba(245, 184, 0, .5);
  color: #fff
}

.dchip.on {
  background: linear-gradient(135deg, var(--gold-500), #f0a800);
  color: var(--navy-950);
  border-color: var(--gold-500);
  font-weight: 700
}

.dchip.dn {
  background: rgba(239, 68, 68, .08);
  border-color: rgba(239, 68, 68, .25);
  color: #fca5a5
}

.dchip.dn.on {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
  font-weight: 700
}

.demo-tone {
  display: flex;
  gap: 8px;
  margin-top: 6px
}

.dtone {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .03);
  color: #a4b1c8;
  cursor: pointer;
  transition: all .2s ease;
}

.dtone.on {
  background: rgba(58, 109, 196, .18);
  border-color: var(--navy-500);
  color: #fff
}

.gen-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-500), #f0a800);
  color: var(--navy-950);
  border-radius: 12px;
  transition: transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 16px 30px -12px rgba(245, 184, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gen-btn:hover {
  transform: translateY(-1px)
}

.demo-output {
  background: #fff;
  color: var(--ink-700);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  position: relative;
  min-height: 340px;
}

.demo-output .header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: #fafbfd;
}

.demo-output .gdot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853 50%, #fbbc04 70%, #ea4335);
}

.demo-output .gtxt {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-900)
}

.demo-output .ghint {
  margin-left: auto;
  font-size: 11px;
  color: var(--ink-400)
}

.demo-output .body {
  padding: 22px 22px 24px
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-500)
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px
}

.review-author .ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.review-author .nm {
  font-weight: 700;
  color: var(--ink-900);
  font-size: 14px
}

.review-author .when {
  font-size: 12px;
  color: var(--ink-400)
}

.review-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-700);
  min-height: 120px
}

.review-text .cursor {
  color: var(--navy-700);
  animation: caret 1s steps(1) infinite
}

.review-actions {
  display: flex;
  gap: 10px;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  background: #fafbfd;
}

.ract {
  flex: 1;
  padding: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-500);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ract.primary {
  background: var(--navy-700);
  color: #fff;
  border-color: var(--navy-700)
}

/* ========= USE CASES ========= */
.usecases {
  background: var(--bg-soft);
}

.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.uc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  /* 32px */
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.uc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-100);
}

.uc-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.uc-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.uc-icon-box svg {
  width: 20px;
  height: 20px;
  display: block;
}

.uc-card-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-300);
  letter-spacing: .04em;
  font-family: "Manrope", sans-serif;
}

.uc-card h3 {
  font-size: 22px;
  font-family: "Lora", serif;
  color: var(--ink-900);
  margin: 0;
}

.uc-card p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
}

.uc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uc-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
}

.uc-card li svg {
  flex-shrink: 0;
  color: #10b981;
}

.uc-preview {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 160px;
  margin-top: auto;
  border: 1px solid var(--line);
}

.uc-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: color .2s ease;
}

.uc-link:hover {
  color: var(--navy-900);
}

/* ========= STATS ========= */
.stats-strip {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 200px at 90% 110%, rgba(245, 184, 0, .18), transparent 60%);
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px
}

.stat .v {
  font-family: "Lora", serif;
  font-size: 48px;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 4px
}

.stat .v .pf {
  font-size: 24px;
  color: var(--gold-500)
}

.stat .l {
  margin-top: 8px;
  font-size: 14px;
  color: #a4b1c8
}

/* ========= TESTIMONIALS ========= */
.tcards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}

.tcard:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px)
}

.tcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px
}

.tcard .stars {
  display: flex;
  gap: 2px
}

.tcard .stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-500)
}

.tcard .g-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 40%, #fbbc04 70%, #ea4335 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -.5px;
}

.tcard .quote {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-600, #3d4f69);
  flex: 1;
  margin-bottom: 16px;
  font-style: italic
}

.tcard .tcard-foot {
  margin-top: auto
}

.tcard .who {
  display: flex;
  align-items: center;
  gap: 10px
}

.tcard .who .ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0
}

.tcard .who .nm {
  font-weight: 700;
  color: var(--ink-900);
  font-size: 13px
}

.tcard .who .role {
  font-size: 11px;
  color: var(--ink-400);
  margin-top: 2px
}

.tcard .when {
  font-size: 11px;
  color: var(--ink-400);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line)
}

/* ========= PRICING ========= */
.pricing {
  background: var(--bg-soft)
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all .3s ease;
}

.plan:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg)
}

.plan.feat {
  border: 2px solid var(--navy-700);
  transform: scale(1.02)
}

.plan.feat:hover {
  transform: translateY(-3px) scale(1.02)
}

.plan .pop {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.plan h3 {
  font-size: 18px;
  color: var(--navy-700);
  font-family: "Manrope";
  font-weight: 700
}

.plan .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 14px 0 4px
}

.plan .price .v {
  font-family: "Lora", serif;
  font-size: 48px;
  color: var(--navy-900);
  font-weight: 600
}

.plan .price .pe {
  color: var(--ink-400);
  font-size: 14px
}

.plan .desc {
  font-size: 13.5px;
  color: var(--ink-500);
  margin-bottom: 22px
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px
}

.plan li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--ink-700)
}

.plan li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #10b981
}

.plan .btn {
  width: 100%;
  justify-content: center;
  padding: 13px
}

/* ========= FAQ ========= */
.faq-list {
  max-width: 800px;
  margin: 0 auto
}

.faq {
  border-bottom: 1px solid var(--line);
  padding: 22px 4px;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  font-family: "Lora", serif;
}

.faq-q .ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy-50);
  color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.faq.open .faq-q .ico {
  transform: rotate(45deg);
  background: var(--navy-700);
  color: #fff
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, margin .35s ease
}

.faq-a-inner {
  padding-top: 14px;
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.6
}

.faq.open .faq-a {
  max-height: 300px
}

/* ========= PLATFORM ========= */
.platform {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.platform-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-100);
  box-shadow: var(--shadow-lg);
}

.platform-card .icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.platform-card .icon-box svg {
  width: 20px;
  height: 20px;
  display: block;
}

.platform-card h3 {
  font-family: "Lora", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-950);
  margin: 0 0 10px;
}

.platform-card p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0 0 20px;
}

.platform-card ul {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
}

.platform-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
}

.platform-card li svg {
  flex-shrink: 0;
  color: #10b981;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 980px) {

  .hero-grid,
  .demo-grid,
  .uc-grid,
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .features-grid,
  .plans {
    grid-template-columns: 1fr
  }

  .tcards {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }

  .nav-links {
    display: none
  }

  .hero-visual {
    height: 600px
  }

  .fc-1 {
    display: none
  }

  section {
    padding: 70px 0
  }
}

@media (min-width: 600px) and (max-width: 980px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
  }
}

@media (max-width: 600px) {
  .tcards {
    grid-template-columns: 1fr
  }
}

/* Scoped styling for hero mockup service indicators & new frames */
.service-indicator {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-50);
  color: var(--navy-700);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

/* Adjust padding of pick and gen frames to make room for indicator */
.frame-pick {
  padding-top: 72px !important;
}

.frame-gen {
  padding-top: 72px !important;
}

/* GBP Frame 1 styling */
.frame-gbp1 {
  padding-top: 72px;
  gap: 16px;
}

.gbp-biz-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.gbp-chart-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
}

.gbp-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
  height: 70px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  margin-top: 6px;
}

.gbp-bar {
  flex: 1;
  height: 0;
  border-radius: 3px 3px 0 0;
}

.frame-gbp1.active .gbp-bar {
  animation: gbp-bar-grow 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes gbp-bar-grow {
  to {
    height: var(--h);
  }
}

/* GBP Frame 2 styling */
.frame-gbp2 {
  padding-top: 72px;
  gap: 14px;
}

.gbp-post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gbp-post-img {
  height: 90px;
  background: linear-gradient(135deg, var(--navy-50), var(--navy-100));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gbp-post-img::before {
  content: "📷";
  font-size: 24px;
  opacity: 0.6;
}

.gbp-post-card .gbp-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #10b981;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.gbp-rows {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.gbp-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gbp-row-check {
  color: #10b981;
  font-weight: 700;
  font-size: 12px;
}

.gbp-row-text {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-700);
}

/* Feedback Frame 1 styling */
.frame-fb1 {
  padding-top: 72px;
  justify-content: center;
}

.fb-survey-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 14px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.fb-survey-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
  line-height: 1.4;
}

.fb-score-row {
  display: flex;
  gap: 4px;
  justify-content: space-between;
  width: 100%;
}

.score-chip {
  flex: 1;
  aspect-ratio: 1;
  max-width: 20px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--ink-500);
  background: #fff;
}

.score-chip.on {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}

.fb-subline {
  font-size: 11px;
  color: var(--ink-400);
  margin-top: 14px;
  font-style: italic;
}

/* Feedback Frame 2 styling */
.frame-fb2 {
  padding-top: 72px;
  gap: 16px;
}

.fb-routing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.fb-routing-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: auto;
}


/* ============================================================= */
/* =========          SERVICES PAGE SPECIFIC           ========= */
/* ============================================================= */

.page-hero{
  position:relative; overflow:hidden;
  padding: 90px 0 80px;
  background:
    radial-gradient(800px 500px at 15% 10%, rgba(245,184,0,.08), transparent 60%),
    radial-gradient(800px 600px at 95% 30%, rgba(36,83,163,.08), transparent 60%),
    linear-gradient(180deg, #fff 0%, #f8fafd 100%);
  text-align:center;
}
.page-hero h1{
  font-family:"Lora", serif; font-weight:600;
  font-size: clamp(40px, 5.4vw, 64px); line-height:1.05;
  color:var(--navy-950);
  max-width: 920px; margin: 22px auto 0;
}
.page-hero h1 .accent{
  background: linear-gradient(120deg, var(--navy-700) 0%, var(--navy-500) 60%, var(--gold-500) 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.page-hero .lede{
  font-size:18.5px; color:var(--ink-500); line-height:1.55;
  margin: 22px auto 0; max-width:680px;
}
.page-hero .actions{margin-top:32px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap}

/* Service catalog */
.svc-section{padding: 100px 0; position:relative}
.svc-section.alt{background:var(--bg-soft)}

.svc-row{
  display:grid; grid-template-columns: 1fr 1fr; gap:64px; align-items:center;
  margin-bottom:120px;
}
.svc-row:last-child{margin-bottom:0}
.svc-row.reverse{direction:rtl}
.svc-row.reverse > *{direction:ltr}

.svc-text .badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 12px; border-radius:999px;
  background:var(--navy-50); color:var(--navy-700);
  font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
}
.svc-text h2{
  font-family:"Lora", serif; font-weight:600;
  font-size: clamp(28px, 3.4vw, 42px); line-height:1.1;
  color:var(--navy-950); margin: 18px 0 18px;
}
.svc-text .sub{
  font-size:17px; color:var(--ink-500); line-height:1.6; margin-bottom:24px;
}
.svc-bullets{list-style:none; padding:0; margin:0 0 28px}
.svc-bullets li{
  display:flex; align-items:flex-start; gap:12px;
  padding:10px 0; font-size:15px; color:var(--ink-700);
}
.svc-bullets li svg{flex-shrink:0; margin-top:3px; color:var(--navy-700)}
.svc-bullets li strong{color:var(--ink-900); display:block; margin-bottom:2px}
.svc-bullets li span{font-size:14px; color:var(--ink-500)}

.svc-meta{
  display:flex; gap:24px; padding:16px 22px;
  background:#fff; border:1px solid var(--line); border-radius:14px;
  box-shadow:var(--shadow-sm); margin-bottom:24px;
}
.svc-section.alt .svc-meta{background:#fff}
.svc-meta-item{flex:1}
.svc-meta-item .v{font-family:"Lora", serif; font-size:24px; color:var(--navy-700); font-weight:600; line-height:1}
.svc-meta-item .l{font-size:12px; color:var(--ink-400); margin-top:6px; letter-spacing:.04em; text-transform:uppercase; font-weight:600}

.svc-visual{
  position:relative; min-height:420px;
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius-xl); padding:36px;
  box-shadow: var(--shadow-lg);
}
.svc-section.alt .svc-visual{background:#fff}

/* visual 1: QR + setup */
.viz-setup{display:flex; flex-direction:column; gap:18px}
.viz-setup .header{display:flex; align-items:center; gap:12px}
.viz-setup .header .gdot{width:28px; height:28px; border-radius:8px; background:linear-gradient(135deg,#4285f4,#34a853 50%,#fbbc04 70%,#ea4335); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:13px}
.viz-setup .header .t{font-weight:700; color:var(--ink-900); font-size:14px}
.viz-setup .header .s{margin-left:auto; font-size:11px; color:#10b981; font-weight:600; background:#dcfce7; padding:3px 8px; border-radius:999px}
.viz-row{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.viz-card{background:var(--bg-soft); border:1px solid var(--line); border-radius:12px; padding:16px}
.viz-card .lbl{font-size:11px; color:var(--ink-400); text-transform:uppercase; letter-spacing:.06em; font-weight:600; margin-bottom:6px}
.viz-card .val{font-size:14px; color:var(--ink-900); font-weight:600}
.viz-qr-big{display:flex; justify-content:center; padding:14px; background:var(--bg-soft); border:1px solid var(--line); border-radius:14px}
.viz-qr-big svg{width:140px; height:140px}

/* visual 2: AI brain */
.viz-brain{display:flex; flex-direction:column; gap:14px; height:100%}
.viz-brain .gear{
  display:flex; align-items:center; gap:14px; padding:14px;
  background:linear-gradient(135deg, var(--navy-50), #fff);
  border:1px solid var(--line); border-radius:12px;
}
.viz-brain .gear .icon-pulse{
  width:36px; height:36px; border-radius:10px;
  background:linear-gradient(135deg, var(--navy-700), var(--navy-500));
  display:flex; align-items:center; justify-content:center; color:#fff;
  flex-shrink:0;
  animation:gentle-pulse 2s ease-in-out infinite;
}
@keyframes gentle-pulse{0%,100%{box-shadow:0 0 0 0 rgba(36,83,163,.4)} 50%{box-shadow:0 0 0 8px rgba(36,83,163,0)}}
.viz-brain .gear .text{flex:1}
.viz-brain .gear .text .n{font-size:13px; font-weight:700; color:var(--ink-900)}
.viz-brain .gear .text .d{font-size:12px; color:var(--ink-500); margin-top:1px}
.viz-brain .progress{height:6px; background:var(--navy-100); border-radius:4px; overflow:hidden}
.viz-brain .progress > div{height:100%; background:linear-gradient(90deg, var(--navy-700), var(--gold-500)); border-radius:4px; animation:fill 2.4s ease-in-out infinite}
@keyframes fill{0%{width:0} 70%, 100%{width:100%}}

/* visual 3: routing diagram */
.viz-route{padding:0}
.viz-route svg{width:100%; display:block}
.route-card{
  background:#fff; border:1px solid var(--line); border-radius:12px;
  padding:14px; box-shadow:var(--shadow-sm);
}
.route-card .top{display:flex; align-items:center; gap:8px; margin-bottom:8px}
.route-card .badge-mini{font-size:10px; font-weight:700; padding:3px 8px; border-radius:999px; letter-spacing:.04em}
.route-card .badge-mini.pos{background:#dcfce7; color:#15803d}
.route-card .badge-mini.neg{background:#fee2e2; color:#b91c1c}
.route-card .stars-mini svg{width:11px; height:11px; fill:var(--gold-500)}
.route-card .txt{font-size:12.5px; color:var(--ink-500); line-height:1.5}

/* visual 4: analytics */
.viz-chart{height:100%; display:flex; flex-direction:column; gap:14px}
.viz-chart .head{display:flex; align-items:center; justify-content:space-between}
.viz-chart .head .t{font-size:13px; font-weight:700; color:var(--ink-900)}
.viz-chart .head .v{font-family:"Lora", serif; font-size:28px; color:var(--navy-700); font-weight:600}
.viz-chart .head .delta{font-size:11px; color:#10b981; font-weight:700; background:#dcfce7; padding:3px 8px; border-radius:999px}
.bars{display:flex; align-items:flex-end; gap:8px; height:140px; padding: 0 4px}
.bars .b{flex:1; background:linear-gradient(180deg, var(--navy-500), var(--navy-700)); border-radius:6px 6px 2px 2px; min-height:8px; transition:height .8s ease;}
.bars .b.gold{background:linear-gradient(180deg, var(--gold-400), var(--gold-500))}
.bars-x{display:flex; gap:8px; font-size:10px; color:var(--ink-400); padding:0 4px}
.bars-x span{flex:1; text-align:center}

/* visual 5: integrations grid */
.viz-int{display:grid; grid-template-columns:repeat(3, 1fr); gap:12px}
.int-tile{
  aspect-ratio:1.4 / 1;
  background:#fff; border:1px solid var(--line); border-radius:12px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
  font-size:11px; color:var(--ink-500); font-weight:600;
  transition: all .25s ease;
}
.int-tile:hover{border-color:var(--navy-300); transform:translateY(-2px); box-shadow:var(--shadow-sm)}
.int-tile .logo{
  width:32px; height:32px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; color:#fff; font-size:13px;
}

/* visual 6: white-label */
.viz-wl{display:flex; flex-direction:column; gap:12px}
.wl-bar{
  background:#0b1220; color:#fff;
  padding:10px 14px; border-radius:10px;
  display:flex; align-items:center; gap:10px; font-size:12px;
}
.wl-bar .dots{display:flex; gap:4px}
.wl-bar .dots span{width:8px; height:8px; border-radius:50%}
.wl-card{
  background:#fff; border:1px solid var(--line); border-radius:12px;
  padding:16px; box-shadow:var(--shadow-sm);
}
.wl-card .row{display:flex; align-items:center; justify-content:space-between; padding:8px 0; font-size:13px; border-bottom:1px dashed var(--line)}
.wl-card .row:last-child{border-bottom:0}
.wl-card .row .name{color:var(--ink-700); font-weight:500}
.wl-card .row .val{color:var(--ink-900); font-weight:700}
.wl-card .row .pill{font-size:10px; padding:3px 8px; border-radius:999px; background:#dcfce7; color:#15803d; font-weight:700}

/* COMPARISON TABLE */
.compare{padding: 110px 0; background:#fff}
.compare-table{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-xl);
  overflow:hidden; box-shadow:var(--shadow-md);
  max-width:1080px; margin:0 auto;
}
.compare-table .row{
  display:grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  align-items:center;
}
.compare-table .row + .row{border-top:1px solid var(--line)}
.compare-table .row.head{
  background:var(--navy-950); color:#fff;
}
.compare-table .row.head > div{padding:22px; font-weight:700; font-size:14px}
.compare-table .row.head .col{display:flex; flex-direction:column; gap:4px}
.compare-table .row.head .col .name{font-family:"Lora", serif; font-size:18px; font-weight:600}
.compare-table .row.head .col .price{font-size:12px; color:#a4b1c8; font-weight:500}
.compare-table .row.head .col.feat{background:rgba(245,184,0,.12); position:relative}
.compare-table .row.head .col.feat::before{
  content:"BEST VALUE"; position:absolute; top:-1px; left:50%; transform:translateX(-50%);
  background:var(--gold-500); color:var(--navy-900); font-size:9px; font-weight:700; letter-spacing:.08em;
  padding:3px 10px; border-radius:0 0 6px 6px;
}
.compare-table .row > div{padding:18px 22px; font-size:14px; color:var(--ink-700)}
.compare-table .row .label{font-weight:600; color:var(--ink-900)}
.compare-table .row .label .hint{display:block; font-size:12px; color:var(--ink-400); font-weight:400; margin-top:2px}
.compare-table .row .col{text-align:center}
.compare-table .row .col.feat{background:rgba(245,184,0,.05)}
.check-y{color:#10b981}
.check-n{color:#cbd5e8}

/* ADD-ONS */
.addons{padding: 100px 0; background:var(--bg-soft)}
.addon-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:22px}
.addon{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px; transition:all .3s ease; position:relative;
}
.addon:hover{transform:translateY(-4px); box-shadow:var(--shadow-lg)}
.addon .ic{
  width:48px; height:48px; border-radius:12px;
  background:linear-gradient(135deg, var(--navy-50), #fff);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color:var(--navy-700); margin-bottom:16px;
}
.addon h3{font-size:18px; color:var(--navy-900); margin-bottom:8px; font-family:"Lora", serif; font-weight:600}
.addon p{font-size:14px; color:var(--ink-500); line-height:1.55; margin-bottom:14px}
.addon .px{font-size:13px; font-weight:600; color:var(--navy-700)}

/* PROCESS */
.process{padding: 110px 0}
.timeline{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:18px;
  position:relative;
}
.timeline::before{
  content:""; position:absolute; left:6%; right:6%; top:36px; height:2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px);
  z-index:0;
}
.tl-step{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:24px; position:relative; z-index:1; transition: all .25s ease;
}
.tl-step:hover{transform:translateY(-3px); box-shadow:var(--shadow-lg)}
.tl-num{
  width:48px; height:48px; border-radius:50%;
  background:#fff; border:2px solid var(--navy-700); color:var(--navy-700);
  display:flex; align-items:center; justify-content:center;
  font-family:"Lora", serif; font-size:18px; font-weight:700;
  margin-bottom:14px;
  box-shadow:0 0 0 6px #fff, 0 0 0 7px var(--line);
}
.tl-step h4{font-size:16px; color:var(--navy-900); margin-bottom:6px}
.tl-step p{font-size:13.5px; color:var(--ink-500); line-height:1.55}
.tl-step .when{font-size:11px; color:var(--navy-700); font-weight:700; text-transform:uppercase; letter-spacing:.06em; margin-bottom:6px}

@media (max-width: 980px){
  .svc-row{grid-template-columns:1fr; gap:36px; margin-bottom:80px}
  .svc-row.reverse{direction:ltr}
  .compare-table .row{grid-template-columns:1.5fr 1fr 1fr 1fr; font-size:12.5px}
  .compare-table .row > div{padding:14px 12px}
  .addon-grid{grid-template-columns:1fr}
  .timeline{grid-template-columns:1fr 1fr; gap:14px}
  .timeline::before{display:none}
}


/* ============================================================= */
/* =========           CONTACT PAGE SPECIFIC           ========= */
/* ============================================================= */

.contact-hero{
  position:relative; overflow:hidden;
  padding: 80px 0 60px;
  background:
    radial-gradient(800px 500px at 15% 10%, rgba(245,184,0,.08), transparent 60%),
    radial-gradient(800px 600px at 95% 30%, rgba(36,83,163,.08), transparent 60%),
    linear-gradient(180deg, #fff 0%, #f8fafd 100%);
}
.contact-hero-inner{text-align:center}
.contact-hero h1{
  font-family:"Lora", serif; font-weight:600;
  font-size: clamp(40px, 5.4vw, 60px); line-height:1.05;
  color:var(--navy-950);
  max-width: 880px; margin: 22px auto 0;
}
.contact-hero h1 .accent{
  background: linear-gradient(120deg, var(--navy-700) 0%, var(--navy-500) 60%, var(--gold-500) 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.contact-hero .lede{
  font-size:18px; color:var(--ink-500); line-height:1.55;
  margin: 20px auto 0; max-width:600px;
}

/* QUICK CHANNELS strip */
.channels{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:18px;
  margin-top:48px;
}
.channel{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:24px; text-align:left;
  transition: all .25s ease;
  display:flex; gap:16px; align-items:flex-start;
}
.channel:hover{transform:translateY(-3px); box-shadow:var(--shadow-lg); border-color:var(--navy-100)}
.channel .ic{
  width:44px; height:44px; border-radius:12px; flex-shrink:0;
  background: linear-gradient(135deg, var(--navy-50), #fff);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color:var(--navy-700);
}
.channel.gold .ic{background: linear-gradient(135deg, var(--gold-100), #fff8e0); color:#b45309; border-color:#fde2bb}
.channel h3{font-size:16px; color:var(--navy-900); margin-bottom:4px; font-family:"Manrope"; font-weight:700}
.channel .desc{font-size:13.5px; color:var(--ink-500); margin-bottom:10px; line-height:1.5}
.channel .link{font-size:13px; color:var(--navy-700); font-weight:700; display:inline-flex; align-items:center; gap:6px}
.channel .link::after{content:"→"; transition:transform .2s ease}
.channel:hover .link::after{transform:translateX(3px)}

/* MAIN GRID: form + sidebar */
.contact-main{padding: 100px 0}
.contact-grid{
  display:grid; grid-template-columns: 1.4fr 1fr; gap:48px; align-items:flex-start;
}

.form-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-xl);
  padding:44px; box-shadow:var(--shadow-md); position:relative; overflow:hidden;
}
.form-card::before{
  content:""; position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg, var(--navy-700), var(--navy-500) 50%, var(--gold-500));
}
.form-title{font-family:"Lora", serif; font-weight:600; font-size:28px; color:var(--navy-950); margin-bottom:6px}
.form-sub{font-size:15px; color:var(--ink-500); margin-bottom:30px}

/* Intent segmented control */
.intent{display:grid; grid-template-columns:repeat(3, 1fr); gap:6px; padding:5px; background:var(--bg-soft); border-radius:14px; margin-bottom:28px}
.intent-btn{
  padding:11px 8px; font-size:13px; font-weight:600;
  color:var(--ink-500); border-radius:10px; cursor:pointer;
  transition: all .2s ease;
  display:flex; align-items:center; justify-content:center; gap:7px;
}
.intent-btn:hover{color:var(--navy-700)}
.intent-btn.on{
  background:#fff; color:var(--navy-900);
  box-shadow:0 2px 6px rgba(15,42,92,.08), 0 0 0 1px var(--line);
}
.intent-btn .emo{font-size:15px}

/* Form fields */
.field{margin-bottom:18px}
.field-row{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.field label{
  display:block; font-size:13px; font-weight:600; color:var(--ink-700);
  margin-bottom:7px; letter-spacing:.01em;
}
.field label .req{color:#ef4444; margin-left:3px}
.field .input,
.field select,
.field textarea{
  width:100%; padding:13px 16px; font-size:14.5px; font-family:inherit;
  border:1px solid var(--line-strong); border-radius:11px;
  background:#fff; color:var(--ink-900);
  transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance:none; appearance:none;
}
.field select{
  background:#fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234a5876' stroke-width='2.5' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>") right 14px center/14px no-repeat;
  padding-right:40px;
}
.field .input:focus,
.field select:focus,
.field textarea:focus{
  outline:none; border-color:var(--navy-500);
  box-shadow:0 0 0 4px rgba(58,109,196,.12);
}
.field textarea{resize:vertical; min-height:120px; line-height:1.55}
.field .hint{font-size:12px; color:var(--ink-400); margin-top:6px}

/* business size chip group */
.size-row{display:grid; grid-template-columns:repeat(4, 1fr); gap:8px}
.size-chip{
  padding:12px 8px; text-align:center; font-size:12.5px; font-weight:600;
  border:1px solid var(--line-strong); border-radius:10px;
  color:var(--ink-500); background:#fff; cursor:pointer;
  transition: all .15s ease;
}
.size-chip:hover{border-color:var(--navy-500); color:var(--navy-700)}
.size-chip.on{
  background:var(--navy-50); border-color:var(--navy-700); color:var(--navy-700);
  box-shadow:inset 0 0 0 1px var(--navy-700);
}

/* checkbox */
.consent{
  display:flex; align-items:flex-start; gap:10px;
  font-size:13px; color:var(--ink-500); line-height:1.5;
  margin: 4px 0 22px;
}
.consent input{
  width:18px; height:18px; flex-shrink:0; margin-top:1px;
  accent-color: var(--navy-700);
}
.consent a{color:var(--navy-700); font-weight:600; text-decoration:underline; text-decoration-color: var(--navy-100); text-underline-offset:3px}

.submit-btn{
  width:100%; padding:16px;
  font-size:15px; font-weight:700; color:#fff;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-radius:12px;
  display:flex; align-items:center; justify-content:center; gap:10px;
  box-shadow:0 14px 28px -10px rgba(26,61,124,.5);
  transition: all .2s ease;
}
.submit-btn:hover{transform:translateY(-1px); box-shadow:0 18px 32px -10px rgba(26,61,124,.55)}
.submit-btn .arr{transition:transform .2s ease}
.submit-btn:hover .arr{transform:translateX(3px)}
.form-footer-note{
  display:flex; align-items:center; gap:8px; justify-content:center;
  margin-top:18px; font-size:12.5px; color:var(--ink-400);
}
.form-footer-note svg{color:#10b981}

/* SIDEBAR */
.sidebar{display:flex; flex-direction:column; gap:24px}
.side-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px;
}
.side-card.dark{
  background: linear-gradient(135deg, var(--navy-900), var(--navy-950));
  color:#fff; border:none;
  position:relative; overflow:hidden;
}
.side-card.dark::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(400px 200px at 90% 110%, rgba(245,184,0,.15), transparent 60%);
  pointer-events:none;
}
.side-card.dark > *{position:relative}
.side-card h3{font-size:18px; color:var(--navy-900); margin-bottom:6px; font-family:"Lora", serif; font-weight:600}
.side-card.dark h3{color:#fff}
.side-card .desc{font-size:14px; color:var(--ink-500); margin-bottom:18px; line-height:1.5}
.side-card.dark .desc{color:#a4b1c8}
.cal-list{display:flex; flex-direction:column; gap:8px}
.cal-slot{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  border-radius:10px; font-size:13px; cursor:pointer; transition:all .2s ease;
}
.cal-slot:hover{background:rgba(245,184,0,.12); border-color:rgba(245,184,0,.4)}
.cal-slot .when{font-weight:600; color:#fff}
.cal-slot .when small{display:block; font-weight:500; color:#a4b1c8; font-size:11px; margin-top:2px}
.cal-slot .pick{
  font-size:11px; font-weight:700; padding:4px 10px;
  border-radius:999px; background:var(--gold-500); color:var(--navy-900);
}
.book-btn{
  margin-top:14px; width:100%; padding:13px;
  background:var(--gold-500); color:var(--navy-900); font-weight:700; font-size:13.5px;
  border-radius:10px; display:flex; align-items:center; justify-content:center; gap:8px;
}
.book-btn:hover{background:var(--gold-400)}

/* info rows */
.info-row{
  display:flex; align-items:flex-start; gap:14px; padding:14px 0;
  border-bottom:1px dashed var(--line);
}
.info-row:last-child{border-bottom:0; padding-bottom:0}
.info-row .ic{
  width:38px; height:38px; border-radius:10px; flex-shrink:0;
  background: linear-gradient(135deg, var(--navy-50), #fff);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color:var(--navy-700);
}
.info-row .body .lbl{font-size:12px; color:var(--ink-400); font-weight:600; text-transform:uppercase; letter-spacing:.06em; margin-bottom:3px}
.info-row .body .val{font-size:14.5px; color:var(--ink-900); font-weight:600; line-height:1.4}
.info-row .body .sub{font-size:12.5px; color:var(--ink-500); margin-top:2px}

/* response promise pill */
.promise{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 14px; background:#dcfce7; color:#15803d;
  border-radius:999px; font-size:12px; font-weight:700; letter-spacing:.04em;
  margin-bottom:14px;
}
.promise .pulse{
  width:8px; height:8px; border-radius:50%; background:#10b981;
  animation: dot-pulse 1.6s ease-in-out infinite;
}

/* offices map block */
.offices{padding: 60px 0 100px; background:var(--bg-soft)}
.offices-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:20px}
.office{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px; transition: all .25s ease; position:relative; overflow:hidden;
}
.office:hover{transform:translateY(-3px); box-shadow:var(--shadow-lg)}
.office .flag{
  display:inline-flex; align-items:center; gap:6px;
  padding:4px 10px; background:var(--navy-50); border-radius:999px;
  font-size:11px; font-weight:700; color:var(--navy-700); letter-spacing:.06em;
  margin-bottom:14px;
}
.office h3{font-size:20px; color:var(--navy-900); font-family:"Lora", serif; font-weight:600; margin-bottom:6px}
.office .role{font-size:13px; color:var(--ink-400); margin-bottom:18px}
.office .addr{font-size:14px; color:var(--ink-700); line-height:1.55; margin-bottom:14px}
.office .meta{display:flex; gap:14px; flex-wrap:wrap; font-size:13px; color:var(--ink-500)}
.office .meta a{color:var(--navy-700); font-weight:600}

/* FAQ MINI */
.faq-mini{padding: 100px 0}
.faq-mini-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap:20px;
  max-width:1100px; margin: 0 auto;
}
.faq-mini-item{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:24px;
}
.faq-mini-item h4{
  font-family:"Lora", serif; font-weight:600; font-size:17px;
  color:var(--navy-900); margin-bottom:8px;
}
.faq-mini-item p{font-size:14px; color:var(--ink-500); line-height:1.6}

/* SUCCESS overlay */
.success-overlay{
  position:absolute; inset:0; background:#fff; border-radius:var(--radius-xl);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:14px; text-align:center; padding:40px;
  opacity:0; pointer-events:none; transition:opacity .35s ease;
}
.success-overlay.show{opacity:1; pointer-events:auto}
.success-circle{
  width:84px; height:84px; border-radius:50%;
  background:linear-gradient(135deg, #10b981, #059669);
  display:flex; align-items:center; justify-content:center; color:#fff;
  box-shadow:0 14px 32px -10px rgba(16,185,129,.55);
  animation: pop .5s cubic-bezier(.2,1.6,.4,1);
}
.success-overlay h3{font-family:"Lora", serif; font-size:26px; color:var(--navy-950)}
.success-overlay p{font-size:15px; color:var(--ink-500); max-width:360px}

@media (max-width: 980px){
  .contact-grid{grid-template-columns:1fr; gap:32px}
  .channels{grid-template-columns:1fr}
  .offices-grid{grid-template-columns:1fr}
  .faq-mini-grid{grid-template-columns:1fr}
  .field-row{grid-template-columns:1fr}
  .form-card{padding:28px}
  .size-row{grid-template-columns:repeat(2, 1fr)}
  .intent{grid-template-columns:1fr}
}

