/* ═══════════════════════════════════════════════
   2R AUTO PLATFORM · CTE Digital LLC · rrauto.app
   v4 — full redesign, mobile-first
═══════════════════════════════════════════════ */

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

/* ─ TOKENS ─ */
:root {
  --red:      #e8400c;
  --red-d:    #c0330a;
  --red-dim:  rgba(232,64,12,.1);
  --red-glow: rgba(232,64,12,.2);
  --red-b:    rgba(232,64,12,.28);

  --bg:    #090909;
  --bg2:   #0f0f0f;
  --bg3:   #161616;
  --bg4:   #1d1d1d;
  --bg5:   #242424;

  --br:  #272727;
  --br2: #333;
  --br3: #424242;

  --t:   #eeebe5;
  --t2:  #9a9490;
  --t3:  #5a5550;
  --t4:  #343130;

  --green:     #3db87a;
  --green-dim: rgba(61,184,122,.12);
  --green-b:   rgba(61,184,122,.35);
  --blue:      #3b7dd8;
  --blue-dim:  rgba(59,125,216,.12);
  --gold:      #e8a020;
  --gold-dim:  rgba(232,160,32,.12);

  --fh: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
  --fm: 'JetBrains Mono', monospace;

  --nav: 64px;
  --tick: 40px;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav) + var(--tick) + 8px); }

body {
  background: var(--bg);
  color: var(--t);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* noise */
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.028'/%3E%3C/svg%3E");
}

h1,h2,h3 { font-family: var(--fh); font-weight: 900; line-height: 1; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--fb); }
em { font-style: italic; }
strong { font-weight: 600; color: var(--t); }
p { line-height: 1.65; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--br2); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ═══ NAV ═══ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav);
  z-index: 900; transition: background .2s, border-color .2s;
  border-bottom: 1px solid transparent;
}
#nav.solid { background: rgba(9,9,9,.96); backdrop-filter: blur(18px); border-bottom-color: var(--br); }

.nav-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; gap: 20px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-2r {
  font-family: var(--fh); font-size: 26px; font-weight: 900;
  color: var(--red); letter-spacing: -1px; line-height: 1;
}
.logo-bar { width: 1px; height: 20px; background: var(--br2); flex-shrink: 0; }
.logo-text {
  font-family: var(--fh); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--t3);
}

.nav-links {
  display: flex; list-style: none; gap: 20px; margin-left: 16px;
}
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--t2);
  transition: color .18s; white-space: nowrap;
}
.nav-links a:hover { color: var(--t); }

.nav-end { margin-left: auto; display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--t3);
  letter-spacing: .5px; white-space: nowrap;
}
.nav-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.8); }
}

