/* =========================================================
   Reckon Infotech — Premium DARK SaaS site
   Aesthetic: deep ink canvas, glassy panels, orange energy
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&display=swap');

:root {
  --orange: #f1733b;
  --orange-bright: #ff854f;
  --orange-deep: #e25d22;
  --orange-soft: rgba(241,115,59,.14);
  --orange-line: rgba(241,115,59,.34);

  --bg: #0a0d16;
  --bg-2: #0e1320;
  --surface: #141a28;
  --surface-2: #19202f;
  --surface-3: #1f2738;
  --line: rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.13);

  --text: #f3f5fa;
  --text-2: #c2c8d6;
  --text-3: #8b94a8;
  --text-4: #5c647a;

  --indigo: #8b8bf0;
  --indigo-soft: rgba(139,139,240,.15);
  --teal: #34d8b4;
  --teal-soft: rgba(52,216,180,.15);
  --blue: #5b9bff;
  --blue-soft: rgba(91,155,255,.15);
  --amber: #ffc24d;
  --amber-soft: rgba(255,194,77,.15);
  --green: #3ddc84;

  --sans: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  --serif: 'Newsreader', Georgia, serif;

  --r-lg: 22px; --r: 15px; --r-sm: 10px;
  --sh-md: 0 8px 30px rgba(0,0,0,.4);
  --sh-lg: 0 24px 60px rgba(0,0,0,.5);
  --glow: 0 0 0 1px var(--orange-line), 0 18px 50px rgba(241,115,59,.18);
  --wrap: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); color: var(--text); background: var(--bg);
  line-height: 1.6; font-size: 16px; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--orange); color: #fff; }

/* subtle page-wide ambient glow */
body::before {
  content: ''; position: fixed; top: -10%; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 600px; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(241,115,59,.10), transparent 65%);
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.section { padding: 120px 0; position: relative; }
.section-sm { padding: 76px 0; position: relative; }
.center { text-align: center; }
.center .lead, .center .sec-head { margin-left: auto; margin-right: auto; }

h1,h2,h3,h4 { letter-spacing: -.03em; line-height: 1.04; font-weight: 800; color: var(--text); }
h1 { font-size: clamp(46px, 6.6vw, 88px); }
h2 { font-size: clamp(33px, 4.7vw, 56px); }
h3 { font-size: 21px; letter-spacing: -.02em; }
.serif-accent { font-family: var(--serif); font-weight: 500; font-style: italic; letter-spacing: -.01em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
  color: var(--orange-bright); background: var(--orange-soft);
  border: 1px solid var(--orange-line);
  padding: 7px 15px; border-radius: 100px; margin-bottom: 24px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange-bright); box-shadow: 0 0 0 0 rgba(255,133,79,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,133,79,.5);} 70%{box-shadow:0 0 0 7px rgba(255,133,79,0);} 100%{box-shadow:0 0 0 0 rgba(255,133,79,0);} }
.eyebrow.plain { background: none; border: none; padding: 0; color: var(--orange-bright); letter-spacing: .14em; text-transform: uppercase; }

.lead { font-size: 19px; color: var(--text-3); max-width: 600px; line-height: 1.62; }
.sec-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.sec-head h2 { margin-bottom: 18px; }
.sec-head .lead { font-size: 18px; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; padding: 13px 22px; border-radius: 11px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s; white-space: nowrap; line-height: 1; }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 6px 20px rgba(241,115,59,.34); }
.btn-orange:hover { background: var(--orange-bright); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(241,115,59,.5); }
.btn-light { background: var(--text); color: var(--bg); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,255,255,.16); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border: 1px solid var(--line-2); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.25); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: 12px; }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 200; background: rgba(10,13,22,.72); backdrop-filter: saturate(160%) blur(18px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--text-3); padding: 9px 15px; border-radius: 9px; transition: background .2s, color .2s; }
.nav-links a:hover { background: rgba(255,255,255,.05); color: var(--text); }
.nav-links a.active { color: var(--orange-bright); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-signin { font-size: 14.5px; font-weight: 700; color: #fff; padding: 11px 22px; background: var(--orange); border-radius: 10px; box-shadow: 0 4px 14px rgba(241,115,59,.34); transition: .25s var(--ease); }
.nav-signin:hover { background: var(--orange-bright); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(241,115,59,.5); }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line-2); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ''; display: block; width: 18px; height: 2px; background: var(--text); transition: .25s; }
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; } .nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 104px 0 0; overflow: hidden; }
.hero-grid-bg { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 58px 58px; -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 0%, #000 20%, transparent 72%); mask-image: radial-gradient(ellipse 70% 55% at 50% 0%, #000 20%, transparent 72%); opacity: .6; }
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
.hero h1 { margin-bottom: 26px; }
.hero h1 .hl { color: var(--orange-bright); position: relative; }
.hero .lead { margin: 0 auto 36px; font-size: 20px; max-width: 640px; color: var(--text-2); }
.hero-cta { display: flex; gap: 13px; justify-content: center; margin-bottom: 26px; flex-wrap: wrap; }
.hero-trust { font-size: 13.5px; color: var(--text-4); display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.hero-trust b { color: var(--text-2); font-weight: 700; }
.hero-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--text-4); }

