/* ==========================================================================
   NextGen Marketing — design system
   ========================================================================== */

:root{
  --ink:#0b0b10;
  --ink-soft:#5c5c6d;
  --bg:#0b0b10;
  --bg-elevated:#15151f;
  --bg-elevated-2:#1c1c29;
  --surface:#ffffff;
  --surface-soft:#f5f4f9;
  --surface-soft-2:#eeedf6;
  --line:#e7e5f0;
  --line-dark:rgba(255,255,255,.12);

  --violet:#6e3bff;
  --violet-dark:#4b1fd6;
  --violet-light:#efe9ff;
  --pink:#ff2e8c;
  --orange:#ff7a29;
  --lime:#c6ff3d;
  --white:#ffffff;

  --grad-primary:linear-gradient(135deg,var(--violet) 0%,var(--pink) 100%);
  --grad-warm:linear-gradient(135deg,var(--pink) 0%,var(--orange) 100%);
  --grad-full:linear-gradient(115deg,var(--violet) 0%,var(--pink) 55%,var(--orange) 100%);

  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:28px;
  --radius-full:999px;

  --shadow-md:0 20px 40px -20px rgba(20,10,45,.28);
  --shadow-lg:0 30px 70px -25px rgba(20,10,45,.38);
  --shadow-glow:0 0 0 1px rgba(255,255,255,.06),0 20px 60px -15px rgba(110,59,255,.45);
  --shadow-glow-pink:0 0 0 1px rgba(255,255,255,.06),0 20px 60px -15px rgba(255,46,140,.45);
  --shadow-glow-lime:0 0 0 1px rgba(255,255,255,.06),0 20px 60px -15px rgba(198,255,61,.4);
  --shadow-glow-orange:0 0 0 1px rgba(255,255,255,.06),0 20px 60px -15px rgba(255,122,41,.45);

  --container:1220px;
  --nav-h:76px;

  --ease:cubic-bezier(.16,1,.3,1);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  background:var(--surface);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
  overflow-x:hidden;
}
img,svg{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4,p{margin:0;}
button{font:inherit;cursor:pointer;}
input,textarea,select{font:inherit;}

.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:24px;
}

@media (min-width:900px){
  .container{padding-inline:40px;}
}

/* ---------- Typography ---------- */