.btn-cta {
  display: inline-flex; align-items: center;
  padding: 8px 18px; border-radius: 4px; border: none;
  background: var(--red); color: #fff;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 0 18px var(--red-glow);
  transition: background .18s, box-shadow .18s, transform .18s;
}
.btn-cta:hover {
  background: var(--red-d);
  box-shadow: 0 0 28px var(--red-glow);
  transform: translateY(-1px);
}

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; margin-left: auto; flex-shrink: 0;
}
.burger span { display: block; width: 22px; height: 1.5px; background: var(--t2); transition: all .2s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* DRAWER */
.drawer {
  display: none; position: fixed;
  top: var(--nav); left: 0; right: 0; bottom: 0;
  background: rgba(9,9,9,.98); backdrop-filter: blur(16px);
  z-index: 899; padding: 24px 32px;
  flex-direction: column; gap: 0;
}
.drawer.open { display: flex; }
.drawer a {
  display: block; padding: 16px 0;
  font-family: var(--fh); font-size: 28px; font-weight: 800;
  color: var(--t2); border-bottom: 1px solid var(--bg4);
  transition: color .18s;
}
.drawer a:hover { color: var(--red); }
.drawer-cta {
  margin-top: 24px; display: block; text-align: center;
  padding: 16px; border-radius: 6px !important;
  background: var(--red) !important; color: #fff !important;
  font-family: var(--fh) !important; font-size: 20px !important; font-weight: 800 !important;
  border: none !important;
}

/* ═══ TICKER ═══ */
.ticker {
  margin-top: var(--nav); height: var(--tick);
  overflow: hidden; background: var(--bg3); border-bottom: 1px solid var(--br);
  position: relative; display: flex; align-items: center;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.ticker::before { left: 0;  background: linear-gradient(to right, var(--bg3), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left,  var(--bg3), transparent); }
.ticker-inner {
  display: flex; white-space: nowrap; gap: 0;
  animation: tickerAnim 40s linear infinite;
}
@keyframes tickerAnim {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-inner span {
  font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--t3); padding: 0 24px; flex-shrink: 0;
}
.ticker-inner span:nth-child(odd) { color: var(--t3); }

/* ═══ SHARED SECTION ═══ */
.section { padding: 96px 0; }
.bg-alt { background: var(--bg2); border-top: 1px solid var(--br); border-bottom: 1px solid var(--br); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); margin-bottom: 14px;
  display: block;
}
.section-h2 {
  font-family: var(--fh); font-size: clamp(36px,4.5vw,60px);
  font-weight: 900; line-height: 1.02; letter-spacing: -.5px;
  color: var(--t); margin-bottom: 20px;
}
.section-h2 em { color: var(--t3); }
.section-sub { font-size: 16px; color: var(--t2); max-width: 540px; margin-bottom: 52px; line-height: 1.65; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--tick));
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 60px 32px 80px;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: 5%; left: 50%; transform: translateX(-50%);
  width: min(800px,120vw); height: 400px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(232,64,12,.16) 0%, transparent 68%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(232,64,12,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,64,12,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 88% 65% at 50% 38%, black, transparent);
}

.hero-inner { position: relative; z-index: 1; max-width: 860px; width: 100%; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); border: 1px solid var(--red-b); background: var(--red-dim);
  padding: 7px 16px; border-radius: 4px; margin-bottom: 28px;
}
.eyebrow-pip {
  width: 5px; height: 5px; border-radius: 50%; background: var(--red);
  flex-shrink: 0; animation: pulse 2s ease infinite;
}

.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(60px, 10.5vw, 130px);
  font-weight: 900; line-height: .9;
  letter-spacing: -2px; margin-bottom: 20px;
  text-align: center; color: var(--t);
}
.h1-accent { color: var(--red); }
.h1-outline {
  -webkit-text-stroke: 2px var(--t);
  color: transparent; font-style: italic;
}

.hero-body {
  font-size: clamp(15px,1.8vw,18px); color: var(--t2);
  max-width: 560px; margin: 0 auto 24px; line-height: 1.65;
}
.hero-body strong { color: var(--t); }

.hero-chips {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
}
.hero-chips span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: 100px; border: 1px solid var(--br);
  background: var(--bg3); font-size: 12px; font-weight: 600; color: var(--t2);
}

/* SIGNUP FORM */
.signup-form {
  display: flex; max-width: 480px; margin: 0 auto;
  border: 1px solid var(--br2); border-radius: 6px;
  overflow: hidden; background: var(--bg3);
  transition: border-color .2s, box-shadow .2s;
}
.signup-form:focus-within { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-dim); }
.signup-form input {
  flex: 1; min-width: 0; padding: 13px 16px;
  background: transparent; border: none; outline: none;
  font-family: var(--fb); font-size: 14px; color: var(--t);
}
.signup-form input::placeholder { color: var(--t3); }
.signup-form button {
  flex-shrink: 0; padding: 13px 20px;
  background: var(--red); border: none; color: #fff;
  font-family: var(--fh); font-size: 14px; font-weight: 800;
  letter-spacing: .5px; text-transform: uppercase; white-space: nowrap;
  transition: background .18s;
}
.signup-form button:hover { background: var(--red-d); }
.signup-form button:active { transform: scale(.98); }
.signup-form-lg { max-width: 500px; }