/* product mockup */
.hero-shot { position: relative; z-index: 1; margin: 70px auto 0; max-width: 1060px; perspective: 1800px; }
.app-window { background: var(--surface); border: 1px solid var(--line-2); border-radius: 18px; box-shadow: var(--sh-lg), 0 0 80px rgba(241,115,59,.08); overflow: hidden; animation: rise 1.1s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(46px) rotateX(7deg) scale(.97); } to { opacity: 1; transform: none; } }
.app-bar { display: flex; align-items: center; gap: 8px; padding: 13px 18px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.app-bar .dots { display: flex; gap: 7px; }
.app-bar .dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.app-bar .dots i:first-child { background: #ff5f57; } .app-bar .dots i:nth-child(2){ background:#febc2e;} .app-bar .dots i:nth-child(3){background:#28c840;}
.app-bar .addr { flex: 1; text-align: center; font-size: 12.5px; color: var(--text-4); font-weight: 600; }
.app-body { display: grid; grid-template-columns: 210px 1fr; min-height: 450px; }
.app-side { background: var(--bg-2); border-right: 1px solid var(--line); padding: 18px 14px; }
.app-side .s-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; margin-bottom: 22px; padding: 0 6px; color: var(--text); }
.app-side .s-logo .mk { width: 22px; height: 22px; border-radius: 6px; background: var(--orange); }
.app-nav-item { display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text-4); margin-bottom: 3px; }
.app-nav-item .di { width: 16px; height: 16px; border-radius: 5px; background: var(--surface-3); flex-shrink: 0; }
.app-nav-item.on { background: var(--surface-3); color: var(--text); }
.app-nav-item.on .di { background: var(--orange); }
.app-nav-item .badge { margin-left: auto; background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; padding: 1px 7px; border-radius: 10px; }
.app-main { padding: 24px; background: var(--surface); }
.app-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.app-h h4 { font-size: 18px; font-weight: 800; }
.app-h .pill { font-size: 12px; font-weight: 700; color: var(--teal); background: var(--teal-soft); padding: 5px 11px; border-radius: 100px; }
.app-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 18px; }
.app-stat { border: 1px solid var(--line); border-radius: 12px; padding: 14px; background: var(--surface-2); }
.app-stat .l { font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-4); }
.app-stat .v { font-size: 26px; font-weight: 800; margin-top: 4px; letter-spacing: -.03em; }
.app-stat .d { font-size: 11px; font-weight: 600; margin-top: 2px; }
.app-stat .d.up { color: var(--green); } .app-stat .d.warn { color: var(--amber); }
.app-cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; }
.kanban { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.kcol { background: var(--surface-2); border-radius: 10px; padding: 10px; }
.kcol .kt { font-size: 10.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--text-4); margin-bottom: 9px; display: flex; justify-content: space-between; }
.kcard { background: var(--surface-3); border: 1px solid var(--line); border-radius: 8px; padding: 9px; margin-bottom: 7px; }
.kcard .kc-tag { font-size: 9px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 2px 6px; border-radius: 5px; display: inline-block; margin-bottom: 6px; }
.kc-tag.lead { background: var(--blue-soft); color: var(--blue); }
.kc-tag.link { background: var(--indigo-soft); color: var(--indigo); }
.kc-tag.cont { background: var(--amber-soft); color: var(--amber); }
.kcard .kc-title { font-size: 11.5px; font-weight: 600; line-height: 1.35; color: var(--text-2); }
.kcard .kc-foot { display: flex; align-items: center; gap: 5px; margin-top: 7px; }
.kc-av { width: 17px; height: 17px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 8px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.app-chart { border: 1px solid var(--line); border-radius: 12px; padding: 15px; background: var(--surface-2); }
.app-chart .ch { font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--text-4); margin-bottom: 14px; }
.app-bars { display: flex; align-items: flex-end; gap: 7px; height: 120px; }
.app-bars i { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(to top, var(--orange), var(--orange-bright)); display: block; }
.app-bars i:nth-child(even) { background: linear-gradient(to top, var(--indigo), #b3b3f7); }

/* ---------- marquee strip ---------- */
.logos { padding: 44px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.logos .lab { text-align: center; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-4); margin-bottom: 26px; }
.marquee { display: flex; gap: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 56px; padding-right: 56px; animation: scroll 22s linear infinite; white-space: nowrap; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track span { font-weight: 800; font-size: 19px; color: var(--text-4); letter-spacing: -.02em; display: inline-flex; align-items: center; gap: 10px; }
.marquee-track span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); opacity: .6; }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.bento-card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; background: var(--surface); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s, background .3s; position: relative; overflow: hidden; }
.bento-card::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(241,115,59,.08), transparent 70%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--line-2); background: var(--surface-2); }
.bento-card:hover::after { opacity: 1; }
.bento-card.col-3 { grid-column: span 3; } .bento-card.col-2 { grid-column: span 2; } .bento-card.col-4 { grid-column: span 4; } .bento-card.col-6 { grid-column: span 6; }
.bento-ic { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; border: 1px solid var(--line); }
.ic-orange { background: var(--orange-soft); color: var(--orange-bright); }
.ic-blue { background: var(--blue-soft); color: var(--blue); }
.ic-indigo { background: var(--indigo-soft); color: var(--indigo); }
.ic-teal { background: var(--teal-soft); color: var(--teal); }
.ic-amber { background: var(--amber-soft); color: var(--amber); }
.bento-card h3 { margin-bottom: 9px; }
.bento-card p { font-size: 14.5px; color: var(--text-3); }
.mini-rows { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.mini-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 9px; font-size: 12.5px; font-weight: 600; color: var(--text-2); }
.mini-row .st { margin-left: auto; font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 100px; }
.st.done { background: var(--teal-soft); color: var(--teal); } .st.rev { background: var(--amber-soft); color: var(--amber); } .st.new { background: var(--blue-soft); color: var(--blue); }