h1,.h1{
  font-size:clamp(2.4rem,5.4vw,4.6rem);
  font-weight:900;
  line-height:1.03;
  letter-spacing:-0.03em;
}
h2,.h2{
  font-size:clamp(1.9rem,3.6vw,3rem);
  font-weight:900;
  line-height:1.08;
  letter-spacing:-0.025em;
}
h3,.h3{
  font-size:clamp(1.25rem,1.8vw,1.55rem);
  font-weight:800;
  line-height:1.25;
  letter-spacing:-0.01em;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--violet);
}
.eyebrow::before{
  content:"";
  width:7px;height:7px;border-radius:50%;
  background:var(--grad-warm);
  flex:none;
}
.lead{
  font-size:clamp(1.05rem,1.6vw,1.25rem);
  color:var(--ink-soft);
  line-height:1.6;
}
.section-dark .lead,.section-dark p{color:rgba(255,255,255,.68);}
.text-gradient{
  background:var(--grad-full);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* ---------- Layout sections ---------- */

.section{padding:96px 0;}
@media (max-width:720px){.section{padding:64px 0;}}
.section-tight{padding:64px 0;}
.section-dark{background:var(--bg);color:var(--white);position:relative;overflow:hidden;}

/* Continuous glow background for pages/areas where several .section-dark blocks
   stack back-to-back — a single soft-edged gradient field instead of per-section
   blobs, so there is no hard seam where one section's box ends and the next begins. */
.glow-field{
  background:
    radial-gradient(620px 620px at 10% 3%,  rgba(110,59,255,.32), transparent 70%),
    radial-gradient(560px 560px at 92% 16%, rgba(255,46,140,.26), transparent 70%),
    radial-gradient(600px 600px at 6% 34%,  rgba(255,122,41,.24), transparent 70%),
    radial-gradient(560px 560px at 94% 52%, rgba(110,59,255,.28), transparent 70%),
    radial-gradient(600px 600px at 8% 70%,  rgba(255,46,140,.24), transparent 70%),
    radial-gradient(560px 560px at 92% 88%, rgba(255,122,41,.22), transparent 70%),
    var(--bg);
  background-repeat:no-repeat;
}
.section-soft{background:var(--surface-soft);}
.section-split{display:grid;gap:56px;align-items:center;}
@media (min-width:900px){.section-split{grid-template-columns:1fr 1fr;gap:64px;}}
.hero .section-split{align-items:start;}
@media (min-width:900px){.hero .section-split{padding-top:12px;}}

/* Left/right swap for .section-split children — desktop only. On mobile the
   grid collapses to one column, so we let the natural (reading) order stand:
   text/heading first, supporting card second. Without this guard, an inline
   `order` meant only to mirror the layout on desktop would also reorder the
   stacked mobile view, putting the card before the heading that explains it. */
@media (min-width:900px){
  .order-md-1{order:1;}
  .order-md-2{order:2;}
}
.section-head{max-width:640px;margin-bottom:48px;}
.section-head.center{margin-inline:auto;text-align:center;}
.section-head > .eyebrow{margin-bottom:14px;}
.section-head > h2{margin-top:4px;}
.section-head > .lead{margin-top:16px;}

/* decorative blobs */
.blob{
  position:absolute;
  border-radius:50%;
  filter:blur(70px);
  opacity:.55;
  pointer-events:none;
  z-index:0;
}
.blob-violet{background:var(--violet);}
.blob-pink{background:var(--pink);}
.blob-orange{background:var(--orange);}
.blob-lime{background:var(--lime);}

.rel{position:relative;z-index:1;}

/* ---------- Buttons ---------- */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 28px;
  border-radius:var(--radius-full);
  font-weight:800;
  font-size:.98rem;
  border:1px solid transparent;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease),background .25s var(--ease),border-color .25s var(--ease);
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{
  background:var(--grad-primary);
  color:#fff;
  box-shadow:var(--shadow-glow);
}
.btn-primary:hover{box-shadow:0 0 0 1px rgba(255,255,255,.08),0 26px 70px -14px rgba(255,46,140,.55);}
.btn-dark{background:var(--ink);color:#fff;}
.btn-dark:hover{background:#1c1c29;}
.btn-light{background:#fff;color:var(--ink);}
.btn-light:hover{background:var(--surface-soft-2);}
.btn-outline{background:transparent;border-color:var(--line);color:var(--ink);}
.btn-outline:hover{border-color:var(--violet);color:var(--violet);}
.section-dark .btn-outline{border-color:var(--line-dark);color:#fff;}
.section-dark .btn-outline:hover{border-color:var(--lime);color:var(--lime);}
.btn-block{width:100%;}
.btn-sm{padding:11px 20px;font-size:.88rem;}

/* ---------- Nav ---------- */

.nav{
  position:sticky;top:0;z-index:100;
  height:var(--nav-h);
  display:flex;align-items:center;
  background:var(--bg);
  border-bottom:1px solid var(--line-dark);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;width:100%;}
.nav .btn-outline{border-color:var(--line-dark);color:#fff;}
.nav .btn-outline:hover{border-color:var(--lime);color:var(--lime);}
.brand{display:flex;align-items:center;gap:10px;font-weight:900;font-size:1.15rem;color:#fff;letter-spacing:-.01em;}
.brand-mark{width:29px;height:29px;flex:none;display:block;}
.nav-links{display:none;align-items:center;gap:36px;}
.nav-links a{
  display:inline-flex;align-items:center;gap:6px;
  font-weight:700;font-size:.94rem;color:rgba(255,255,255,.78);
  transition:color .2s var(--ease);
  position:relative;
}
.nav-links a:hover{color:#fff;}
.nav-links a.active{color:#fff;}
.nav-tag{
  font-size:.62rem;font-weight:800;letter-spacing:.03em;
  padding:2px 7px;border-radius:var(--radius-full);
  background:var(--grad-warm);color:#fff;
  line-height:1.4;flex:none;
}
.nav-links a.nav-highlight{
  padding:8px 14px;margin:-8px -4px;
  border-radius:var(--radius-full);
  background:rgba(255,46,140,.1);
  border:1px solid rgba(255,46,140,.28);
}
.nav-links a.nav-highlight:hover{background:rgba(255,46,140,.18);}
.mobile-menu a.nav-highlight{
  background:rgba(255,46,140,.08);
  border-radius:14px;border-bottom-color:transparent;
  padding-left:14px;padding-right:14px;
}
.nav-actions{display:flex;align-items:center;gap:14px;}
.nav-actions .btn{padding:11px 22px;font-size:.88rem;}
.nav-toggle{
  display:flex;flex-direction:column;justify-content:center;gap:5px;
  width:40px;height:40px;border-radius:10px;border:1px solid var(--line-dark);
  background:transparent;flex:none;
}
.nav-toggle span{height:2px;background:#fff;border-radius:2px;transition:transform .25s var(--ease),opacity .25s var(--ease);}
.nav-toggle span:nth-child(1){width:18px;margin-inline:auto;}
.nav-toggle span:nth-child(2){width:22px;margin-inline:auto;}
.nav-toggle span:nth-child(3){width:14px;margin-inline:auto;}

.mobile-menu{
  position:fixed;inset:var(--nav-h) 0 0 0;
  background:var(--bg);
  z-index:99;
  padding:32px 24px;
  display:flex;flex-direction:column;gap:8px;
  transform:translateY(-12px);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s var(--ease),transform .25s var(--ease);
}
.mobile-menu.is-open{opacity:1;transform:translateY(0);pointer-events:auto;}
.mobile-menu a{
  color:#fff;font-weight:800;font-size:1.4rem;padding:14px 4px;
  border-bottom:1px solid var(--line-dark);
}
.mobile-menu .btn{margin-top:20px;}

@media (min-width:960px){
  .nav-links{display:flex;}
  .nav-toggle{display:none;}
  .mobile-menu{display:none;}
}
@media (max-width:959px){
  .nav-actions .btn-outline{display:none;}
}

/* ---------- Hero ---------- */

.hero{padding-top:76px;padding-bottom:100px;}
.hero-stats{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:32px;margin-top:56px;
  border-top:1px solid var(--line-dark);
  padding-top:28px;
}
.hero-stat{position:relative;}
.hero-stat:not(:first-child)::before{content:"";position:absolute;left:-16px;top:2px;bottom:2px;width:1px;background:var(--line-dark);}
.hero-stat b{display:block;font-size:clamp(1.4rem,2.4vw,2.1rem);font-weight:900;color:#fff;white-space:nowrap;letter-spacing:-.01em;}
.hero-stat span{font-size:.85rem;color:rgba(255,255,255,.6);font-weight:600;}
.hero-visual{position:relative;aspect-ratio:1/1;max-width:520px;margin-inline:auto;}

@media (max-width:640px){
  .hero-stats{grid-template-columns:1fr 1fr;gap:24px 20px;}
  .hero-stat:not(:first-child)::before{display:none;}
}

/* ---------- Hero visual: precision-radar composition ---------- */

.hero-orb{position:absolute;border-radius:50%;filter:blur(46px);pointer-events:none;}
.hero-orb.o-violet{width:58%;height:58%;top:2%;left:4%;background:var(--violet);opacity:.5;}
.hero-orb.o-pink{width:48%;height:48%;bottom:6%;right:2%;background:var(--pink);opacity:.4;}
.hero-orb.o-orange{width:34%;height:34%;top:40%;right:14%;background:var(--orange);opacity:.35;}

.radar-ring{position:absolute;border-radius:50%;border:1.5px dashed rgba(255,255,255,.16);}
.radar-ring.r-outer{inset:8%;animation:hero-spin 70s linear infinite;}
.radar-ring.r-inner{inset:26%;border-color:rgba(255,255,255,.22);animation:hero-spin-rev 44s linear infinite;}

.radar-sweep{
  position:absolute;inset:8%;border-radius:50%;
  background:conic-gradient(from 0deg,rgba(198,255,61,.4),transparent 20%,transparent 100%);
  -webkit-mask-image:radial-gradient(circle,transparent 0,transparent 57%,#000 59%,#000 100%);
  mask-image:radial-gradient(circle,transparent 0,transparent 57%,#000 59%,#000 100%);
  animation:hero-spin 7s linear infinite;
}

.radar-core{
  position:absolute;top:50%;left:50%;z-index:3;
  width:72px;height:72px;margin:-36px 0 0 -36px;
  border-radius:50%;background:var(--grad-full);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 0 0 1px rgba(255,255,255,.16),0 0 60px 12px rgba(110,59,255,.4);
  animation:hero-pulse-scale 3s ease-in-out infinite;
}
.radar-core svg{width:30px;height:30px;}

.hero-badge{
  position:absolute;z-index:2;
  display:flex;align-items:center;gap:10px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(20px) saturate(150%);
  -webkit-backdrop-filter:blur(20px) saturate(150%);
  border-radius:var(--radius-md);
  padding:12px 14px;
  max-width:172px;
}
.hero-badge-inner{display:flex;flex-direction:column;align-items:flex-start;gap:10px;animation:hero-float 6s ease-in-out infinite;}
.hero-badge-icon{width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex:none;}
.hero-badge-icon svg{width:14px;height:14px;}
.hero-badge-text{font-size:.8rem;font-weight:800;color:#fff;white-space:normal;line-height:1.3;letter-spacing:-.005em;}

.hero-badge.b1{top:0%;left:-14%;}
.hero-badge.b2{top:14%;right:-16%;}
.hero-badge.b3{bottom:16%;left:-16%;}
.hero-badge.b4{bottom:-2%;right:-10%;}

.hero-badge.b1 .hero-badge-icon{background:rgba(110,59,255,.32);}
.hero-badge.b2 .hero-badge-icon{background:rgba(255,46,140,.28);}
.hero-badge.b3 .hero-badge-icon{background:rgba(198,255,61,.24);}
.hero-badge.b4 .hero-badge-icon{background:rgba(255,122,41,.3);}

.hero-badge.b2 .hero-badge-inner{animation-delay:.7s;}
.hero-badge.b3 .hero-badge-inner{animation-delay:1.4s;}
.hero-badge.b4 .hero-badge-inner{animation-delay:2.1s;}

@keyframes hero-spin{to{transform:rotate(360deg);}}
@keyframes hero-spin-rev{to{transform:rotate(-360deg);}}
@keyframes hero-float{0%,100%{transform:translateY(0);}50%{transform:translateY(-12px);}}
@keyframes hero-pulse-scale{0%,100%{transform:scale(1);}50%{transform:scale(1.08);}}

@media (max-width:640px){
  .hero-badge{padding:10px 12px;max-width:132px;}
  .hero-badge-text{font-size:.7rem;}
  .hero-badge-icon{width:24px;height:24px;}
  .radar-core{width:58px;height:58px;margin:-29px 0 0 -29px;}
  .radar-core svg{width:24px;height:24px;}
  /* Desktop positions the badges with a negative offset so they float past the
     radar's edge — on a narrow viewport that same offset pushes them outside
     the section's clipped bounds, cutting them off. Mobile only: pull them
     back in; the desktop rules above are untouched. */
  .hero-badge.b1{left:0%;}
  .hero-badge.b2{right:0%;}
  .hero-badge.b3{left:0%;}
  .hero-badge.b4{right:0%;bottom:2%;}
}

@media (prefers-reduced-motion: reduce){
  .radar-ring,.radar-sweep,.radar-core,.hero-badge-inner,.hero-live-dot{animation:none;}
}

/* ---------- Badges / chips ---------- */

.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 14px;border-radius:var(--radius-full);
  font-size:.8rem;font-weight:800;
  background:var(--violet-light);color:var(--violet-dark);
}
.badge-dark{background:rgba(255,255,255,.08);color:#fff;border:1px solid var(--line-dark);}
.badge-lime{background:rgba(198,255,61,.14);color:#8fb61a;}
.section-dark .badge-lime{color:var(--lime);}

/* ---------- Cards ---------- */

.grid{display:grid;gap:24px;}
.grid-2{grid-template-columns:1fr;}
.grid-3{grid-template-columns:1fr;}
.grid-4{grid-template-columns:1fr;}
@media (min-width:640px){
  .grid-2{grid-template-columns:1fr 1fr;}
  .grid-4{grid-template-columns:1fr 1fr;}
}
@media (min-width:900px){
  .grid-3{grid-template-columns:repeat(3,1fr);}
  .grid-4{grid-template-columns:repeat(4,1fr);}
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:32px;
  transition:transform .3s var(--ease),box-shadow .3s var(--ease),border-color .3s var(--ease);
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:transparent;}
.card-icon{
  width:52px;height:52px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
  background:var(--violet-light);
}
.card-icon svg{width:24px;height:24px;}
.card h3{margin-bottom:10px;}
.card p{color:var(--ink-soft);font-size:.96rem;}

/* Vibrant color-wash treatment for light sections on the homepage — subtle radial
   glows on the background plus solid, full-color icon chips instead of pale tints,
   so light sections carry the same energy as the dark ones. */
.glow-field-light{
  background:
    radial-gradient(480px 480px at 6% 0%,   rgba(110,59,255,.09), transparent 68%),
    radial-gradient(440px 440px at 96% 12%, rgba(255,46,140,.08), transparent 68%),
    radial-gradient(460px 460px at 50% 105%,rgba(255,122,41,.07), transparent 68%),
    var(--surface);
}
.glow-field-soft{
  background:
    radial-gradient(480px 480px at 4% 6%,   rgba(110,59,255,.1), transparent 68%),
    radial-gradient(440px 440px at 97% 18%, rgba(255,46,140,.09), transparent 68%),
    radial-gradient(460px 460px at 55% 108%,rgba(255,122,41,.08), transparent 68%),
    var(--surface-soft);
}
.glow-field-light .card:hover,.glow-field-soft .card:hover{box-shadow:var(--shadow-lg);}
.glow-field-light .card-icon,.glow-field-soft .card-icon{box-shadow:0 12px 24px -10px rgba(20,10,45,.3);}
.glow-field-light .card:nth-child(4n+1) .card-icon,.glow-field-soft .card:nth-child(4n+1) .card-icon{background:var(--violet);}
.glow-field-light .card:nth-child(4n+2) .card-icon,.glow-field-soft .card:nth-child(4n+2) .card-icon{background:var(--pink);}
.glow-field-light .card:nth-child(4n+3) .card-icon,.glow-field-soft .card:nth-child(4n+3) .card-icon{background:var(--orange);}
.glow-field-light .card:nth-child(4n+4) .card-icon,.glow-field-soft .card:nth-child(4n+4) .card-icon{background:var(--lime);}
.glow-field-light .testi,.glow-field-soft .testi{transition:transform .3s var(--ease),box-shadow .3s var(--ease);}
.glow-field-light .testi:hover,.glow-field-soft .testi:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);}

.card-dark{
  background:var(--bg-elevated);
  border:1px solid var(--line-dark);
  border-radius:var(--radius-lg);
  padding:32px;
  color:#fff;
}
.card-dark p{color:rgba(255,255,255,.66);}

/* icon color variants cycling through accent palette */
.card:nth-child(4n+1) .card-icon{background:rgba(110,59,255,.12);}
.card:nth-child(4n+2) .card-icon{background:rgba(255,46,140,.12);}
.card:nth-child(4n+3) .card-icon{background:rgba(255,122,41,.14);}
.card:nth-child(4n+4) .card-icon{background:rgba(198,255,61,.22);}

/* ---------- Testimonials ---------- */

.testi{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:28px;height:100%;
}
.testi-stars{color:var(--orange);font-size:.95rem;margin-bottom:14px;letter-spacing:2px;}
.testi p{font-size:1rem;color:var(--ink);margin-bottom:22px;}
.testi-person{display:flex;align-items:center;gap:12px;}
.testi-avatar{
  width:42px;height:42px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:800;font-size:.85rem;
  background:var(--grad-full);flex:none;
}
.testi-person b{display:block;font-size:.92rem;}
.testi-person span{font-size:.82rem;color:var(--ink-soft);}

/* ---------- Process steps ---------- */

.steps{counter-reset:step;}
.step{
  display:grid;grid-template-columns:auto 1fr;gap:20px;
  padding:28px 0;border-top:1px solid var(--line-dark);
}
.step:last-child{border-bottom:1px solid var(--line-dark);}
.step-num{
  counter-increment:step;
  font-weight:900;font-size:1.4rem;
  width:56px;height:56px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.06);color:var(--lime);
  flex:none;
}
.step-num::before{content:counter(step,decimal-leading-zero);}
.step h3{color:#fff;margin-bottom:6px;}
.step p{color:rgba(255,255,255,.62);font-size:.95rem;}

/* ---------- Pricing ---------- */

.price-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:36px 32px;display:flex;flex-direction:column;height:100%;position:relative;
}
.price-card.is-featured{
  background:var(--bg-elevated);color:#fff;border-color:transparent;
  box-shadow:var(--shadow-lg);
  transform:scale(1.02);
}
.price-card.is-featured p{color:rgba(255,255,255,.66);}
.price-card.is-featured .price-list li{border-color:var(--line-dark);}
.price-tag{
  position:absolute;top:-14px;right:28px;
  background:var(--grad-warm);color:#fff;
  font-size:.75rem;font-weight:800;
  padding:7px 14px;border-radius:var(--radius-full);
}
.price-value{display:flex;flex-wrap:wrap;align-items:baseline;gap:8px;margin:20px 0 4px;}
.price-value b{font-size:clamp(1.9rem,4vw,2.5rem);font-weight:900;letter-spacing:-.02em;white-space:nowrap;}
.price-value span{color:var(--ink-soft);font-size:.9rem;white-space:nowrap;}
.price-card.is-featured .price-value span{color:rgba(255,255,255,.6);}
.price-note{font-size:.82rem;color:var(--ink-soft);margin-bottom:24px;}
.price-card.is-featured .price-note{color:rgba(255,255,255,.5);}
.price-list{margin:0 0 28px;display:flex;flex-direction:column;gap:12px;}
.price-list li{
  display:flex;gap:10px;font-size:.92rem;
  padding-bottom:12px;border-bottom:1px dashed var(--line);
}
.price-list li:last-child{border-bottom:none;padding-bottom:0;}
.price-list svg{flex:none;width:18px;height:18px;color:var(--violet);margin-top:1px;}
.price-card.is-featured .price-list svg{color:var(--lime);}
.price-card .btn{margin-top:auto;}

/* ---------- Forms ---------- */

.field{display:flex;flex-direction:column;gap:8px;margin-bottom:20px;}
.field label{font-size:.85rem;font-weight:700;}
.field input,.field textarea,.field select{
  padding:14px 16px;border-radius:12px;border:1px solid var(--line);
  background:var(--surface-soft);color:var(--ink);
  transition:border-color .2s var(--ease),background .2s var(--ease);
}
.field input:focus,.field textarea:focus,.field select:focus{
  outline:none;border-color:var(--violet);background:#fff;
}
.section-dark .field input,.section-dark .field textarea,.section-dark .field select{
  background:rgba(255,255,255,.06);border-color:var(--line-dark);color:#fff;
}
.field textarea{resize:vertical;min-height:120px;}
.field-row{display:grid;gap:20px;}
@media (min-width:640px){.field-row{grid-template-columns:1fr 1fr;}}
.form-note{font-size:.8rem;color:var(--ink-soft);margin-top:12px;}
.section-dark .form-note{color:rgba(255,255,255,.5);}
.hp-field{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden;}

/* ---------- Logos / trust bar ---------- */

/* ---------- FAQ ---------- */

.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:22px 0;font-weight:800;font-size:1.02rem;
  background:none;border:none;width:100%;text-align:left;color:var(--ink);
}
.faq-q .plus{
  width:28px;height:28px;border-radius:50%;flex:none;
  background:var(--surface-soft-2);
  display:flex;align-items:center;justify-content:center;
  position:relative;transition:transform .3s var(--ease);
}
.faq-q .plus::before,.faq-q .plus::after{
  content:"";position:absolute;background:var(--ink);
}
.faq-q .plus::before{width:10px;height:2px;}
.faq-q .plus::after{width:2px;height:10px;}
.faq-item.is-open .faq-q .plus{transform:rotate(45deg);background:var(--violet);}
.faq-item.is-open .faq-q .plus::before,.faq-item.is-open .faq-q .plus::after{background:#fff;}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s var(--ease);}
.faq-a p{padding-bottom:22px;color:var(--ink-soft);font-size:.95rem;max-width:640px;}

/* ---------- Dark-context overrides (cards, FAQ, etc. placed on .section-dark) ---------- */

.section-dark h1,.section-dark h2,.section-dark h3{color:#fff;}
.section-dark .eyebrow{color:var(--lime);}

.section-dark .card{background:var(--bg-elevated-2);border-color:rgba(255,255,255,.16);}
.section-dark .card:hover{border-color:transparent;box-shadow:var(--shadow-lg);}
.section-dark .card p{color:rgba(255,255,255,.66);}
.section-dark .card-icon{background:rgba(255,255,255,.1);box-shadow:0 10px 22px -8px rgba(0,0,0,.4);}
.section-dark .card:nth-child(4n+1) .card-icon{background:var(--violet);}
.section-dark .card:nth-child(4n+2) .card-icon{background:var(--pink);}
.section-dark .card:nth-child(4n+3) .card-icon{background:var(--orange);}
.section-dark .card:nth-child(4n+4) .card-icon{background:var(--lime);}

.section-dark .price-list li{border-bottom-color:var(--line-dark);}
.section-dark .price-list svg{color:var(--lime);}

.section-dark .faq-item{border-bottom-color:var(--line-dark);}
.section-dark .faq-q{color:#fff;}
.section-dark .faq-q .plus{background:rgba(255,255,255,.08);}
.section-dark .faq-q .plus::before,.section-dark .faq-q .plus::after{background:#fff;}
.section-dark .faq-item.is-open .faq-q .plus{background:var(--violet);}
.section-dark .faq-a p{color:rgba(255,255,255,.62);}

.section-dark .testi{background:var(--bg-elevated);border-color:var(--line-dark);}
.section-dark .testi p{color:rgba(255,255,255,.85);}
.section-dark .testi-person span{color:rgba(255,255,255,.5);}

/* ---------- CTA band ---------- */

.cta-band{
  border-radius:var(--radius-lg);
  background:var(--grad-full);
  padding:56px;
  display:grid;gap:32px;
  align-items:center;
  color:#fff;
  position:relative;
  overflow:hidden;
}
@media (min-width:900px){.cta-band{grid-template-columns:1.4fr auto;padding:64px 72px;}}
.cta-band h2{color:#fff;}

/* ---------- Footer ---------- */

.footer{background:var(--bg);color:rgba(255,255,255,.6);padding:72px 0 32px;}
.footer-top{display:grid;gap:48px;margin-bottom:56px;}
@media (min-width:900px){.footer-top{grid-template-columns:1.4fr 1fr 1fr 1fr;}}
.footer-brand p{margin-top:16px;max-width:280px;font-size:.92rem;}
.footer-col h4{color:#fff;font-size:.85rem;font-weight:800;text-transform:uppercase;letter-spacing:.05em;margin-bottom:18px;}
.footer-col ul{display:flex;flex-direction:column;gap:12px;}
.footer-col a{font-size:.92rem;transition:color .2s var(--ease);}
.footer-col a:hover{color:#fff;}
.footer-bottom{
  display:flex;flex-wrap:wrap;gap:16px;justify-content:space-between;
  padding-top:28px;border-top:1px solid var(--line-dark);
  font-size:.82rem;
}
.social-row{display:flex;gap:12px;margin-top:20px;}
.social-row a{
  width:38px;height:38px;border-radius:50%;border:1px solid var(--line-dark);
  display:flex;align-items:center;justify-content:center;
}
.social-row a:hover{border-color:var(--lime);}
.social-row svg{width:16px;height:16px;}

/* ---------- Page header (inner pages) ---------- */

.page-header{padding:150px 0 80px;}
.page-header .eyebrow{color:var(--lime);}
.breadcrumb{display:flex;gap:8px;align-items:center;font-size:.85rem;color:rgba(255,255,255,.5);margin-bottom:20px;}

/* ---------- Reveal animation ---------- */

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

/* ---------- Misc utilities ---------- */

.stack-sm{display:flex;flex-direction:column;gap:12px;}
.row{display:flex;align-items:center;}
.gap-sm{gap:12px;}
.gap-md{gap:20px;}
.mt-lg{margin-top:48px;}
.center{text-align:center;}
.tag-row{display:flex;flex-wrap:wrap;gap:10px;}
hr.hair{border:none;border-top:1px solid var(--line);margin:0;}
.section-dark hr.hair{border-top:1px solid var(--line-dark);}

.avatar-strip{display:flex;}
.avatar-strip .testi-avatar{width:38px;height:38px;font-size:.75rem;margin-left:-10px;border:2px solid var(--bg);}
.avatar-strip .testi-avatar:first-child{margin-left:0;}