.signup-note { font-size: 12px; color: var(--t3); margin-top: 10px; }
.signup-success {
  font-size: 14px; font-weight: 600; color: var(--green);
  margin-top: 12px; display: flex; align-items: center; justify-content: center;
  gap: 8px; opacity: 0; transition: opacity .4s ease;
}
.signup-success.visible { opacity: 1; }

/* HERO STATS */
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; margin-top: 52px; flex-wrap: wrap;
}
.hstat { text-align: center; }
.hstat strong {
  display: block; font-family: var(--fh); font-size: 34px;
  font-weight: 900; color: var(--red); line-height: 1;
}
.hstat span { font-size: 11px; color: var(--t3); margin-top: 3px; display: block; }
.hstat-div { width: 1px; height: 30px; background: var(--br); flex-shrink: 0; }

/* ═══ TRUST ═══ */
.trust {
  border-top: 1px solid var(--br); border-bottom: 1px solid var(--br);
  background: var(--bg2); padding: 18px 0;
}
.trust-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.trust-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--t4); white-space: nowrap; flex-shrink: 0;
}
.trust-items { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.trust-items span { font-size: 12px; color: var(--t3); font-weight: 600; white-space: nowrap; }
.trust-items .dot { color: var(--br2); }

/* ═══ PROBLEM ═══ */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px;
  margin-top: 48px; align-items: start;
}

.pain-list { display: flex; flex-direction: column; gap: 12px; }
.pain-item {
  display: flex; gap: 16px; padding: 18px 20px;
  background: var(--bg3); border: 1px solid var(--br);
  border-radius: 10px; transition: border-color .2s, transform .2s;
}
.pain-item:hover { border-color: var(--red-b); transform: translateX(3px); }
.pain-num {
  font-family: var(--fh); font-size: 12px; font-weight: 800;
  color: var(--red); width: 20px; flex-shrink: 0; padding-top: 2px;
}
.pain-title { font-size: 14px; font-weight: 600; color: var(--t); margin-bottom: 6px; }
.pain-body { font-size: 13px; color: var(--t2); line-height: 1.6; margin-bottom: 8px; }
.tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--red); background: var(--red-dim); padding: 2px 8px; border-radius: 3px;
}

.problem-right { display: flex; flex-direction: column; gap: 16px; }
.quote-box {
  background: var(--bg3); border: 1px solid var(--br);
  border-radius: 12px; padding: 24px; position: relative;
}
.q-mark {
  font-family: var(--fh); font-size: 80px; font-weight: 900;
  color: var(--red); opacity: .1; line-height: .5; margin-bottom: -14px;
  user-select: none;
}
.q-slides { min-height: 140px; }
.q-slide { display: none; }
.q-slide.active { display: block; }
.q-slide p { font-size: 16px; font-style: italic; color: var(--t); line-height: 1.6; margin-bottom: 14px; }
.q-attr { font-size: 12px; color: var(--t3); }
.q-attr strong { color: var(--t2); display: block; font-size: 13px; }
.q-dots { display: flex; gap: 6px; margin-top: 14px; }
.q-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--br2); border: none; cursor: pointer;
  transition: all .18s; padding: 0;
}
.q-dot.active { background: var(--red); width: 18px; border-radius: 3px; }

.compare {
  background: var(--bg3); border: 1px solid var(--br); border-radius: 12px; overflow: hidden;
}
.compare-head {
  display: grid; grid-template-columns: 1fr 56px 56px;
  padding: 9px 14px; background: var(--bg4); border-bottom: 1px solid var(--br);
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--t4);
}
.c-us { text-align: center; color: var(--red); }
.compare-row {
  display: grid; grid-template-columns: 1fr 56px 56px;
  padding: 8px 14px; border-bottom: 1px solid rgba(255,255,255,.03);
  font-size: 13px; align-items: center; transition: background .15s;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: var(--bg4); }