/* ---------- Flow band ---------- */
.flow-band { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.flow-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 12px; position: relative; }
.flow-step { padding: 28px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); transition: .3s var(--ease); }
.flow-step:hover { background: var(--surface-2); transform: translateY(-5px); border-color: var(--orange-line); }
.flow-step .num { font-family: var(--serif); font-style: italic; font-size: 38px; color: var(--orange-bright); margin-bottom: 14px; }
.flow-step h3 { font-size: 17px; margin-bottom: 8px; }
.flow-step p { font-size: 14px; color: var(--text-3); }

/* ---------- Feature split ---------- */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 66px; align-items: center; }
.feat + .feat { margin-top: 120px; }
.feat.rev .feat-text { order: 2; }
.feat-text h2 { font-size: clamp(29px, 3.5vw, 42px); margin: 16px 0 18px; }
.feat-text p { font-size: 16.5px; color: var(--text-3); margin-bottom: 24px; }
.feat-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; font-weight: 500; color: var(--text-2); }
.feat-list .ck { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--orange-soft); border: 1px solid var(--orange-line); color: var(--orange-bright); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; margin-top: 1px; }
.feat-visual { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); box-shadow: var(--sh-lg); overflow: hidden; }
.fv-head { padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--surface-2); font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: space-between; }
.fv-head .pill { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.fv-body { padding: 20px; }
.lead-row { display: grid; grid-template-columns: 1.4fr 1fr .8fr; gap: 10px; align-items: center; padding: 12px 10px; border-bottom: 1px solid var(--line); font-size: 13px; }
.lead-row:last-child { border-bottom: none; }
.lead-row .nm { font-weight: 700; display: flex; align-items: center; gap: 9px; color: var(--text); }
.lead-row .av { width: 26px; height: 26px; border-radius: 50%; color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lead-row .src { color: var(--text-3); }
.lead-row .stt { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 100px; justify-self: start; }

.ladder { display: flex; flex-direction: column; }
.ladder-item { display: flex; align-items: center; gap: 14px; padding: 13px 0; }
.ladder-item .lv { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; flex-shrink: 0; color: #fff; }
.ladder-item .lt b { display: block; font-weight: 700; font-size: 14px; color: var(--text); }
.ladder-item .lt span { font-size: 12.5px; color: var(--text-3); }
.ladder-item .lock { margin-left: auto; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; background: var(--surface-3); color: var(--text-3); }
.ladder-item.act .lock { background: var(--teal-soft); color: var(--teal); }
.ladder-line { width: 2px; height: 14px; background: var(--line-2); margin-left: 18px; }

/* ---------- Metrics ---------- */
.metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.metric { padding: 24px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); transition: .3s var(--ease); }
.metric:hover { border-color: var(--orange-line); background: var(--surface-2); transform: translateY(-4px); }
.metric .n { font-size: clamp(38px, 5vw, 56px); font-weight: 800; letter-spacing: -.04em; color: var(--orange-bright); line-height: 1; }
.metric .l { font-size: 14px; color: var(--text-3); margin-top: 10px; }

/* ---------- Ecosystem ---------- */
.eco-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.eco-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.eco-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--line-2); }
.eco-head { height: 130px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 23px; letter-spacing: -.02em; position: relative; overflow: hidden; }
.eco-head::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 24px 24px; }
.eco-card:nth-child(1) .eco-head { background: linear-gradient(135deg, rgba(52,216,180,.16), rgba(52,216,180,.04)); color: var(--teal); }
.eco-card:nth-child(2) .eco-head { background: linear-gradient(135deg, #0c1f1a, #0a0d16); color: #6fe0a8; font-style: italic; font-family: var(--serif); }
.eco-card:nth-child(3) .eco-head { background: linear-gradient(135deg, rgba(241,115,59,.18), rgba(241,115,59,.04)); color: var(--orange-bright); }
.eco-body { padding: 26px; }
.eco-body .kind { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-4); margin-bottom: 8px; }
.eco-body h3 { margin-bottom: 10px; }
.eco-body p { font-size: 14px; color: var(--text-3); margin-bottom: 16px; }
.eco-link { font-weight: 700; font-size: 14px; color: var(--orange-bright); display: inline-flex; gap: 6px; align-items: center; }
.eco-card:hover .eco-link .arr { transform: translateX(4px); }
.eco-link .arr { transition: transform .25s var(--ease); }

/* ---------- Quote ---------- */
.quote-band { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote { max-width: 880px; margin: 0 auto; text-align: center; }
.quote .qt { font-family: var(--serif); font-size: clamp(25px, 3.3vw, 38px); font-weight: 500; line-height: 1.32; letter-spacing: -.02em; color: var(--text); margin-bottom: 30px; }
.quote .qt .em { font-style: italic; color: var(--orange-bright); }
.quote .qa { display: flex; align-items: center; justify-content: center; gap: 12px; }
.quote .qa .av { width: 48px; height: 48px; border-radius: 50%; background: var(--orange); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.quote .qa .who { text-align: left; } .quote .qa .who b { display: block; font-weight: 700; color: var(--text); } .quote .qa .who span { font-size: 13px; color: var(--text-3); }

/* ---------- CTA ---------- */
.cta-band { background: linear-gradient(135deg, var(--surface-2), var(--bg-2)); border: 1px solid var(--line-2); border-radius: 28px; padding: 76px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 760px; height: 460px; background: radial-gradient(ellipse, rgba(241,115,59,.3), transparent 64%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { max-width: 680px; margin: 0 auto 16px; }
.cta-band p { color: var(--text-3); max-width: 540px; margin: 0 auto 32px; font-size: 17px; }
.cta-band .hero-cta { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 76px 0 40px; background: var(--bg-2); }
.foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.foot-brand { margin-bottom: 20px; } .foot-brand img { height: 38px; }
.foot-about p { font-size: 14.5px; color: var(--text-3); max-width: 330px; }
.foot-contact { margin-top: 18px; font-size: 14.5px; line-height: 2; }
.foot-contact a { color: var(--orange-bright); font-weight: 700; }
.foot-contact a:hover { color: var(--orange); }
.foot-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-4); margin-bottom: 18px; }
.foot-col a { display: block; font-size: 14.5px; color: var(--text-3); padding: 6px 0; transition: color .2s, transform .2s; }
.foot-col a:hover { color: var(--orange-bright); transform: translateX(3px); }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 13.5px; color: var(--text-4); flex-wrap: wrap; }
.foot-bottom .socials { display: flex; gap: 9px; }
.foot-bottom .socials a { width: 38px; height: 38px; border: 1px solid var(--line-2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--text-3); transition: .2s var(--ease); }
.foot-bottom .socials a:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }

/* ---------- Page hero ---------- */
.page-hero { padding: 92px 0 64px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; text-align: center; }
.page-hero .hero-grid-bg { -webkit-mask-image: radial-gradient(ellipse 60% 90% at 50% 0%, #000 18%, transparent 72%); mask-image: radial-gradient(ellipse 60% 90% at 50% 0%, #000 18%, transparent 72%); opacity: .5; }
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(40px, 5.4vw, 68px); margin-bottom: 18px; }
.page-hero .lead { margin: 0 auto; color: var(--text-2); }
.crumbs { font-size: 13px; color: var(--text-4); margin-bottom: 22px; }
.crumbs a:hover { color: var(--orange-bright); } .crumbs span { color: var(--orange-bright); }

/* ---------- About ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); transition: .3s var(--ease); }
.value-card:hover { border-color: var(--orange-line); transform: translateY(-5px); background: var(--surface-2); }
.value-card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-soft); border: 1px solid var(--orange-line); color: var(--orange-bright); display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 16px; }
.value-card h3 { font-size: 17px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text-3); }
.journey-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.journey-grid .sec-head { margin-bottom: 0; position: sticky; top: 110px; text-align: left; max-width: none; }
.journey-grid .sec-head .lead { margin-left: 0; margin-right: 0; }
.timeline { border-left: 2px solid var(--line-2); padding-left: 32px; display: flex; flex-direction: column; gap: 32px; }
.tl-item { position: relative; }
.tl-item::before { content: ''; position: absolute; left: -40px; top: 3px; width: 14px; height: 14px; border-radius: 50%; background: var(--orange); border: 3px solid var(--bg); box-shadow: 0 0 0 2px var(--orange); }
.tl-item .yr { font-weight: 700; color: var(--orange-bright); font-size: 14px; }
.tl-item h3 { font-size: 18px; margin: 5px 0 7px; }
.tl-item p { font-size: 14.5px; color: var(--text-3); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; text-align: left; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card { display: flex; gap: 15px; align-items: flex-start; padding: 22px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); transition: .25s var(--ease); }
.contact-card:hover { border-color: var(--orange-line); background: var(--surface-2); transform: translateX(4px); }
.contact-card .ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--orange-soft); border: 1px solid var(--orange-line); color: var(--orange-bright); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.contact-card h4 { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-4); margin-bottom: 4px; }
.contact-card a, .contact-card p { font-size: 16px; font-weight: 700; color: var(--text); }
.contact-card a:hover { color: var(--orange-bright); }
.form { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--sh-md); }
.field { margin-bottom: 18px; } .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--text-2); margin-bottom: 7px; }
.field input, .field textarea, .field select { width: 100%; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 10px; font-family: var(--sans); font-size: 15px; color: var(--text); transition: border .2s, box-shadow .2s; background: var(--surface-2); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-4); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(241,115,59,.18); }
.field textarea { resize: vertical; min-height: 120px; }
.field select option { background: var(--surface-2); color: var(--text); }
.form-note { font-size: 13px; color: var(--text-4); margin-top: 14px; }
.form-success { background: var(--teal-soft); border: 1px solid rgba(52,216,180,.4); color: var(--teal); padding: 14px 16px; border-radius: 10px; font-size: 14px; font-weight: 700; margin-bottom: 18px; display: none; }
.form-success.show { display: block; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; text-align: left; }
.post { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: .3s var(--ease); display: flex; flex-direction: column; }
.post:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--line-2); }
.post .cover { height: 168px; display: flex; align-items: flex-end; padding: 18px; position: relative; overflow: hidden; }
.post .cover::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 24px 24px; }
.post:nth-child(3n+1) .cover { background: linear-gradient(135deg, #1a2540, #0e1320); }
.post:nth-child(3n+2) .cover { background: linear-gradient(135deg, var(--orange-deep), #7a2f10); }
.post:nth-child(3n+3) .cover { background: linear-gradient(135deg, #11453a, #0a1f1a); }
.post .cover .tag { position: relative; z-index: 1; background: rgba(255,255,255,.12); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.18); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; }
.post .p-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post .p-meta { font-size: 12.5px; color: var(--text-4); margin-bottom: 10px; font-weight: 600; }
.post h3 { font-size: 19px; margin-bottom: 10px; line-height: 1.28; }
.post p { font-size: 14px; color: var(--text-3); margin-bottom: 16px; flex: 1; }
.post .p-read { font-size: 13.5px; font-weight: 700; color: var(--orange-bright); display: inline-flex; gap: 6px; align-items: center; }
.post:hover .p-read .arr { transform: translateX(4px); } .p-read .arr { transition: transform .25s var(--ease); }
.featured-post { display: grid; grid-template-columns: 1.05fr 1fr; border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 48px; background: var(--surface); text-align: left; transition: .3s var(--ease); }
.featured-post:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.featured-post .f-cover { background: linear-gradient(135deg, #1a2540, #0e1320); min-height: 360px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 34px; }
.featured-post .f-cover::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 30px 30px; }
.featured-post .f-cover .badge { position: relative; z-index: 1; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; }
.featured-post .f-body { padding: 46px; display: flex; flex-direction: column; justify-content: center; }
.featured-post .f-body .p-meta { font-size: 13px; color: var(--text-4); margin-bottom: 12px; font-weight: 600; }
.featured-post .f-body h2 { font-size: 31px; margin-bottom: 14px; }
.featured-post .f-body p { color: var(--text-3); margin-bottom: 24px; font-size: 16px; }

/* ---------- Article (single) ---------- */
.article { max-width: 760px; margin: 0 auto; text-align: left; }
.article .a-meta { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--text-4); margin-bottom: 22px; font-weight: 600; }
.article .a-meta .tag { background: var(--orange-soft); border: 1px solid var(--orange-line); color: var(--orange-bright); padding: 4px 11px; border-radius: 100px; }
.article h1 { font-size: clamp(34px, 4.6vw, 52px); margin-bottom: 24px; }
.article .a-lead { font-size: 20px; color: var(--text-2); line-height: 1.6; margin-bottom: 36px; }
.article-body > * + * { margin-top: 22px; }
.article-body h2 { font-size: 28px; margin-top: 44px; }
.article-body h3 { font-size: 20px; margin-top: 32px; }
.article-body p { font-size: 16.5px; color: var(--text-2); line-height: 1.75; }
.article-body ul { display: flex; flex-direction: column; gap: 12px; padding-left: 0; }
.article-body ul li { display: flex; gap: 12px; font-size: 16px; color: var(--text-2); }
.article-body ul li::before { content: '→'; color: var(--orange-bright); font-weight: 700; flex-shrink: 0; }
.article-body blockquote { border-left: 3px solid var(--orange); padding: 6px 0 6px 24px; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--text); }
.article-body .callout { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r); padding: 22px 24px; }
.article-body .callout b { color: var(--orange-bright); }
.article-cta { margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--line); display: flex; gap: 13px; align-items: center; flex-wrap: wrap; }

