/* ==========================================================================
   BestOfRo — base
   ========================================================================== */

:root{
  --bg: #08090b;
  --bg-alt: #0e1013;
  --surface: #131519;
  --surface-2: #1a1d22;
  --border: #262a31;
  --text: #f6f7f8;
  --text-dim: #d6d9de;
  --text-faint: #a7abb3;
  --blue: #3b82f6;
  --blue-light: #64a9ff;
  --gold: #e6b800;
  --gold-light: #f5cd3a;
  --green: #22c55e;
  --red: #ef4444;
  --whatsapp: #25d366;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --shadow: 0 20px 60px -20px rgba(0,0,0,.6);
  --sheen: linear-gradient(180deg, rgba(255,255,255,.035), transparent 32%);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body{
  margin: 0;
  max-width: 100%;
  background:
    radial-gradient(900px 520px at 10% -6%, rgba(59,130,246,.14), transparent 60%),
    radial-gradient(700px 480px at 100% 8%, rgba(230,184,0,.09), transparent 55%),
    radial-gradient(800px 600px at 15% 55%, rgba(59,130,246,.07), transparent 60%),
    radial-gradient(900px 600px at 92% 72%, rgba(230,184,0,.06), transparent 55%),
    radial-gradient(1000px 700px at 50% 102%, rgba(59,130,246,.09), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* subtle grain texture for depth/personality */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul, ol{ margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4{ margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }
:focus-visible{ outline: 2px solid var(--blue-light); outline-offset: 3px; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
section{ padding: 96px 0; position: relative; }
main[id], section[id]{ scroll-margin-top: 92px; }
.text-muted{ color: var(--text-faint); }
.text-accent{ color: var(--gold); }

/* Reveal-on-scroll */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

.count-up{ font-variant-numeric: tabular-nums; }

/* ==========================================================================
   Icon badges (draw-in animation on reveal)
   ========================================================================== */
.icon-badge{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(59,130,246,.12);
  color: var(--blue-light);
  transform: scale(.6);
  opacity: 0;
  transition: transform .45s cubic-bezier(.2,.9,.3,1.3), opacity .35s ease;
}
.icon-badge.gold{ background: rgba(230,184,0,.14); color: var(--gold-light); }
.icon-badge svg{ width: 22px; height: 22px; overflow: visible; }
.reveal.is-visible .icon-badge{ transform: scale(1); opacity: 1; }

.icon-badge svg [stroke]{
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .9s ease;
}
.icon-badge svg [fill]:not([fill="none"]){
  opacity: 0;
  transform-origin: center;
  transform: scale(0);
  transition: opacity .3s ease, transform .3s ease;
}
.reveal.is-visible .icon-badge svg [stroke]{ stroke-dashoffset: 0; }
.reveal.is-visible .icon-badge svg [fill]:not([fill="none"]){ opacity: 1; transform: scale(1); }
.icon-badge svg [stroke]:nth-of-type(1){ transition-delay: .1s; }
.icon-badge svg [stroke]:nth-of-type(2){ transition-delay: .28s; }
.icon-badge svg [stroke]:nth-of-type(3){ transition-delay: .46s; }
.icon-badge svg [stroke]:nth-of-type(4){ transition-delay: .64s; }
.icon-badge svg [fill]:not([fill="none"]):nth-of-type(1){ transition-delay: .5s; }
.icon-badge svg [fill]:not([fill="none"]):nth-of-type(2){ transition-delay: .62s; }
.icon-badge svg [fill]:not([fill="none"]):nth-of-type(3){ transition-delay: .74s; }
.icon-badge svg [fill]:not([fill="none"]):nth-of-type(4){ transition-delay: .86s; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0) scale(.97); }
.btn-primary{
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(59,130,246,.6);
}
.btn-primary:hover{ background: var(--blue-light); }
.btn-primary .btn-arrow{ transition: transform .2s ease; }
.btn-primary:hover .btn-arrow{ transform: translateX(3px); }
.btn-primary::after, .btn-whatsapp::after{
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.btn-primary:hover::after, .btn-whatsapp:hover::after{
  animation: btn-shine .85s ease;
}
@keyframes btn-shine{
  from{ left: -75%; }
  to{ left: 125%; }
}
.btn-ghost{
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover{ border-color: var(--text-dim); }
.btn-whatsapp{
  position: relative;
  overflow: hidden;
  background: var(--whatsapp);
  color: #06210f;
  box-shadow: 0 8px 24px -8px rgba(37,211,102,.5);
}
.btn-whatsapp:hover{ background: #33e07a; }
.btn-whatsapp-icon{ display: flex; }
.btn-whatsapp-icon svg{ width: 18px; height: 18px; }
.btn-lg{ padding: 17px 34px; font-size: 16px; }
.btn-nav{ padding: 10px 20px; font-size: 14px; }
.btn-block{ width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,9,11,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.scroll-progress{
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-light), var(--gold-light));
  transition: width .12s linear;
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.logo-arrow{ color: var(--blue-light); }
.main-nav{
  display: flex;
  gap: 32px;
}
.main-nav a{
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  transition: color .2s ease;
  padding-bottom: 3px;
}
.main-nav a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--blue-light);
  transition: right .25s ease;
}
.main-nav a:hover{ color: var(--text); }
.main-nav a:hover::after{ right: 0; }
.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span{
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(115deg, transparent 42%, rgba(255,255,255,.05) 50%, transparent 58%),
    radial-gradient(620px 420px at 84% 68%, rgba(100,169,255,.10), transparent 70%);
  background-size: 320% 320%, 100% 100%;
  background-position: -60% 0%, 0 0;
  animation: hero-sweep 10s ease-in-out infinite;
}
@keyframes hero-sweep{
  0%, 15%{ background-position: -60% 0%, 0 0; }
  55%, 100%{ background-position: 160% 0%, 0 0; }
}
.hero::before, .hero::after{
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  animation: blob-float 16s ease-in-out infinite;
}
.hero::before{
  width: 480px; height: 480px;
  top: -180px; left: 50%;
  margin-left: -340px;
  background: rgba(59,130,246,.22);
}
.hero::after{
  width: 380px; height: 380px;
  top: -80px; left: 50%;
  margin-left: 60px;
  background: rgba(230,184,0,.14);
  animation-delay: -6s;
}
@keyframes blob-float{
  0%, 100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(30px,40px) scale(1.08); }
}
.hero-inner{ display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.hero-kicker{
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(59,130,246,.16), rgba(59,130,246,.08));
  border-color: rgba(100,169,255,.4);
}
.hero-kicker-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
  animation: kicker-pulse 2.4s ease-in-out infinite;
}
@keyframes kicker-pulse{
  0%, 100%{ box-shadow: 0 0 0 0 rgba(100,169,255,.5); }
  50%{ box-shadow: 0 0 0 5px rgba(100,169,255,0); }
}
.hero-kicker::after{
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  animation: kicker-shine 5.5s ease-in-out infinite;
}
@keyframes kicker-shine{
  0%, 25%{ left: -60%; }
  60%, 100%{ left: 140%; }
}
.hero h1{
  font-size: clamp(32px, 5.4vw, 62px);
  max-width: 820px;
}
.hero h1 .hl{
  background-image: linear-gradient(90deg, rgba(230,184,0,.45), rgba(230,184,0,.28));
  background-repeat: no-repeat;
  background-size: 100% .34em;
  background-position: 0 92%;
}
.hero-sub{
  margin-top: 22px;
  max-width: 560px;
  font-size: 18px;
  color: var(--text-dim);
}
.vsl-wrap{
  margin-top: 48px;
  width: 100%;
  max-width: 760px;
}
.vsl-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #000;
}
.vsl-frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero-cta{
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-rating{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dim);
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}
.stars{ color: var(--gold); letter-spacing: 2px; }

.scroll-cue{
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-faint);
}
.scroll-cue-track{
  position: relative;
  width: 2px;
  height: 38px;
  background: linear-gradient(var(--border), transparent);
  overflow: hidden;
  border-radius: 2px;
}
.scroll-cue-sweep{
  position: absolute;
  left: 0; top: -38px;
  width: 100%; height: 38px;
  background: linear-gradient(var(--blue-light), transparent);
  animation: cue-sweep 3s ease-in-out infinite;
}
@keyframes cue-sweep{
  0%{ transform: translateY(0); opacity: 0; }
  18%{ opacity: 1; }
  80%{ opacity: 1; }
  100%{ transform: translateY(76px); opacity: 0; }
}
.scroll-cue-label{ font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

.logo-strip{
  margin-top: 60px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.logo-strip-label{
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 22px;
}
.logo-marquee{
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee-inner{
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.logo-marquee:hover .logo-marquee-inner{ animation-play-state: paused; }
.logo-track{
  display: flex;
  gap: 20px;
  align-items: center;
  padding-right: 20px;
}
.client-logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  white-space: nowrap;
  opacity: .78;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.client-logo:hover, .client-logo:active{ opacity: 1; border-color: var(--text-faint); transform: translateY(-2px); }
.client-logo img{
  height: 30px;
  max-width: 148px;
  width: auto;
  object-fit: contain;
  display: block;
}
.client-logo--light{ background: #fff; border-color: #fff; }

@keyframes marquee-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ==========================================================================
   Social proof / portfolio
   ========================================================================== */
.proof{
  text-align: center;
  border-top: 1px solid var(--border);
}
.stat-headline{
  font-size: clamp(26px, 4vw, 44px);
}
.stat-headline .count-up{
  background: linear-gradient(135deg, var(--gold-light), var(--blue-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.portfolio-marquee{
  margin-top: 52px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.portfolio-marquee-inner{
  display: flex;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}
.portfolio-marquee:hover .portfolio-marquee-inner{ animation-play-state: paused; }
.portfolio-track{
  display: flex;
  gap: 18px;
  padding-right: 18px;
}
.thumb{
  width: 190px;
  flex: 0 0 auto;
  text-align: left;
}
.thumb-media{
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.thumb-media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.thumb-media:hover img{ transform: scale(1.06); }
.thumb-media .play-badge{ position: relative; z-index: 1; }
.thumb-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35) 100%);
  pointer-events: none;
}
.thumb:hover .thumb-media, .thumb:active .thumb-media{
  transform: translateY(-4px);
  border-color: var(--blue-light);
}
.play-badge{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 16px;
  padding-left: 3px;
}
.thumb-views{
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
}

/* Generic placeholder blocks (stand in for real client media) */
.placeholder{
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background: radial-gradient(120% 120% at 30% 15%, rgba(59,130,246,.10), transparent 60%), var(--surface-2);
  color: var(--text-faint);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
  border: 1px dashed rgba(255,255,255,.14);
}
.placeholder::before{
  content: "🖼";
  font-size: 22px;
  opacity: .35;
  filter: grayscale(1);
}

/* ==========================================================================
   Case studies
   ========================================================================== */
.case-study{ border-top: 1px solid var(--border); }
.case-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.case-grid.reverse .case-content{ order: 2; }
.case-grid.reverse .case-media{ order: 1; }
.case-media{ position: relative; }
.case-image{
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.case-image.small{ aspect-ratio: 1 / 1; }
.case-image{ overflow: hidden; }
.case-image img, .case-image video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.case-image:hover img{ transform: scale(1.05); }
.badge{
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.badge-trophy{ top: 24px; left: -18px; max-width: 240px; }
.badge-trophy-sub{
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-faint);
}
.badge-stat{ bottom: 24px; right: -18px; }
.badge-stat strong{ color: var(--green); }
.eyebrow{
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.eyebrow-sub{
  margin-top: 6px;
  color: var(--text-dim);
  font-size: 14px;
}
.case-content h3{
  margin-top: 18px;
  font-size: clamp(24px, 3vw, 34px);
}
.case-content > p:not(.eyebrow-sub){
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 16px;
}
.mini-gallery{
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.case-content-centered{ text-align: center; }
.case-content-centered h3{ margin-left: auto; margin-right: auto; }
.case-video-insert{
  margin-top: 22px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.case-video-insert video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.case-video-insert .play-badge{ width: 60px; height: 60px; font-size: 20px; }
.case-video-insert.video-player{
  position: relative;
  background: var(--surface-2);
  cursor: pointer;
}
.video-poster-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.case-video-insert.video-player:hover .video-poster-img{ transform: scale(1.04); }
.video-poster-shade{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.35) 100%);
  transition: background .3s ease;
}
.case-video-insert.video-player:hover .video-poster-shade{ background: rgba(0,0,0,.15); }
.video-play-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: rgba(20,22,26,.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: 22px;
  padding-left: 4px;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s ease, border-color .25s ease;
  animation: video-play-pulse 2.6s ease-in-out infinite;
}
.case-video-insert.video-player:hover .video-play-btn{
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--blue);
  border-color: var(--blue-light);
}
@keyframes video-play-pulse{
  0%, 100%{ box-shadow: 0 0 0 0 rgba(255,255,255,.18); }
  50%{ box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}
.case-video-insert.video-player video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* Andy case study specific card */
.andy-stats-card{
  margin-top: 20px;
  background: var(--sheen), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.andy-photo{
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
}
.andy-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.andy-stat{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.andy-stat strong{ font-size: clamp(17px, 2.6vw, 20px); }
.andy-stat span:not(.stat-icon){ font-size: 13px; color: var(--text-dim); }
.stat-icon{
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: var(--gold-light);
}
.stat-icon svg{ width: 100%; height: 100%; }

/* ==========================================================================
   Differentiation table
   ========================================================================== */
.diff{
  border-top: 1px solid var(--border);
  background: radial-gradient(55% 45% at 50% 0%, rgba(59,130,246,.06), transparent 70%);
}
.diff-card{
  background: var(--sheen), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.diff-card::before{
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100,169,255,.55), transparent);
}
.diff-top{ max-width: 620px; }
.pill{
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.3);
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 700;
}
.pill-accent{
  background: rgba(230,184,0,.12);
  border-color: rgba(230,184,0,.35);
  color: var(--gold-light);
}
.diff-top h2{
  margin-top: 18px;
  font-size: clamp(26px, 3.4vw, 38px);
}
.diff-top p{
  margin-top: 14px;
  color: var(--text-dim);
}
.diff-table{
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 28px;
  align-items: stretch;
}
.diff-col{
  border-radius: var(--radius);
  padding: 28px 26px;
}
.diff-col-them{
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.diff-col-us{
  background: linear-gradient(180deg, rgba(59,130,246,.1), var(--surface) 55%);
  border: 1px solid rgba(59,130,246,.35);
  box-shadow: 0 16px 40px -18px rgba(59,130,246,.35);
}
.diff-col-label{
  display: block;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.diff-col-label.brand{ color: var(--blue-light); }
.diff-list{ display: flex; flex-direction: column; gap: 16px; }
.diff-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.45;
  padding: 6px 8px;
  margin: 0 -8px;
  border-radius: 8px;
  transition: background .2s ease, transform .2s ease;
}
.diff-list li:hover{
  background: rgba(255,255,255,.04);
  transform: translateX(2px);
}
.diff-col-us .diff-list li:hover{ background: rgba(59,130,246,.08); }
.diff-col-them .diff-list li{ color: var(--text-dim); }
.diff-col-us .diff-list li{ color: var(--text); font-weight: 600; }
.diff-icon{
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.diff-icon svg{ width: 12px; height: 12px; }
.icon-x{ background: rgba(239,68,68,.12); color: var(--red); }
.icon-check{ background: rgba(34,197,94,.16); color: var(--green); }
.diff-col-vs{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.vs-badge{
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-faint);
}
.diff-card > .btn{ margin-top: 44px; }

@media (max-width: 820px){
  .diff-table{ grid-template-columns: 1fr; gap: 16px; }
  .diff-col-vs{ display: none; }
}

/* ==========================================================================
   Features — what's included
   ========================================================================== */
.features{
  border-top: 1px solid var(--border);
  background: radial-gradient(50% 45% at 85% 100%, rgba(59,130,246,.06), transparent 70%);
}
.features-intro{ max-width: 640px; margin: 0 auto; text-align: center; }
.features-intro h2{ margin-top: 18px; font-size: clamp(26px, 3.4vw, 38px); }
.features-intro p{ margin-top: 14px; color: var(--text-dim); }
.features-grid{
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card{
  background: var(--sheen), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s ease, border-color .25s ease, background .2s ease;
}
.feature-card:hover, .feature-card:active{
  transform: translateY(-5px);
  border-color: var(--text-faint);
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(100,169,255,.14), transparent 70%), var(--sheen), var(--surface);
}
.feature-card h4{ margin-top: 18px; font-size: 16px; }
.feature-card p{ margin-top: 8px; color: var(--text-dim); font-size: 13.5px; }

/* ==========================================================================
   Equipment
   ========================================================================== */
.equipment{
  border-top: 1px solid var(--border);
  background: radial-gradient(50% 50% at 50% 100%, rgba(230,184,0,.05), transparent 70%);
}
.equip-wrap{ text-align: center; }
.equip-content{ max-width: 640px; margin: 0 auto; }
.equip-content h2{ margin-top: 18px; font-size: clamp(26px, 3.4vw, 38px); }
.equip-content > p{ margin-top: 16px; color: var(--text-dim); }
.equip-list{
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.equip-list li{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--sheen), var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.equip-list li:hover, .equip-list li:active{
  transform: translateY(-3px);
  border-color: var(--text-faint);
  background: radial-gradient(180px circle at var(--mx,50%) var(--my,50%), rgba(100,169,255,.16), transparent 70%), var(--sheen), var(--surface);
}
.equip-list .icon-badge{ width: 36px; height: 36px; border-radius: 10px; }
.equip-list .icon-badge svg{ width: 18px; height: 18px; }
.equip-text{ font-weight: 600; font-size: 14.5px; }

/* ==========================================================================
   About / Founder
   ========================================================================== */
.about-founder{
  border-top: 1px solid var(--border);
  background: radial-gradient(55% 50% at 12% 30%, rgba(230,184,0,.06), transparent 65%);
}
.about-grid{
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-photo{
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.about-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-heading{
  margin-top: 18px;
  font-size: clamp(26px, 3.6vw, 40px);
}
.gradient-text{
  background: linear-gradient(135deg, var(--blue-light), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-lead{
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.about-lead strong{ color: var(--gold-light); }
.about-bio{
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.65;
}
.btn-portfolio{
  background: linear-gradient(180deg, rgba(230,184,0,.14), rgba(230,184,0,.05));
  border: 1px solid rgba(230,184,0,.45);
  color: var(--gold-light);
}
.btn-portfolio:hover{
  background: linear-gradient(180deg, rgba(230,184,0,.22), rgba(230,184,0,.08));
  border-color: var(--gold);
  color: var(--text);
}

.team-portfolio{
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.team-portfolio-label{
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.team-portfolio-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 380px;
}
.team-portfolio-grid .thumb-media{ transition: transform .3s ease, border-color .3s ease; }
.team-portfolio-grid .thumb-media:hover,
.team-portfolio-grid .thumb-media:active{ transform: translateY(-4px); border-color: var(--blue-light); }
.team-portfolio .btn{ margin-top: 20px; }

/* ==========================================================================
   AI service section
   ========================================================================== */
.ai-service{
  border-top: 1px solid var(--border);
  background: radial-gradient(50% 40% at 50% 0%, rgba(230,184,0,.08), transparent 70%);
}
.ai-intro{
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.ai-intro h2{
  margin-top: 20px;
  font-size: clamp(26px, 3.6vw, 40px);
}
.ai-intro > p{
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 16px;
}

.ai-diagnostic{
  margin-top: 56px;
  background: var(--sheen), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.ai-diagnostic-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.ai-diagnostic-header h3{ margin-top: 16px; font-size: 26px; }
.ai-diagnostic-header > div:first-child > p{ margin-top: 12px; color: var(--text-dim); max-width: 420px; }
.ai-price-tag{
  flex-shrink: 0;
  text-align: right;
  padding: 14px 22px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.ai-price-amount{ display: block; font-size: 30px; font-weight: 900; color: var(--gold-light); }
.ai-price-label{ font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-dim); }

/* Roadmap — shared vertical timeline used by the onboarding steps and the process section */
.roadmap{ display: flex; flex-direction: column; }
.roadmap-step{ display: flex; gap: 18px; }
.roadmap-marker{ display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.roadmap-line{
  width: 2px;
  flex: 1;
  min-height: 22px;
  margin-top: 6px;
  background: linear-gradient(var(--border), transparent);
}
.roadmap-step:last-child .roadmap-line{ display: none; }
.roadmap-content{ padding-bottom: 30px; padding-top: 6px; }
.roadmap-step:last-child .roadmap-content{ padding-bottom: 0; }
.roadmap-title{ font-size: 15px; font-weight: 600; }
.roadmap-content h4{ font-size: 16px; }
.roadmap-content h4 + p{ margin-top: 6px; }
.roadmap-content p{ font-size: 13.5px; color: var(--text-dim); }
.step-num-tag{
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.step-num-tag.blue{ color: var(--blue-light); }
.credit-note{
  margin-top: 30px;
  padding: 16px 20px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 12px;
  color: #86efac;
  font-size: 14px;
  font-weight: 600;
}
.ai-cta-row{
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.ai-fine-print{
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-dim);
}

.pricing-block{ margin-top: 72px; }
.pricing-title{
  text-align: center;
  font-size: clamp(24px, 3.2vw, 32px);
}
.pricing-sub{
  text-align: center;
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 15px;
}
.pricing-grid{
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card{
  position: relative;
  background: var(--sheen), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .2s ease;
}
.price-card:hover, .price-card:active{
  transform: translateY(-6px);
  border-color: var(--text-faint);
  background: radial-gradient(260px circle at var(--mx,50%) var(--my,50%), rgba(100,169,255,.12), transparent 70%), var(--sheen), var(--surface);
}
.price-card.featured{
  border-color: rgba(230,184,0,.5);
  background: var(--sheen), linear-gradient(180deg, rgba(230,184,0,.06), var(--surface) 40%);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.price-card.featured:hover, .price-card.featured:active{
  transform: translateY(-14px);
  background: radial-gradient(260px circle at var(--mx,50%) var(--my,50%), rgba(245,205,58,.16), transparent 70%), var(--sheen), linear-gradient(180deg, rgba(230,184,0,.06), var(--surface) 40%);
}
.price-card .btn-block{ margin-top: 22px; }
.tier-badge{
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--gold);
  color: #1a1400;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
}
.tier-name{ font-size: 18px; font-weight: 800; }
.tier-desc{
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 13.5px;
  min-height: 60px;
}
.tier-features{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.tier-features li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--text-dim);
}
.tier-features li.tier-inherit{
  color: var(--text);
  font-weight: 700;
}
.tier-check{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(34,197,94,.15);
  color: var(--green);
}
.tier-check svg{ width: 10px; height: 10px; }
.tier-price{
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.tier-price .amount{ font-size: clamp(26px, 6vw, 36px); font-weight: 900; }
.tier-price .currency{ font-size: 13px; color: var(--text-faint); font-weight: 600; }
.tier-rate-row{
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tier-discount{
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--green);
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.35);
  border-radius: 999px;
  padding: 2px 9px;
}
.tier-discount[hidden]{ display: none; }
.tier-slider-row{ margin-top: 22px; }
.tier-slider{
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  outline: none;
  padding: 12px 0;
  background-clip: content-box;
  touch-action: pan-y;
}
.tier-slider::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-light);
  cursor: pointer;
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 1px var(--blue-light), 0 4px 10px -2px rgba(0,0,0,.5);
}
.price-card.featured .tier-slider::-webkit-slider-thumb{
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 4px 10px -2px rgba(0,0,0,.5);
}
.tier-slider::-moz-range-track{
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.tier-slider::-moz-range-thumb{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-light);
  cursor: pointer;
  border: 4px solid var(--bg);
  box-shadow: 0 4px 10px -2px rgba(0,0,0,.5);
}
.price-card.featured .tier-slider::-moz-range-thumb{ background: var(--gold); }
.tier-slider:focus-visible{ box-shadow: 0 0 0 3px rgba(100,169,255,.35); }
.tier-count{
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-dim);
}
.tier-count strong{ color: var(--text); font-weight: 800; }
.tier-rate{
  font-size: 12.5px;
  color: var(--text-faint);
  font-weight: 600;
}
.tier-rate-value{ color: var(--text-dim); font-weight: 800; }

.pricing-transparency{
  margin-top: 40px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 26px;
  text-align: center;
}
.pricing-transparency p{ font-size: 13.5px; color: var(--text-dim); line-height: 1.6; }
.pricing-transparency strong{ color: var(--text); }
.pricing-transparency a{ color: var(--blue-light); font-weight: 700; }

.pricing-unsure{
  margin-top: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pricing-unsure p{ color: var(--gold-light); font-size: 15px; font-weight: 700; }
.pricing-unsure .btn{
  white-space: normal;
  text-align: center;
  max-width: 100%;
  line-height: 1.3;
}

/* ==========================================================================
   Checkout
   ========================================================================== */
.checkout{
  border-top: 1px solid var(--border);
  background: radial-gradient(45% 45% at 50% 0%, rgba(230,184,0,.08), transparent 70%);
}
.checkout-summary h3{
  margin-top: 18px;
  font-size: clamp(24px, 3vw, 32px);
}
.checkout-desc{
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 15px;
}
.checkout-lines{
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: var(--sheen), var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.checkout-line{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-dim);
}
.checkout-line strong{ color: var(--text); font-weight: 800; font-size: 15px; }
.checkout-line[hidden]{ display: none; }
.checkout-line.checkout-total{
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 2px;
}
.checkout-line.checkout-total strong{ font-size: 22px; color: var(--gold-light); }
.checkout-line.checkout-bonus strong{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.checkout-line.checkout-bonus strong s{
  color: var(--text-faint);
  font-weight: 600;
  text-decoration-color: var(--text-faint);
}
.included-tag{
  background: rgba(34,197,94,.16);
  color: var(--green);
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.checkout-note{
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.22);
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dim);
}

/* ==========================================================================
   Process
   ========================================================================== */
.process{
  border-top: 1px solid var(--border);
  text-align: center;
  background: radial-gradient(45% 40% at 50% 100%, rgba(59,130,246,.06), transparent 70%);
}
.process-intro{ max-width: 560px; margin: 0 auto; }
.process h2{ margin-top: 16px; font-size: clamp(26px, 3.4vw, 38px); }
.process-intro p{ margin-top: 14px; color: var(--text-dim); font-size: 15px; }
.roadmap-wrap{
  margin-top: 56px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq{ border-top: 1px solid var(--border); }
.faq h2{ text-align: center; font-size: clamp(26px, 3.4vw, 38px); }
.faq-list{
  margin-top: 44px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item{
  background: var(--sheen), var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .2s ease;
}
.faq-item:hover{ border-color: var(--text-faint); transform: translateY(-1px); }
.faq-item.open{ border-color: rgba(100,169,255,.4); box-shadow: var(--shadow); }
.faq-q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15.5px;
  font-weight: 700;
  text-align: left;
  transition: color .2s ease;
}
.faq-item.open .faq-q{ color: var(--blue-light); }
.faq-icon{
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 400;
  color: var(--blue-light);
  background: rgba(59,130,246,.12);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), background .3s ease, color .3s ease;
}
.faq-item.open .faq-icon{
  transform: rotate(135deg);
  background: rgba(230,184,0,.16);
  color: var(--gold-light);
}
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.2,.8,.2,1), padding .35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a{ padding: 6px 24px 44px; }
.faq-a p{
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .35s ease, transform .35s ease;
}
.faq-item.open .faq-a p{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .1s;
}

/* ==========================================================================
   Contact + Footer
   ========================================================================== */
.final-cta{
  border-top: 1px solid var(--border);
  background: radial-gradient(50% 60% at 50% 100%, rgba(59,130,246,.14), transparent 70%);
}
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-grid > *{ min-width: 0; }
.checkout-line{ flex-wrap: wrap; row-gap: 4px; }
.contact-intro h2{
  margin-top: 18px;
  font-size: clamp(28px, 3.6vw, 42px);
}
.contact-intro > p{
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 16px;
}
.contact-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  transition: color .2s ease;
}
.contact-link-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 15px;
}
.contact-link:hover{ color: var(--blue-light); }
.contact-link-alt{ margin-top: 26px; font-size: 14px; }

/* Reusable form-card styling (used by the checkout form) */
.contact-form{
  background: var(--sheen), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}
.contact-form label{
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
}
.contact-form input[type="text"],
.contact-form textarea{
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input[type="text"]:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(59,130,246,.18);
}
.contact-form input[type="text"]::placeholder,
.contact-form textarea::placeholder{ color: var(--text-faint); }
.hp-field{ position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status{
  font-size: 13.5px;
  font-weight: 600;
  min-height: 18px;
  text-align: center;
}
.form-status.success{ color: var(--green); }
.form-status.error{ color: var(--red); }
.form-status.pending{ color: var(--text-faint); }

/* WhatsApp panel — replaces the bottom contact form */
.whatsapp-panel{
  background: linear-gradient(160deg, rgba(37,211,102,.10), var(--surface) 55%);
  border: 1px solid rgba(37,211,102,.3);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.whatsapp-panel-icon{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37,211,102,.16);
  color: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.whatsapp-panel-icon svg{ width: 32px; height: 32px; }
.whatsapp-panel h3{ font-size: 22px; }
.whatsapp-panel > p{
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 14.5px;
  max-width: 360px;
}
.whatsapp-panel .btn-whatsapp{ margin-top: 26px; }
.whatsapp-panel-meta{
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-dim);
  font-weight: 600;
}
.whatsapp-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: dot-pulse 1.8s ease-out infinite;
}
@keyframes dot-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%{ box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover, .whatsapp-float:active{
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 36px -6px rgba(37,211,102,.7);
}

@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; gap: 40px; }
}

.site-footer{
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-faint);
}
.social-links{ display: flex; gap: 20px; }
.social-links a{ font-weight: 600; color: var(--text-dim); transition: color .2s ease; }
.social-links a:hover{ color: var(--text); }

/* ==========================================================================
   Responsive
   ========================================================================== */
.site-header.scrolled{
  box-shadow: 0 8px 24px -12px rgba(0,0,0,.5);
}

@media (max-width: 980px){
  .main-nav{
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height .35s ease, opacity .3s ease, padding .35s ease;
  }
  .main-nav.nav-open{
    max-height: 420px;
    opacity: 1;
    padding: 8px 24px 20px;
    pointer-events: auto;
  }
  .main-nav a{ padding: 14px 0; border-top: 1px solid var(--border); }
  .main-nav a:first-child{ border-top: none; }
  .main-nav a::after{ display: none; }
  .nav-toggle{ display: flex; }
  .nav-toggle.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-active span:nth-child(2){ opacity: 0; }
  .nav-toggle.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .nav-toggle span{ transition: transform .2s ease, opacity .2s ease; }
  .case-grid{ grid-template-columns: 1fr; gap: 40px; }
  .case-grid.reverse .case-content{ order: 1; }
  .case-grid.reverse .case-media{ order: 2; }
  .features-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .price-card.featured{ transform: none; }
  .about-grid{ grid-template-columns: 1fr; gap: 40px; }
  .about-photo{ max-width: 280px; margin: 0 auto; }
  .team-portfolio-grid{ max-width: 100%; }
  .hero::before, .hero::after{ opacity: .55; filter: blur(52px); }
}
@media (max-width: 560px){
  .btn-nav{ display: none; }
}

@media (max-width: 640px){
  section{ padding: 56px 0; }
  .hero{ padding: 52px 0 44px; }
  .hero-sub{ font-size: 16px; }
  .vsl-wrap{ margin-top: 36px; }
  .hero-cta{ margin-top: 30px; }
  .btn{
    white-space: normal;
    text-align: center;
    max-width: 100%;
    line-height: 1.3;
  }
  .scroll-cue{ margin-top: 40px; }
  .logo-strip{ margin-top: 44px; }
  .diff-card, .ai-diagnostic{ padding: 24px; }
  .diff-col{ padding: 20px 18px; }
  .price-card{ padding: 24px; }
  .contact-form, .checkout-lines{ padding: 24px; }
  .whatsapp-panel{ padding: 32px 24px; }
  .andy-stats-card{ grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 22px; }
  .andy-stat{ align-items: center; }
  .footer-inner{ flex-direction: column; gap: 16px; }
  .badge{ position: static; margin-top: 12px; display: inline-block; }
  .case-media{ display: flex; flex-direction: column; }
  .client-logo{ padding: 9px 16px; font-size: 12px; }
  .thumb{ width: 148px; }
  .portfolio-track{ gap: 12px; padding-right: 12px; }
  .play-badge{ width: 42px; height: 42px; font-size: 13px; }
  .whatsapp-float{ width: 50px; height: 50px; right: 16px; bottom: 16px; }
  .whatsapp-float svg{ width: 22px; height: 22px; }
  .icon-badge{ width: 38px; height: 38px; border-radius: 10px; }
  .icon-badge svg{ width: 18px; height: 18px; }
  .ai-diagnostic-header{ flex-direction: column; }
  .ai-price-tag{ text-align: left; align-self: flex-start; }
  .equip-list{ gap: 12px; }
  .equip-list li{ padding: 12px 18px; }
  .reveal{ transition-duration: .5s; }
  /* flatten heavy shadows/glows so a long mobile scroll doesn't feel visually loud */
  .price-card, .price-card.featured, .diff-col-us, .contact-form, .vsl-frame, .whatsapp-panel{ box-shadow: none; }
  .about-photo{ max-width: 200px; }
  .pricing-unsure .btn{ font-size: 13.5px; padding: 13px 20px; }
}

@media (max-width: 420px){
  .container{ padding: 0 18px; }
  .hero h1{ font-size: 30px; }
}

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

/* ==========================================================================
   ROUND 1 — Design system corrections (UX audit 5.2 → target 8.5+)
   ========================================================================== */

/* --- 1. Type scale: exactly three steps, everywhere ---------------------- */
h2, .hero h2,
.ai-intro h2, .process h2, .faq h2, .contact-intro h2, .diff-top h2,
.features-intro h2, .about-heading, .pricing-title, .stat-headline,
.guarantee-head h2, .fit .section-intro h2, .case-andy .section-intro h2{
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.14;
  font-weight: 800;
  text-wrap: balance;
}
h3{ font-size: clamp(20px, 2.2vw, 26px); line-height: 1.22; text-wrap: balance; }
h4{ font-size: 18px; line-height: 1.3; font-weight: 700; }
.section-intro{ max-width: 720px; margin: 0 auto; text-align: center; }
.section-intro h2{ margin-top: 18px; }
.section-intro > p{ margin-top: 16px; color: var(--text-dim); font-size: 16px; line-height: 1.65; }
section{ padding: 88px 0; }

/* --- 2. Colour system: blue = action, gold = price, green = confirm ------ */
.pill{
  background: rgba(59,130,246,.12);
  border-color: rgba(59,130,246,.32);
  color: #9cc6ff;
}
.pill-accent{
  background: rgba(59,130,246,.12);
  border-color: rgba(59,130,246,.32);
  color: #9cc6ff;
}
.icon-badge.gold{ background: rgba(59,130,246,.12); color: var(--blue-light); }
.gradient-text{ background: none; color: var(--blue-light); -webkit-text-fill-color: currentColor; }
.eyebrow, .logo-strip-label, .team-portfolio-label, .eyebrow-sub,
.ai-price-label, .scroll-cue-label, .footer-title{
  color: #b2b7bf;
  letter-spacing: .11em;
  font-weight: 600;
}

/* --- 3. Header + anchors ------------------------------------------------ */
.site-header{ background: rgba(8,9,11,.97); backdrop-filter: blur(16px); }
.site-header.scrolled{ background: rgba(8,9,11,.98); }
main[id], section[id]{ scroll-margin-top: 96px; }
.scroll-progress{
  height: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(59,130,246,.6);
}
.logo-arrow{ margin-left: 3px; font-size: .68em; vertical-align: super; }

/* --- 4. Hero ------------------------------------------------------------ */
.hero h1{ font-size: clamp(32px, 5vw, 58px); max-width: 17ch; text-wrap: balance; }
.hero h1 .hl{
  background-image: linear-gradient(90deg, var(--gold), var(--gold));
  background-size: 100% 3px;
  background-position: 0 100%;
  padding-bottom: 8px;
}
.hero-sub{ max-width: 620px; font-size: 18px; line-height: 1.6; }
.hero-audience{
  margin-top: 14px;
  max-width: 560px;
  font-size: 14px;
  color: var(--text-faint);
}
.vsl-wrap{ margin-top: 40px; }
.vsl-caption{
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
}
.vsl-play{ color: var(--blue-light); font-size: 11px; }
.hero-cta{ margin-top: 32px; flex-direction: column; gap: 14px; align-items: center; }
.hero-cta-note{
  max-width: 480px;
  font-size: 13.5px;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.6;
}
.logo-strip{ margin-top: 64px; }

/* --- 5. Proof ----------------------------------------------------------- */
.proof-intro{ max-width: 760px; margin: 0 auto; text-align: center; }
.stat-headline .count-up{ color: var(--gold); }
.proof-sub{ margin-top: 16px; color: var(--text-dim); font-size: 15px; line-height: 1.65; }
.logo-marquee, .portfolio-marquee{
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.client-logo{ width: 150px; justify-content: center; }
.client-logo img{ max-height: 28px; width: auto; object-fit: contain; }
.client-logo--light img{ filter: grayscale(1) brightness(2.4) contrast(.7); mix-blend-mode: screen; }
.client-logo--light{ background: var(--surface) !important; }

/* --- 6. Case studies ---------------------------------------------------- */
.case-grid{ align-items: start; }
.case-content, .case-media{ padding-top: 0; }
.case-facts{ margin-top: 24px; display: grid; gap: 18px; }
.case-facts dt{
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-light);
  font-weight: 700;
  margin-bottom: 6px;
}
.case-facts dd{ margin: 0; color: var(--text-dim); font-size: 15px; line-height: 1.65; }
.case-facts dd strong{ color: var(--text); }
.case-study .badge{ backdrop-filter: blur(8px); }
.badge-trophy{ left: 16px; right: auto; top: 16px; bottom: auto; }
.badge-stat{ right: 16px; left: auto; bottom: 16px; top: auto; }
.mini-gallery{ margin-top: 16px; }
.andy-grid{ margin-top: 44px; align-items: center; }
.andy-stats-card .andy-stat strong{ font-size: 30px; font-weight: 800; line-height: 1.1; display: block; }
.andy-stats-card .andy-stat span{ font-size: 13px; color: var(--text-faint); font-weight: 500; }

/* --- 7. Differentiation -------------------------------------------------- */
.diff-top{ text-align: center; max-width: 680px; margin: 0 auto; }
.diff-cta{ margin-top: 36px; display: flex; justify-content: center; }
.diff-card > .btn{ display: none; }
.vs-badge{
  width: 48px;
  height: 48px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: #1f232a;
  border: 1px solid #3a404a;
}

/* --- 8. Features --------------------------------------------------------- */
.features-grid{ align-items: stretch; }
.feature-card{ display: flex; flex-direction: column; height: 100%; }
.feature-card p{ font-size: 14.5px; line-height: 1.6; }

/* --- 9. About ------------------------------------------------------------ */
.about-grid{ align-items: center; }
.about-bio{ margin-top: 16px; color: var(--text-dim); font-size: 15px; line-height: 1.7; max-width: 60ch; }
.about-bio strong{ color: var(--text); }
.about-bio-accent{ color: var(--text-faint); font-size: 14.5px; }
.team-portfolio{ margin-top: 32px; }

/* --- 10. Process — horizontal 5-step timeline ---------------------------- */
.process-steps{
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.process-steps::before{
  content: "";
  position: absolute;
  top: 23px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
}
.process-step{
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.process-step .icon-badge{ position: relative; z-index: 2; background: var(--surface-2); }
.process-step .step-num-tag{
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
  font-weight: 700;
}
.process-step p{ font-size: 14px; color: var(--text-dim); line-height: 1.55; }

/* --- 11. Equipment band -------------------------------------------------- */
.equip-band{
  margin-top: 56px;
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--sheen), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.equip-band-icons{ display: flex; gap: 10px; flex-shrink: 0; }
.equip-band-text strong{ display: block; font-size: 17px; margin-bottom: 8px; }
.equip-band-text p{ color: var(--text-dim); font-size: 14.5px; line-height: 1.65; }

/* --- 12. Fit / qualification --------------------------------------------- */
.fit-grid{
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.fit-col{
  background: var(--sheen), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.fit-yes{ border-color: rgba(34,197,94,.28); }
.fit-no{ border-color: rgba(239,68,68,.22); }
.fit-label{
  display: block;
  font-size: 12px;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.fit-yes .fit-label{ color: var(--green); }
.fit-no .fit-label{ color: #f08a8a; }
.fit-col ul{ display: grid; gap: 16px; }
.fit-col li{
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* --- 13. Onboarding / diagnostic ----------------------------------------- */
.ai-diagnostic{ padding: 44px; }
.ai-diagnostic-header{ align-items: center; }
.ai-diagnostic-heading h3{ margin-top: 0; }
.ai-diagnostic-heading > p{ margin-top: 10px; color: var(--text-dim); max-width: 440px; }
.ai-price-tag{ transform: none; }
.ai-price-amount{ color: var(--gold); }
.roadmap{ position: relative; }
.roadmap::before{
  content: "";
  position: absolute;
  left: 21px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--border);
}
.roadmap-line{ display: none; }
.roadmap-marker .icon-badge{ position: relative; z-index: 2; background: var(--surface-2); }
.roadmap-content .roadmap-desc{ margin-top: 6px; color: var(--text-faint); font-size: 14px; line-height: 1.6; }
.credit-note{
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.26);
  color: #9cc6ff;
}
.ai-scarcity{
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}
.ai-scarcity strong{ color: var(--text); }

/* --- 14. Pricing — equal-height cards, aligned CTAs ---------------------- */
.pricing-section{ border-top: 1px solid var(--border); }
.pricing-title{ margin-top: 18px; }
.pricing-sub{ text-align: center; max-width: 66ch; margin: 16px auto 0; font-size: 15px; line-height: 1.65; }
.pricing-anchor{
  margin: 28px auto 0;
  max-width: 62ch;
  text-align: center;
  font-size: 14px;
  color: var(--text-faint);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 24px;
}
.pricing-anchor strong{ color: var(--text-dim); }
.pricing-grid{ align-items: stretch; margin-top: 40px; }
.price-card{ height: 100%; }
.tier-head{ min-height: 96px; }
.tier-features{ flex: 1 1 auto; }
.tier-foot{ margin-top: auto; padding-top: 24px; }
.tier-slider-row{ margin-top: 0; }
.tier-count{ margin-bottom: 10px; }
.tier-price{ margin-top: 20px; }
.tier-price .amount{ color: var(--gold); }
.tier-rate-row{ margin-top: 6px; }
.tier-rate{ font-size: 12.5px; color: var(--text-faint); }
.price-card .btn-block{ margin-top: 22px; }

/* --- 15. Terms block ------------------------------------------------------ */
.terms-block{
  margin-top: 48px;
  background: var(--sheen), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.terms-block h3{ font-size: 20px; }
.terms-grid{
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.terms-item strong{ display: block; font-size: 15px; margin-bottom: 8px; }
.terms-item p{ font-size: 14px; color: var(--text-dim); line-height: 1.65; }
.terms-extra{
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-faint);
  line-height: 1.65;
}
.terms-extra a{ color: var(--blue-light); font-weight: 600; }
.pricing-unsure{ margin-top: 40px; }

/* --- 16. Guarantee -------------------------------------------------------- */
.guarantee{ border-top: 1px solid var(--border); }
.guarantee-card{
  background: var(--sheen), linear-gradient(180deg, rgba(59,130,246,.07), var(--surface) 45%);
  border: 1px solid rgba(59,130,246,.3);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.guarantee-head{ display: flex; align-items: center; gap: 18px; justify-content: center; text-align: center; }
.guarantee-icon{
  width: 46px; height: 46px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(59,130,246,.14);
  color: var(--blue-light);
}
.guarantee-icon svg{ width: 26px; height: 26px; }
.guarantee-grid{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.guarantee-item{ position: relative; padding-top: 44px; }
.guarantee-num{
  position: absolute; top: 0; left: 0;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
.guarantee-item strong{ display: block; font-size: 16px; margin-bottom: 10px; }
.guarantee-item p{ font-size: 14px; color: var(--text-dim); line-height: 1.65; }
.guarantee-note{
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 14.5px;
  color: var(--text-faint);
  line-height: 1.65;
  max-width: 68ch;
  margin-inline: auto;
}

/* --- 17. Checkout + forms ------------------------------------------------- */
.checkout-total strong{ color: var(--text) !important; font-size: 22px; }
.checkout-terms{ margin-top: 16px; font-size: 13px; color: var(--text-faint); }
.checkout-note{ margin-top: 10px; font-size: 13.5px; line-height: 1.6; }
.checkout-note strong{ color: var(--text); }
.contact-form input[type="text"]{
  border: 1px solid #3a404a;
  font-size: 15px;
}
.contact-form input::placeholder{ color: #8d939c; }
.contact-form input:focus{
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,.25);
  outline: none;
}
.form-microcopy{ margin-top: 12px; font-size: 13px; color: var(--text-faint); text-align: center; }

/* --- 18. FAQ -------------------------------------------------------------- */
.faq-q{ min-height: 64px; gap: 16px; }
.faq-q:hover{ background: rgba(255,255,255,.03); }
.faq-icon{
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* --- 19. Contact + footer -------------------------------------------------- */
.contact-details{ margin-top: 26px; display: grid; gap: 12px; }
.contact-details li{ display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-dim); }
.contact-details a{ color: var(--text); font-weight: 600; }
.contact-details a:hover{ color: var(--blue-light); }
.contact-link-icon{ color: var(--blue-light); width: 18px; text-align: center; }
.site-footer{ padding: 56px 0 0; }
.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p{ margin-top: 14px; font-size: 14px; color: var(--text-faint); line-height: 1.65; max-width: 38ch; }
.footer-loc{ margin-top: 10px !important; }
.footer-title{
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: #b2b7bf;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul{ display: grid; gap: 10px; }
.footer-col li a{ font-size: 14px; color: var(--text-dim); transition: color .2s ease; }
.footer-col li a:hover{ color: var(--text); }
.footer-bottom{
  margin-top: 44px;
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-faint);
}
.footer-legal a:hover{ color: var(--text); }

/* --- 20. WhatsApp floating button ------------------------------------------ */
.whatsapp-float{
  width: 56px;
  height: 56px;
  right: 18px;
  bottom: 22px;
  box-shadow: 0 0 0 6px rgba(8,9,11,.92), 0 10px 28px -8px rgba(37,211,102,.55);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.whatsapp-float.is-hidden{
  opacity: 0;
  visibility: hidden;
  transform: scale(.8) translateY(10px);
  pointer-events: none;
}
.checkout, .final-cta, .ai-service, .pricing-section{ padding-bottom: 104px; }

/* --- 21. Responsive --------------------------------------------------------- */
@media (max-width: 1000px){
  .process-steps{ grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .process-steps::before{ display: none; }
  .process-step{ text-align: left; align-items: flex-start; }
  .terms-grid, .guarantee-grid{ grid-template-columns: 1fr; gap: 24px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px){
  .fit-grid{ grid-template-columns: 1fr; }
  .equip-band{ flex-direction: column; align-items: flex-start; gap: 18px; }
  .andy-grid{ gap: 28px; }
}
@media (max-width: 700px){
  section{ padding: 64px 0; }
  main[id], section[id]{ scroll-margin-top: 112px; }
  .section-intro h2, h2{ font-size: 28px; }
  .hero h1{ font-size: 32px; max-width: 100%; }
  .hero-sub{ font-size: 16.5px; }
  .ai-diagnostic{ padding: 26px 20px; }
  .ai-diagnostic-header{ flex-direction: column; align-items: flex-start; gap: 18px; }
  .ai-price-tag{ align-self: stretch; flex-direction: row; align-items: baseline; gap: 10px; }
  .guarantee-card, .terms-block{ padding: 26px 20px; }
  .process-steps{ grid-template-columns: 1fr; gap: 22px; }
  .footer-grid{ grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom{ flex-direction: column; gap: 10px; }
  .tier-head{ min-height: 0; }
  .checkout, .final-cta, .ai-service, .pricing-section{ padding-bottom: 96px; }
  .whatsapp-float{ width: 52px; height: 52px; right: 14px; bottom: 18px; }
  .vsl-caption{ text-align: left; }
  .contact-details li{ font-size: 14.5px; }
}

/* ==========================================================================
   ROUND 3 — audit corrections (UX 6.8 / copy 6.6 → target 8.5 / 9)
   ========================================================================== */

/* --- A. Kill the full-bleed background seams between sections ------------ */
.hero, .proof, .case-study, .diff, .features, .about-founder, .case-andy,
.process, .fit, .ai-service, .pricing-section, .guarantee, .checkout,
.faq, .final-cta, .equipment{
  background: none !important;
}
.case-study, .faq, .pricing-section, .guarantee{ border-top: 1px solid var(--border); }

/* --- B. Pricing: true equal columns, aligned rows ------------------------ */
.price-card.featured{ transform: none; }
.price-card.featured:hover, .price-card:hover, .price-card:active{ transform: translateY(-4px); }
.price-card.featured:hover{ transform: translateY(-4px); }
.tier-head{ min-height: 118px; }
.tier-desc{ min-height: 4.6em; }
.tier-scope{
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-faint);
}
.tier-badge{
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 0 0 4px var(--bg);
}
.tier-slider::-webkit-slider-thumb,
.price-card.featured .tier-slider::-webkit-slider-thumb{
  background: var(--blue);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--blue);
}
.tier-slider::-moz-range-thumb,
.price-card.featured .tier-slider::-moz-range-thumb{ background: var(--blue); }
.tier-count{ font-size: 13px; color: var(--text-faint); }
.tier-count strong{ font-size: 16px; }
.pricing-inaction{
  margin: 18px auto 0;
  max-width: 66ch;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-faint);
}
.pricing-note{
  margin: 36px auto 0;
  max-width: 72ch;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-dim);
  text-align: center;
}
.pricing-note strong{ color: var(--text); }
.terms-grid{ grid-template-columns: repeat(2, 1fr); }
.terms-availability{
  margin-top: 24px;
  padding: 16px 20px;
  border: 1px solid rgba(59,130,246,.26);
  background: rgba(59,130,246,.07);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-dim);
}
.terms-availability strong{ color: #9cc6ff; }
.pricing-unsure p{ font-size: 18px; font-weight: 600; color: var(--text); }

/* --- C. Gold discipline: price figures only ------------------------------ */
.roadmap .step-num-tag{ color: var(--blue-light); }
.checkout-total strong{ color: var(--gold) !important; font-size: 26px; font-weight: 800; }

/* --- D. Case study Pescobar --------------------------------------------- */
.case-study .case-media .case-image{ height: 100%; }
.case-study .case-media .case-image video,
.case-study .case-media .case-image > img{ height: 100%; object-fit: cover; }
.case-content .mini-gallery{ margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.verify-block{
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(59,130,246,.28);
  background: rgba(59,130,246,.06);
  border-radius: var(--radius-lg);
}
.verify-block strong{ display: block; font-size: 16px; margin-bottom: 10px; }
.verify-block p{ font-size: 14px; line-height: 1.68; color: var(--text-dim); }
.verify-block .btn{ margin-top: 18px; }

/* --- E. Case study Andy -------------------------------------------------- */
.andy-stats-card .andy-stat strong,
.andy-stats-card .andy-stat strong .count-up{
  font-size: 32px !important;
  font-weight: 700;
  line-height: 1.1;
  display: block;
  color: #fff;
}
.andy-stats-card .andy-stat span:not(.stat-icon){
  font-size: 13px;
  font-weight: 400;
  color: var(--text-faint);
  margin-top: 4px;
  display: block;
}
.andy-note{
  margin-top: 18px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-faint);
  max-width: 52ch;
}

/* --- F. Marquees: wider fade, uniform logo treatment, caption inside ----- */
.logo-marquee, .portfolio-marquee{
  mask-image: linear-gradient(90deg, transparent 0, #000 140px, #000 calc(100% - 140px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 140px, #000 calc(100% - 140px), transparent 100%);
}
.client-logo img,
.client-logo--light img{
  filter: grayscale(1) brightness(1.9);
  opacity: .78;
  mix-blend-mode: normal;
  transition: opacity .2s ease;
}
.client-logo:hover img{ opacity: 1; }
.client-logo--light{ background: var(--surface) !important; }
.thumb{ position: relative; }
.thumb .thumb-views{
  position: absolute;
  left: 10px;
  bottom: 10px;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(8,9,11,.78);
  backdrop-filter: blur(6px);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

/* --- G. Differentiation -------------------------------------------------- */
.diff-closer{
  margin-top: 24px;
  font-size: 14px;
  font-style: italic;
  color: var(--text-faint);
  line-height: 1.6;
}
.diff-col-them{ display: flex; flex-direction: column; }
.diff-col-them .diff-list{ flex: 0 0 auto; }

/* --- H. Equipment band --------------------------------------------------- */
.equip-band{ flex-direction: column; align-items: flex-start; gap: 22px; text-align: left; }
.equip-band-text{ max-width: 66ch; }
.equip-band-list{
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.equip-band-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dim);
}
.equip-band-list .icon-badge{ width: 36px; height: 36px; }
.equip-band-list .icon-badge svg{ width: 18px; height: 18px; }

/* --- I. Typography: preserve sense units when wrapping -------------------- */
h1, h2, h3, .stat-headline, .about-heading, .pricing-title{ text-wrap: pretty; }

/* --- J. Hero ------------------------------------------------------------- */
.vsl-caption{ justify-content: center; text-align: center; max-width: 58ch; margin: 0 auto 16px; font-size: 13px; color: var(--text-faint); }
.hero-cta{ margin-top: 30px; }
.hero{ padding-bottom: 72px; }

/* --- K. About ------------------------------------------------------------ */
.about-bio, .about-bio-accent{ color: #c3c7ce; font-size: 15px; }
.about-bio strong{ color: #fff; font-weight: 600; }

/* --- L. Onboarding fine print -------------------------------------------- */
.ai-fine-print{ line-height: 1.7; }
.ai-fine-print a{ color: var(--blue-light); font-weight: 600; }
.ai-cta-row{ gap: 14px; }

/* --- M. Footer alignment -------------------------------------------------- */
.footer-grid{ grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }

/* --- N. Responsive -------------------------------------------------------- */
@media (max-width: 1000px){
  .terms-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 768px){
  .process-steps{ position: relative; }
  .process-steps::before{
    display: block;
    content: "";
    position: absolute;
    left: 23px;
    top: 28px;
    bottom: 28px;
    right: auto;
    width: 1px;
    height: auto;
    background: var(--border);
  }
  .process-step{ flex-direction: row; flex-wrap: wrap; align-items: center; gap: 8px 14px; }
  .process-step .icon-badge{ background: var(--bg); z-index: 2; }
  .process-step p{ flex: 1 0 100%; padding-left: 62px; margin-top: -6px; }
  .guarantee-head{ flex-direction: column; gap: 16px; }
  .ai-cta-row{ display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
  .ai-cta-row .btn{ width: 100%; justify-content: center; }
  .case-content .mini-gallery{ grid-template-columns: 1fr 1fr; }
  .tier-head, .tier-desc{ min-height: 0; }
}
@media (max-width: 700px){
  .logo-marquee, .portfolio-marquee{
    mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
  }
  .hero{ padding-bottom: 96px; }
  .pricing-note, .pricing-inaction{ text-align: left; }
}

/* ==========================================================================
   ROUND 4 — regression repairs flagged by the round-3 audits
   ========================================================================== */

/* Footer: the round-3 desktop grid was applied globally and never stacked */
.footer-grid{ grid-template-columns: 1.7fr 1fr 1.1fr 1fr; gap: 40px; }
.footer-col li a, .footer-brand p{ overflow-wrap: anywhere; }
@media (max-width: 1000px){
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px){
  .footer-grid{ grid-template-columns: 1fr; gap: 28px; }
}

/* Hero: the two grey microcopy blocks read as one broken paragraph */
.hero-audience{ margin-top: 16px; font-size: 14.5px; color: #9aa0a9; max-width: 62ch; }
.hero-cta-note{ margin-top: 2px; color: #9ea4ad; font-size: 13px; }
.vsl-caption{
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #8d939c;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Pricing: the two framing paragraphs were centred at 80+ characters a line */
.pricing-note, .pricing-inaction{
  text-align: left;
  max-width: 68ch;
  margin-inline: auto;
  line-height: 1.7;
}
.pricing-inaction{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 22px;
}

/* Pescobar: stretch the left image to the height of the right column */
.case-study .case-grid{ align-items: stretch; }
.case-study .case-media{ display: flex; flex-direction: column; }
.case-study .case-media > .case-image{ flex: 1; min-height: 0; }
.case-study .case-media > .case-image video,
.case-study .case-media > .case-image > img{ height: 100%; width: 100%; object-fit: cover; }

/* Proof marquee: caption to the top of the card, clear of the burnt-in figures */
.thumb .thumb-views{ top: 10px; bottom: auto; }
.logo-marquee, .portfolio-marquee{
  mask-image: linear-gradient(90deg, transparent 0, #000 200px, #000 calc(100% - 200px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 200px, #000 calc(100% - 200px), transparent 100%);
}

/* Upplevelse ships as a white-background PNG — brightness only made it worse */
.client-logo--light img{ filter: invert(1) grayscale(1) brightness(1.35); opacity: .78; }

/* Equipment band: fill the card instead of leaving half of it empty */
.equip-band{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
.equip-band-list{ display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 14px 24px; }

/* Portfolio thumbnails: identical play affordance on all three */
.team-portfolio-grid .play-badge{ opacity: 1; }

@media (max-width: 900px){
  .equip-band{ grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 768px){
  .process-steps::before{ left: 21px; }
  .process-step p{ padding-left: 58px; }
  .equip-band-list{ grid-template-columns: repeat(2, 1fr); gap: 14px 16px; }
}
@media (max-width: 700px){
  .logo-marquee, .portfolio-marquee{
    mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  }
  .hero-audience{ font-size: 14px; }
}

/* ==========================================================================
   CRO PASS 1 — conversion architecture (6.8 → target 8+)
   ========================================================================== */

/* --- Hero: proof in the first screen ------------------------------------- */
.hero-proof{
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.hero-proof li{ display: flex; align-items: center; gap: 18px; }
.hero-proof li + li::before{ content: "·"; color: var(--text-faint); margin-right: 0; }
.hero-proof strong{ color: var(--gold); font-weight: 800; }

/* --- Logo strip: readable proof ------------------------------------------ */
.client-logo img, .client-logo--light img{ opacity: .88; }
.client-logo img{ filter: grayscale(1) brightness(1.85); }
.client-logo--light img{ filter: invert(1) grayscale(1) brightness(1.3); }

/* --- Mid-page conversion bands ------------------------------------------- */
.cta-band{ padding: 0; border: 0; }
.cta-band-inner{
  background: linear-gradient(180deg, rgba(59,130,246,.10), rgba(59,130,246,.03));
  border: 1px solid rgba(59,130,246,.26);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cta-band-inner h2{ font-size: clamp(22px, 2.6vw, 30px); max-width: 22ch; }
.cta-band-inner p{ color: var(--text-dim); font-size: 15.5px; max-width: 62ch; line-height: 1.6; }
.cta-band-inner .btn{ margin-top: 8px; }

/* --- About: keep the visitor on the page --------------------------------- */
.team-portfolio-actions{
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.portfolio-link{
  font-size: 15px;
  color: var(--text-faint);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.portfolio-link:hover{ color: var(--text-dim); }

/* --- The reference offer is the strongest trust asset on the page -------- */
.btn-reference{
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 26px;
}
.btn-reference:hover{ background: rgba(230,184,0,.1); border-color: var(--gold-light); }
.guarantee-cta{ margin-top: 28px; display: flex; justify-content: center; }

/* --- Onboarding: cover the 990 RON risk ---------------------------------- */
.onboarding-guarantee{
  margin-top: 22px;
  padding: 16px 20px;
  border: 1px solid rgba(59,130,246,.35);
  background: rgba(59,130,246,.08);
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.btn-outline-blue{
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue-light);
}
.btn-outline-blue:hover{ background: rgba(59,130,246,.1); }

/* --- Pricing: the figure is the first thing in the card ------------------ */
.pricing-anchor, .pricing-anchor-line{
  margin: 26px auto 0;
  max-width: 64ch;
  text-align: center;
  font-size: 15px;
  color: var(--text-faint);
  background: none;
  border: 0;
  padding: 0;
  border-radius: 0;
}
.pricing-anchor-line strong{ color: #fff; font-weight: 700; }
.pricing-inaction{ margin-top: 40px; }
.tier-price-block{ margin-top: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.tier-price-block .tier-price{ margin-top: 16px; }
.tier-features{ margin-top: 22px; }
.tier-anchor{
  font-size: 14px;
  color: #6b7280;
  text-decoration: line-through;
  margin-bottom: 2px;
}
.price-card .tier-price .amount{ font-size: 34px; color: #c9cfda; }
.price-card.featured .tier-price .amount{ font-size: 46px; color: var(--gold); }
.price-card.featured{
  box-shadow: 0 0 0 2px var(--gold), 0 20px 60px rgba(230,184,0,.12);
  border-color: transparent;
}
.tier-guarantee{
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-faint);
  text-align: center;
}
.pricing-unsure{ margin-top: 44px; }

/* --- Checkout: intent decides what the summary shows --------------------- */
.intent-picker{
  border: 0;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.intent-picker legend{
  padding: 0;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b2b7bf;
}
.intent-option{
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: border-color .18s ease, background .18s ease;
}
.intent-option input{ accent-color: var(--blue); width: 18px; height: 18px; }
.intent-option.is-active{
  border: 2px solid var(--blue);
  background: rgba(59,130,246,.12);
  padding: 0 17px;
}
.call-benefits{ display: grid; gap: 12px; margin-top: 22px; }
.call-benefits li{ display: flex; gap: 12px; font-size: 15px; color: var(--text-dim); line-height: 1.5; }
.checkout-call-panel h3{ margin-top: 16px; }
.checkout-call-panel .checkout-note{ margin-top: 20px; }
.form-whatsapp-alt{
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  color: var(--whatsapp);
}
.form-whatsapp-alt:hover{ color: #47e78c; }
.form-whatsapp-icon svg{ width: 17px; height: 17px; }
.form-legal{ margin-top: 12px; font-size: 12px; color: #8a93a1; text-align: center; }
.form-legal a{ color: #a7b0bd; text-decoration: underline; text-underline-offset: 3px; }

/* --- FAQ: no dead end ---------------------------------------------------- */
.faq-cta{
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.faq-cta h3{ font-size: 22px; }
.faq-cta p{ margin-top: 10px; color: var(--text-dim); font-size: 15.5px; }
.faq-cta-actions{
  margin-top: 24px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Section pills stop competing with the action colour ----------------- */
.pill, .pill-accent{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
  color: #9aa4b2;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-kicker{ background: rgba(59,130,246,.12); border-color: rgba(59,130,246,.3); color: #9cc6ff; }
.process-step .icon-badge, .roadmap-marker .icon-badge, .feature-card .icon-badge{ color: #8b93a1; }

/* --- Footer legal identity ----------------------------------------------- */
.footer-legal-id{ margin-top: 10px !important; font-size: 13px; color: #8a93a1; }

/* --- Mobile sticky conversion bar ---------------------------------------- */
.mobile-cta-bar{ display: none; }
.btn-nav-mobile{ display: none; }

@media (max-width: 768px){
  .mobile-cta-bar{
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 900;
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(10,12,16,.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.08);
    transform: translateY(110%);
    transition: transform .25s ease;
  }
  .mobile-cta-bar.is-visible{ transform: translateY(0); }
  .mobile-cta-main{ flex: 0 0 61%; height: 52px; padding: 0 12px; font-size: 15px; }
  .mobile-cta-wa{ flex: 1; height: 52px; padding: 0 10px; font-size: 15px; gap: 6px; }
  body{ padding-bottom: 0; }
  body.has-mobile-bar{ padding-bottom: 84px; }
  .btn-nav-mobile{
    display: inline-flex;
    height: 38px;
    padding: 0 14px;
    font-size: 13px;
    margin-left: auto;
    margin-right: 12px;
  }
  .whatsapp-float{ display: none; }
  .cta-band-inner{ padding: 30px 20px; }
  .faq-cta-actions{ flex-direction: column; }
  .faq-cta-actions .btn{ width: 100%; }
  .team-portfolio-actions{ flex-direction: column; align-items: stretch; gap: 14px; }
  .team-portfolio-actions .btn{ width: 100%; justify-content: center; }
  .portfolio-link{ text-align: center; }
  .guarantee-cta .btn, .pricing-unsure .btn{ width: 100%; justify-content: center; }
  .price-card.featured{ order: -1; }
  .price-card.featured .tier-price .amount{ font-size: 40px; }
}

/* --- CRO pass 1 · fixes ---------------------------------------------------- */
.contact-form .intent-option{
  flex-direction: row !important;
  justify-content: flex-start;
  text-align: left;
  gap: 12px;
}
.contact-form .intent-option input[type="radio"]{
  flex: 0 0 auto;
  margin: 0;
}
.contact-form .intent-option span{ flex: 1; }
.checkout .contact-grid{ align-items: start; }
.checkout-summary{ padding-top: 8px; }
.tier-head .tier-scope{ margin-top: 12px; }
.tier-head{ min-height: 150px; }
@media (max-width: 768px){ .tier-head{ min-height: 0; } }

/* Hero proof row — clean separators, no stray bullets */
.hero-proof{ gap: 4px 14px; align-items: baseline; }
.hero-proof li{ display: inline; }
.hero-proof li + li::before{
  content: "·";
  color: #5d646e;
  margin-right: 12px;
}
@media (max-width: 700px){
  .hero-proof{ flex-direction: column; align-items: center; gap: 6px; text-align: center; }
  .hero-proof li + li::before{ content: none; }
}


/* ==========================================================================
   CRO PASS 2 — regression repairs
   ========================================================================== */

/* Features dropped from 6 cards to 4 but kept a 3-column grid, leaving a
   dead 2-cell gap on the second row. */
.features-grid{
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin-inline: auto;
  gap: 24px;
}

/* The price anchor was positioned correctly but too dark to register. */
.tier-anchor{
  color: #8a93a1;
  font-size: 15px;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,.85);
  text-decoration-thickness: 2px;
  margin-bottom: 4px;
}
.price-card .tier-price-block .tier-price{ margin-top: 10px; }
.price-card:not(.featured) .tier-price-block::before{
  content: "";
  display: block;
  min-height: 26px;
}

/* The refund guarantee must outrank the conditional credit note. */
.onboarding-guarantee{
  border: 1px solid rgba(59,130,246,.5);
  background: rgba(59,130,246,.10);
  font-weight: 600;
  color: #dbeafe;
}
.credit-note{ font-weight: 400; color: #c9cfda; }

/* Hero badge ate two lines on small phones. */
@media (max-width: 480px){
  .hero-kicker{ font-size: 11.5px; }
}

/* Mobile: the sticky bar must never cover the last row of the page, and it
   must get out of the way while the form is being filled in. */
@media (max-width: 768px){
  body{ padding-bottom: 88px; }
  body.has-mobile-bar{ padding-bottom: 88px; }
  .mobile-cta-bar[hidden]{ display: none !important; }

  /* Andy stats side by side instead of stacked */
  .andy-stats-card{ grid-template-columns: 1fr; }
  .andy-stats-card .andy-stat{ display: block; }
  .case-andy .andy-stats-card{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
  .case-andy .andy-photo{ grid-column: 1 / -1; }

  /* Process: compact 2-up pills, no vertical timeline at phone width */
  .process-steps{ grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-steps::before{ display: none; }
  .process-step{ flex-direction: column; align-items: flex-start; text-align: left; gap: 8px; }
  .process-step p{ flex: 1 1 auto; padding-left: 0; margin-top: 0; font-size: 13.5px; }
  .process-step .icon-badge{ width: 34px; height: 34px; }
  .process-step .icon-badge svg{ width: 18px; height: 18px; }
  .equip-band-text p{ display: none; }
}