.compare-row > span:first-child { color: var(--t2); }
.c-no  { text-align: center; color: var(--t4); font-weight: 700; }
.c-yes { text-align: center; color: var(--green); font-weight: 700; }
.c-mid { text-align: center; color: var(--gold); font-weight: 700; }

/* ═══ FEATURES BENTO ═══ */
.feat-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: end; margin-bottom: 36px;
}
.feat-head p { font-size: 16px; color: var(--t2); line-height: 1.65; }

.bento {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 10px;
}
.bcard-lg   { grid-column: span 4; }
.bcard-sm   { grid-column: span 2; }
.bcard-full { grid-column: span 6; }

.bcard {
  background: var(--bg3); border: 1px solid var(--br); border-radius: 12px;
  padding: 24px; display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: border-color .2s, transform .18s;
}
.bcard:hover { border-color: var(--br3); transform: translateY(-2px); }
.bcard-ai { border-top: 2px solid var(--red); }
.bcard-live { border-top: 2px solid var(--green); }

.bcard-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red); background: var(--red-dim); border: 1px solid var(--red-b);
  padding: 3px 8px; border-radius: 3px; display: inline-block; margin-bottom: 14px; width: fit-content;
}
.bcard-title { font-family: var(--fh); font-size: 20px; font-weight: 800; color: var(--t); margin-bottom: 8px; }
.bcard-body { font-size: 13px; color: var(--t2); line-height: 1.65; flex: 1; }

.chip {
  display: inline-block; font-size: 10px; font-weight: 700;
  padding: 1px 6px; border-radius: 2px; vertical-align: middle;
}
.chip-blue { background: var(--blue-dim); color: var(--blue); }
.chip-gold { background: var(--gold-dim); color: var(--gold); }

.bcard-examples { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.bex {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  background: var(--bg5); border: 1px solid var(--br); border-radius: 6px; padding: 7px 11px;
}
.bex code {
  font-family: var(--fm); font-size: 11px; color: var(--red);
  background: var(--red-dim); padding: 2px 6px; border-radius: 3px;
}
.bex span { font-size: 12px; color: var(--t2); }

/* self-serve steps */
.steps {
  display: flex; align-items: center; gap: 8px; margin-top: 16px; flex-wrap: wrap;
}
.step-item {
  display: flex; align-items: center; gap: 7px;
  background: var(--bg5); border: 1px solid var(--br); border-radius: 6px;
  padding: 6px 11px; font-size: 12px; color: var(--t2);
}
.step-n {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red-dim); color: var(--red);
  font-family: var(--fh); font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-arr { color: var(--t4); font-size: 13px; flex-shrink: 0; }
.step-live {
  border-color: var(--green); color: var(--green); background: var(--green-dim);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0;
  animation: liveDot 1.8s ease infinite;
}
@keyframes liveDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(61,184,122,.5); }
  50%      { box-shadow: 0 0 0 5px rgba(61,184,122,0); }
}

/* ═══ SELLING STRIP ═══ */
.strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--br); border-bottom: 1px solid var(--br);
  background: var(--bg2);
}
.strip-item {
  display: flex; gap: 12px; padding: 26px 22px; align-items: flex-start;
  transition: background .18s;
}
.strip-item + .strip-item { border-left: 1px solid var(--br); }
.strip-item:hover { background: rgba(232,64,12,.03); }
.strip-item > span { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.strip-item > div { font-size: 13px; color: var(--t2); line-height: 1.55; }
.strip-item strong { display: block; color: var(--t); font-size: 13px; font-weight: 600; margin-bottom: 3px; }

/* ═══ HOW IT WORKS ═══ */
.how-list {
  margin-top: 52px;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}

/* The vertical line — drawn as a pseudo on the container, not overlapping circles */
.how-list::before {
  content: '';
  position: absolute;
  left: 27px;         /* center of 54px circle = 27px */
  top: 54px;          /* start BELOW the first circle */
  bottom: 54px;       /* end ABOVE the last circle */
  width: 1px;
  background: linear-gradient(to bottom, var(--red) 0%, var(--green) 85%, transparent 100%);
  z-index: 0;
}

.how-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding-bottom: 40px; position: relative;
}
.how-item:last-child { padding-bottom: 0; }