/* ---------- Knowledge ---------- */
.kc-search { display: flex; gap: 12px; max-width: 560px; margin: 0 auto 52px; }
.kc-search input { flex: 1; padding: 15px 18px; border: 1px solid var(--line-2); border-radius: 12px; font-family: var(--sans); font-size: 15px; background: var(--surface); color: var(--text); }
.kc-search input::placeholder { color: var(--text-4); }
.kc-search input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(241,115,59,.18); }
.kc-cats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 66px; text-align: left; }
.kc-cat { padding: 28px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); transition: .3s var(--ease); display: block; }
.kc-cat:hover { border-color: var(--orange-line); transform: translateY(-5px); background: var(--surface-2); }
.kc-cat .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--orange-soft); border: 1px solid var(--orange-line); color: var(--orange-bright); display: flex; align-items: center; justify-content: center; font-size: 23px; margin-bottom: 16px; }
.kc-cat h3 { font-size: 18px; margin-bottom: 8px; }
.kc-cat p { font-size: 14px; color: var(--text-3); margin-bottom: 14px; }
.kc-cat .count { font-size: 12.5px; font-weight: 700; color: var(--text-4); }
.kc-articles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; text-align: left; }
.kc-article { display: flex; gap: 16px; align-items: center; padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); transition: .25s var(--ease); }
.kc-article:hover { border-color: var(--orange-line); transform: translateX(5px); background: var(--surface-2); }
.kc-article .num { font-family: var(--serif); font-style: italic; font-size: 23px; color: var(--text-4); }
.kc-article h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; color: var(--text); }
.kc-article p { font-size: 13px; color: var(--text-4); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; text-align: left; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; background: var(--surface); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--orange-line); }
.faq-q { width: 100%; text-align: left; padding: 20px 22px; font-size: 16.5px; font-weight: 700; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .pm { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: .25s; }
.faq-item.open .faq-q .pm { background: var(--orange); color: #fff; border-color: var(--orange); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s var(--ease); }
.faq-a p { color: var(--text-3); font-size: 15px; padding: 0 22px 22px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.96) translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scale.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .feat, .contact-grid, .featured-post, .journey-grid { grid-template-columns: 1fr; gap: 38px; }
  .journey-grid .sec-head { position: static; margin-bottom: 8px; }
  .feat.rev .feat-text { order: 0; }
  .feat + .feat { margin-top: 76px; }
  .bento-card.col-3, .bento-card.col-2, .bento-card.col-4 { grid-column: span 3; }
  .eco-grid, .blog-grid, .kc-cats { grid-template-columns: 1fr 1fr; }
  .flow-steps, .metrics { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .app-body { grid-template-columns: 1fr; } .app-side { display: none; }
}
@media (max-width: 680px) {
  .section { padding: 78px 0; }
  .nav-links { display: none; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 12px; gap: 2px; box-shadow: var(--sh-md); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px; }
  .nav-toggle { display: flex; }
  .nav-signin { padding: 9px 16px; font-size: 13.5px; }
  .bento { display: flex; flex-direction: column; }
  .bento-card.col-3, .bento-card.col-2, .bento-card.col-4, .bento-card.col-6 { grid-column: span 1; }
  .eco-grid, .blog-grid, .kc-cats, .kc-articles, .value-grid, .flow-steps, .metrics, .field-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; } .hero-cta .btn { width: 100%; justify-content: center; }
  .app-stats { grid-template-columns: 1fr 1fr; } .app-cols { grid-template-columns: 1fr; }
  .cta-band { padding: 46px 24px; } .featured-post .f-body, .form { padding: 26px; }
  .kanban { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal, .reveal-scale { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   LANDING PAGE (performance-marketing) + THANK YOU
   ============================================================ */

/* Minimal landing header — logo + one phone CTA, no full nav (keeps focus) */
.lp-header { position: sticky; top: 0; z-index: 200; background: rgba(10,13,22,.82); backdrop-filter: saturate(160%) blur(16px); border-bottom: 1px solid var(--line); }
.lp-header .nav { height: 70px; }
.lp-header .lp-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--text); padding: 10px 18px; border: 1px solid var(--line-2); border-radius: 10px; transition: .2s var(--ease); }
.lp-header .lp-phone:hover { border-color: var(--orange-line); color: var(--orange-bright); transform: translateY(-1px); }
.lp-header .lp-phone .ic { color: var(--orange-bright); }

/* trust badge bar under hero */
.lp-trust { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.lp-trust .t { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-3); font-weight: 600; }
.lp-trust .t .tk { color: var(--teal); font-weight: 800; }

/* HERO split: copy + form */
.lp-hero { position: relative; padding: 56px 0 90px; overflow: hidden; }
.lp-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.lp-copy .eyebrow { margin-bottom: 20px; }
.lp-copy h1 { font-size: clamp(38px, 5vw, 62px); margin-bottom: 22px; }
.lp-copy h1 .hl { color: var(--orange-bright); }
.lp-copy .lead { font-size: 19px; margin-bottom: 28px; color: var(--text-2); }
.lp-points { display: flex; flex-direction: column; gap: 13px; margin-bottom: 8px; }
.lp-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; font-weight: 500; color: var(--text-2); }
.lp-points .ck { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; margin-top: 1px; }

/* lead form card */
.lp-form-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-lg); position: relative; }
.lp-form-card::before { content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, var(--orange-line), transparent 55%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.lp-form-card h3 { font-size: 22px; margin-bottom: 4px; }
.lp-form-card .sub { font-size: 14px; color: var(--text-3); margin-bottom: 22px; }
.lp-form-card .field { margin-bottom: 14px; }
.lp-form-card .btn-orange { width: 100%; justify-content: center; margin-top: 4px; font-size: 16px; padding: 15px; }
.lp-form-card .micro { font-size: 12px; color: var(--text-4); margin-top: 12px; text-align: center; }
.lp-form-card .spots { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--amber); background: var(--amber-soft); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }
.lp-form-card .spots .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); animation: pulse 2s infinite; }