/* num-wrap creates a bg block that hides the line behind it */
.how-num-wrap {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  /* solid background matches section bg so line is invisible behind circle */
  background: var(--bg2);
  border-radius: 50%;
  padding: 0;
  line-height: 0;
}

.how-num {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 15px; font-weight: 800; color: var(--red);
  background: var(--bg3); /* solid fill — never transparent */
  border: 1.5px solid var(--br2);
  position: relative; z-index: 2;
  /* NO transition on background — prevent any flash */
}

/* Hover: tint the border + add a soft ring — but NEVER change opacity */
.how-item:hover .how-num {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-dim);
}

/* Final step live circle */
.how-num-live {
  background: var(--green-dim) !important;
  border-color: var(--green) !important;
  color: transparent !important;
}
.live-ring {
  width: 14px; height: 14px; border-radius: 50%; background: var(--green);
  display: block; animation: liveDot 1.8s ease infinite;
}

.how-body { padding-top: 12px; }
.how-title { font-family: var(--fh); font-size: 22px; font-weight: 800; color: var(--t); margin-bottom: 7px; }
.how-desc { font-size: 14px; color: var(--t2); line-height: 1.7; margin-bottom: 7px; }
.how-time {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red); font-family: var(--fm);
}
.how-time-green { color: var(--green) !important; }

/* ═══ INFRASTRUCTURE ═══ */
.infra-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 48px; }
.icard {
  background: var(--bg3); border: 1px solid var(--br); border-radius: 12px;
  padding: 24px; transition: border-color .2s, transform .18s;
}
.icard:hover { border-color: var(--br3); transform: translateY(-2px); }
.icard-icon { font-size: 26px; margin-bottom: 12px; line-height: 1; }
.icard-name { font-family: var(--fh); font-size: 20px; font-weight: 800; color: var(--t); margin-bottom: 3px; }
.icard-role { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--t3); margin-bottom: 10px; }
.icard p { font-size: 13px; color: var(--t2); line-height: 1.6; }

/* ═══ PRICING ═══ */
.price-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 0; }
.pcard {
  background: var(--bg3); border: 1px solid var(--br); border-radius: 12px;
  padding: 24px 20px; display: flex; flex-direction: column; position: relative;
  transition: border-color .2s, transform .18s;
}
.pcard:hover { border-color: var(--br3); transform: translateY(-3px); }
.pcard-featured {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(232,64,12,.05), var(--bg3) 28%);
  transform: scale(1.02);
}
.pcard-featured:hover { transform: scale(1.02) translateY(-3px); }
.pcard-network { border-color: rgba(232,160,32,.35); }

.pcard-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-size: 10px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; padding: 3px 12px;
  border-radius: 3px; white-space: nowrap;
}
.pcard-tier {
  font-family: var(--fh); font-size: 11px; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase; color: var(--t3); margin-bottom: 10px;
}
.pcard-price {
  font-family: var(--fh); font-size: 52px; font-weight: 900;
  color: var(--t); line-height: 1; margin-bottom: 4px;
}
.pcard-price sup { font-size: 22px; vertical-align: super; color: var(--t2); }
.pcard-price sub { font-size: 15px; color: var(--t3); }
.pcard-tag { font-size: 12px; color: var(--t3); margin-bottom: 10px; }
.pcard-desc { font-size: 13px; color: var(--t2); }
.pcard-div { height: 1px; background: var(--br); margin: 14px 0; }
.pcard ul { list-style: none; flex: 1; }
.pcard li {
  display: flex; gap: 8px; font-size: 13px; color: var(--t2);
  padding: 4px 0; align-items: flex-start; line-height: 1.4;
}
.pcard li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.pcard-network li::before { color: var(--gold); }
.pcard li strong { color: var(--t); font-weight: 600; }
.pcard-btn {
  display: block; width: 100%; padding: 11px 16px; margin-top: 18px;
  border-radius: 4px; font-family: var(--fh); font-size: 14px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; text-align: center;
  border: none; transition: all .18s; cursor: pointer;
}
.pcard-btn-outline { background: transparent; border: 1px solid var(--br2); color: var(--t2); }
.pcard-btn-outline:hover { border-color: var(--red); color: var(--red); }
.pcard-btn-red { background: var(--red); color: #fff; box-shadow: 0 3px 14px var(--red-glow); }
.pcard-btn-red:hover { background: var(--red-d); transform: translateY(-1px); }
.price-note {
  margin-top: 22px; padding: 13px 16px;
  background: var(--bg3); border: 1px solid var(--br); border-radius: 8px;
  font-size: 13px; color: var(--t2); display: flex; align-items: center; gap: 8px;
}

/* ═══ ABOUT ═══ */
.two-col-about { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-p { font-size: 15px; color: var(--t2); line-height: 1.8; margin-bottom: 12px; }
.about-attr {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 24px; padding-top: 20px; border-top: 0.5px solid var(--br);
}
.about-attr-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--t3); font-weight: 500; letter-spacing: .3px;
}
.about-attr-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.about-attr-divider { color: var(--br2); }

.about-card {
  background: var(--bg3); border: 1px solid var(--br); border-radius: 16px;
  padding: 28px; margin-bottom: 12px; position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.about-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.about-card-title {
  font-family: var(--fh); font-size: 22px; font-weight: 900; color: var(--t);
  margin-bottom: 10px; line-height: 1.1;
}
.about-card p { font-size: 14px; color: var(--t2); line-height: 1.7; }

.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.astat {
  background: var(--bg3); border: 1px solid var(--br); border-radius: 10px;
  padding: 16px 12px; text-align: center;
}
.astat strong { display: block; font-family: var(--fh); font-size: 40px; font-weight: 900; color: var(--red); line-height: 1; }
.astat span { font-size: 11px; color: var(--t3); display: block; margin-top: 3px; line-height: 1.3; }

/* ═══ FINAL CTA ═══ */
.cta-section {
  position: relative; padding: 110px 0; overflow: hidden;
  border-top: 1px solid var(--br); background: var(--bg2);
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(232,64,12,.12), transparent 65%);
}
.cta-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(232,64,12,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,64,12,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 78% 68% at 50% 50%, black, transparent);
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 600px; margin: 0 auto; }
.cta-h2 {
  font-family: var(--fh); font-size: clamp(56px,9vw,106px); font-weight: 900;
  line-height: .9; letter-spacing: -2px; color: var(--t); margin-bottom: 20px;
}
.cta-red { color: var(--red); }
.cta-body { font-size: 17px; color: var(--t2); margin-bottom: 36px; line-height: 1.6; }
.cta-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 22px; flex-wrap: wrap;
}
.cta-trust span { font-size: 12px; font-weight: 600; color: var(--t3); }

/* ═══ FOOTER ═══ */
footer { background: var(--bg); border-top: 1px solid var(--br); padding: 48px 0 24px; }
.footer-wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 13px; color: var(--t3); line-height: 1.7; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--t4); margin-bottom: 3px;
}
.footer-col a { font-size: 13px; color: var(--t3); transition: color .18s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid var(--bg5);
  font-size: 12px; color: var(--t4);
}

/* ═══════════════════════════
   RESPONSIVE — MOBILE FIRST
═══════════════════════════ */