/* outcome stats band */
.lp-outcomes { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.lp-outcome { text-align: center; padding: 30px 22px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); transition: .3s var(--ease); }
.lp-outcome:hover { border-color: var(--orange-line); background: var(--surface-2); transform: translateY(-4px); }
.lp-outcome .n { font-size: 46px; font-weight: 800; letter-spacing: -.04em; color: var(--orange-bright); line-height: 1; }
.lp-outcome .l { font-size: 15px; color: var(--text-2); margin-top: 10px; font-weight: 600; }
.lp-outcome .s { font-size: 13px; color: var(--text-4); margin-top: 4px; }

/* problem -> outcome rows */
.lp-flip { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.lp-flip-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
.lp-flip-row .bad { color: var(--text-3); font-size: 15px; }
.lp-flip-row .bad b { color: var(--rose); font-weight: 700; }
.lp-flip-row .good { color: var(--text); font-size: 15px; font-weight: 600; text-align: right; }
.lp-flip-row .good b { color: var(--teal); }
.lp-flip-row .ar { color: var(--orange-bright); font-size: 20px; font-weight: 800; }

/* sticky mobile CTA bar */
.lp-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: rgba(10,13,22,.94); backdrop-filter: blur(14px); border-top: 1px solid var(--line-2); padding: 12px 16px; gap: 10px; }
.lp-sticky-cta a { flex: 1; justify-content: center; }