/* ─ Tablet (≤ 1024px) ─ */
@media (max-width: 1024px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12px; }
  .price-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .pcard-featured { transform: none; }
  .pcard-featured:hover { transform: translateY(-3px); }
  .bcard-lg   { grid-column: span 6; }
  .bcard-sm   { grid-column: span 3; }
  .bcard-full { grid-column: span 6; }
  .infra-grid { grid-template-columns: 1fr 1fr; }
}

/* ─ Phablet (≤ 860px) ─ */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-pill  { display: none; }
  .btn-cta   { display: none; }
  .burger    { display: flex; }

  .two-col        { grid-template-columns: 1fr; gap: 36px; }
  .two-col-about  { grid-template-columns: 1fr; gap: 36px; }
  .feat-head      { grid-template-columns: 1fr; gap: 12px; }
  .strip          { grid-template-columns: 1fr 1fr; }
  .strip-item:nth-child(n+3) { border-top: 1px solid var(--br); }
  .strip-item:nth-child(even) { border-left: 1px solid var(--br); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-wrap { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ─ Mobile (≤ 640px) ─ */
@media (max-width: 640px) {
  :root { --nav: 56px; --tick: 36px; }

  .container  { padding: 0 20px; }
  .nav-wrap   { padding: 0 20px; }
  .footer-wrap { padding: 0 20px; }
  .section    { padding: 64px 0; }
  .cta-section { padding: 72px 0; }

  .logo-text  { display: none; }
  .logo-bar   { display: none; }

  /* HERO */
  .hero { padding: 40px 20px 60px; min-height: calc(100svh - var(--tick)); }
  .hero-h1 { font-size: clamp(52px, 14vw, 76px); letter-spacing: -1px; }
  .hero-body { font-size: 15px; }
  .hero-chips { gap: 6px; }
  .hero-chips span { font-size: 11px; padding: 4px 10px; }
  .hero-stats { gap: 14px; margin-top: 36px; }
  .hstat-div  { display: none; }
  .hstat strong { font-size: 28px; }
  .eyebrow { font-size: 9.5px; gap: 7px; padding: 5px 12px; margin-bottom: 20px; }

  /* SIGNUP FORM */
  .signup-form { flex-direction: column; border-radius: 8px; }
  .signup-form input { padding: 13px 14px; border-bottom: 1px solid var(--br2); }
  .signup-form button { padding: 13px; border-radius: 0; justify-content: center; }

  /* SECTIONS */
  .section-h2 { font-size: clamp(30px, 9vw, 44px); }
  .cta-h2     { font-size: clamp(46px, 12vw, 72px); }

  /* BENTO */
  .bcard-lg, .bcard-sm, .bcard-full { grid-column: span 6; }

  /* SELLING STRIP */
  .strip { grid-template-columns: 1fr; }
  .strip-item + .strip-item { border-left: none; border-top: 1px solid var(--br); }
  .strip-item:nth-child(even) { border-left: none; }

  /* HOW IT WORKS */
  .how-list::before { left: 22px; top: 46px; bottom: 46px; }
  .how-num { width: 44px; height: 44px; font-size: 13px; }
  .how-num-wrap { background: var(--bg2); }
  .how-title { font-size: 19px; }
  .how-desc  { font-size: 13px; }

  /* STEPS (self-serve) */
  .steps { flex-direction: column; align-items: flex-start; }
  .step-arr { transform: rotate(90deg); }

  /* PRICING */
  .price-grid { grid-template-columns: 1fr; }
  .pcard-featured { transform: none; }

  /* INFRA */
  .infra-grid { grid-template-columns: 1fr; }

  /* ABOUT */
  .about-stats { grid-template-columns: 1fr; }

  /* TRUST */
  .trust { padding: 14px 0; }
  .trust-wrap { flex-direction: column; align-items: flex-start; gap: 8px; }
  .trust-items { gap: 8px; }
  .trust-items .dot { display: none; }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* PROBLEM QUOTE STICKY OFF on mobile */
  .quote-sticky { position: static; }
}