/* ---- THANK YOU page ---- */
.ty { min-height: calc(100vh - 70px); display: flex; align-items: center; justify-content: center; padding: 60px 0; position: relative; overflow: hidden; }
.ty-inner { max-width: 640px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.ty .tick { width: 96px; height: 96px; border-radius: 50%; background: var(--teal-soft); border: 1px solid rgba(52,216,180,.4); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 48px; margin: 0 auto 28px; animation: pop .5s var(--ease) both; }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
.ty h1 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 16px; }
.ty .lead { font-size: 19px; margin: 0 auto 14px; color: var(--text-2); }
.ty .urgent { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--amber); background: var(--amber-soft); padding: 8px 16px; border-radius: 100px; margin-bottom: 36px; }
.ty-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 560px; margin: 0 auto 28px; }
.ty-btn { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 28px 20px; border-radius: var(--r-lg); font-weight: 700; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.ty-btn .big { font-size: 20px; } .ty-btn .small { font-size: 13px; font-weight: 600; opacity: .85; }
.ty-btn .ic { font-size: 30px; margin-bottom: 2px; }
.ty-call { background: var(--orange); color: #fff; box-shadow: 0 8px 24px rgba(241,115,59,.34); }
.ty-call:hover { background: var(--orange-bright); transform: translateY(-3px); box-shadow: 0 16px 38px rgba(241,115,59,.5); }
.ty-wa { background: #25d366; color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,.3); }
.ty-wa:hover { background: #20bd5a; transform: translateY(-3px); box-shadow: 0 16px 38px rgba(37,211,102,.45); }
.ty-note { font-size: 14px; color: var(--text-4); }
.ty-note a { color: var(--orange-bright); font-weight: 600; }

@media (max-width: 1000px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-outcomes { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .lp-flip-row { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .lp-flip-row .good { text-align: center; } .lp-flip-row .ar { transform: rotate(90deg); }
  .ty-actions { grid-template-columns: 1fr; }
  .lp-sticky-cta { display: flex; }
  .lp-header .lp-phone span.txt { display: none; }
  body.has-sticky-cta { padding-bottom: 76px; }
}
