/* ===================== Tokens ===================== */
:root{
  --bg: #0a0b08;
  --bg-alt: #101208;
  --card: #14160d;
  --card-border: rgba(255,255,255,.08);
  --text: #f4f6ee;
  --text-muted: #a3a89a;
  --accent: #c9f24e;
  --accent-dim: #9fce35;
  --accent-glow: rgba(201,242,78,.35);
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1180px;
  --ff-head: "Space Grotesk", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
}

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

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

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--accent); color:#0a0b08;
  padding:10px 16px; z-index:999; border-radius:0 0 8px 0; font-weight:600;
}
.skip-link:focus{ left:0; }

section[id]{ scroll-margin-top: 90px; }

/* ===================== Buttons ===================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease, color .3s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--accent);
  color: #0a0b08;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -8px var(--accent-glow);
}
.btn-ghost{
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-color: rgba(255,255,255,.14);
}
.btn-ghost:hover{ background: rgba(255,255,255,.09); transform: translateY(-3px); }
.btn-outline{
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,.22);
  width:100%;
}
.btn-outline:hover{ border-color: var(--accent); color: var(--accent); }
.btn-sm{ padding: 10px 20px; font-size:.85rem; }
.btn-lg{ padding: 17px 34px; font-size: 1rem; }

/* ===================== Header ===================== */
.site-header{
  position: sticky; top:0; z-index: 100;
  padding: 18px 0;
  transition: background .35s ease, padding .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled{
  background: rgba(10,11,8,.75);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-color: var(--card-border);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.logo{
  display:flex; align-items:center; gap:10px;
  font-family: var(--ff-head); font-weight:700; font-size:1.25rem; letter-spacing:-.02em;
}
.logo-mark{
  width:26px; height:26px; border-radius:8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  box-shadow: 0 0 18px var(--accent-glow);
}
.main-nav{ display:flex; gap:32px; }
.main-nav a{
  font-size:.94rem; font-weight:500; color: var(--text-muted);
  position:relative; transition: color .25s ease;
}
.main-nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-6px; height:2px;
  background: var(--accent); transition: right .3s var(--ease);
}
.main-nav a:hover{ color: var(--text); }
.main-nav a:hover::after{ right:0; }

.header-actions{ display:flex; align-items:center; gap:16px; }
.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; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav{
  display:flex; flex-direction:column; gap:2px;
  max-height:0; overflow:hidden;
  transition: max-height .4s var(--ease);
}
.mobile-nav a{
  padding:14px 24px; border-top:1px solid var(--card-border); color: var(--text-muted); font-weight:500;
}
.mobile-nav a:last-child{ margin:14px 24px; border-top:none; }
.mobile-nav.open{ max-height:520px; }

/* ===================== Hero ===================== */
.hero{
  position:relative;
  padding: 150px 0 100px;
  overflow:hidden;
  text-align:center;
}
.hero-rings{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; z-index:0; pointer-events:none; }
.ring{
  position:absolute; border:1px solid rgba(201,242,78,.14); border-radius:50%;
  animation: pulse 7s ease-in-out infinite;
}
.ring-1{ width:420px; height:420px; }
.ring-2{ width:680px; height:680px; animation-delay: -2s; }
.ring-3{ width:940px; height:940px; animation-delay: -4s; }
.glow{
  position:absolute; width:520px; height:520px; border-radius:50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(30px);
  animation: floaty 9s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ transform:scale(1); opacity:.7; }
  50%{ transform:scale(1.05); opacity:1; }
}
@keyframes floaty{
  0%,100%{ transform: translate(0,0); }
  50%{ transform: translate(0,-18px); }
}

.hero-inner{ position:relative; z-index:1; max-width: 880px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  border:1px solid rgba(201,242,78,.4);
  padding: 9px 20px;
  border-radius:100px;
  font-size:.82rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  color: var(--accent);
  margin-bottom:28px;
}
.eyebrow .dot{
  width:7px; height:7px; border-radius:50%; background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: blip 2s ease-in-out infinite;
}
@keyframes blip{
  0%,100%{ box-shadow: 0 0 0 0 var(--accent-glow); }
  50%{ box-shadow: 0 0 0 6px transparent; }
}

.hero-title{
  font-size: clamp(2.3rem, 5.6vw, 4.4rem);
  font-weight: 700;
  letter-spacing:-.02em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.text-accent{ color: var(--accent); }

.hero-sub{
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero-cta{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom: 28px; }
.hero-trust{ font-size:.85rem; color: var(--text-muted); }

/* ===================== Logo marquee ===================== */
.logo-strip{ padding: 10px 0 50px; }
.strip-label{
  text-align:center; text-transform:uppercase; letter-spacing:.14em; font-size:.78rem;
  color: var(--text-muted); margin-bottom: 26px; font-weight:600;
}
.marquee{
  overflow:hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track{
  display:flex; gap:60px; width:max-content;
  animation: scroll-x 26s linear infinite;
}
.marquee-track span{
  font-family: var(--ff-head); font-weight:600; font-size:1.3rem;
  color: rgba(255,255,255,.32); white-space:nowrap;
}
@keyframes scroll-x{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ===================== Sections ===================== */
.section{ padding: 110px 0; }
.section-alt{ background: var(--bg-alt); }
.kicker{
  text-align:center; text-transform:uppercase; letter-spacing:.14em; font-size:.8rem;
  font-weight:700; color: var(--accent); margin-bottom:14px;
}
.section-title{
  text-align:center; font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  text-transform:uppercase; max-width: 780px; margin: 0 auto 64px;
}

/* ===================== Process ===================== */
.steps{ position:relative; display:grid; grid-template-columns: repeat(3,1fr); gap:32px; }
.step-line{
  position:absolute; top:28px; left:12%; right:12%; height:1px;
  background: linear-gradient(90deg, transparent, var(--card-border) 20%, var(--card-border) 80%, transparent);
  z-index:0;
}
.step-card{
  position:relative; z-index:1;
  background: var(--card); border:1px solid var(--card-border); border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform .4s var(--ease), border-color .4s ease, box-shadow .4s ease;
}
.step-card:hover{ transform: translateY(-6px); border-color: rgba(201,242,78,.35); box-shadow: 0 20px 40px -20px rgba(0,0,0,.5); }
.step-num{
  display:inline-block; font-family: var(--ff-head); font-weight:700; font-size:1rem;
  color: #0a0b08; background: var(--accent); width:44px; height:44px; border-radius:50%;
  line-height:44px; text-align:center; margin-bottom:20px;
}
.step-card h3{ font-size:1.2rem; margin-bottom:10px; }
.step-card p{ color: var(--text-muted); font-size:.95rem; }

/* ===================== Benefits ===================== */
.benefit-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:24px;
}
.benefit-card{
  background: var(--card); border:1px solid var(--card-border); border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform .4s var(--ease), border-color .4s ease;
}
.benefit-card:hover{ transform: translateY(-6px); border-color: rgba(201,242,78,.35); }
.benefit-card h3{ font-size:1.05rem; margin-bottom:8px; }
.benefit-card p{ color: var(--text-muted); font-size:.9rem; }

.icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:12px; margin-bottom:18px;
  background: rgba(201,242,78,.1); color: var(--accent);
  position:relative;
}
.icon::before{ content:""; width:18px; height:18px; background: currentColor; -webkit-mask-size:contain; mask-size:contain; -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat; -webkit-mask-position:center; mask-position:center; }
.icon-lg{ width:52px; height:52px; }
.icon-lg::before{ width:24px; height:24px; }

/* generic inline icon shapes via mask svg data-uri */
.icon[data-icon="infinity"]::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M6 12c0-2.2 1.8-4 4-4 2 0 3 1.5 4 4s2 4 4 4c2.2 0 4-1.8 4-4s-1.8-4-4-4c-2 0-3 1.5-4 4s-2 4-4 4c-2.2 0-4-1.8-4-4Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M6 12c0-2.2 1.8-4 4-4 2 0 3 1.5 4 4s2 4 4 4c2.2 0 4-1.8 4-4s-1.8-4-4-4c-2 0-3 1.5-4 4s-2 4-4 4c-2.2 0-4-1.8-4-4Z'/%3E%3C/svg%3E"); }
.icon[data-icon="bolt"]::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M13 2 3 14h7l-1 8 11-14h-7z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M13 2 3 14h7l-1 8 11-14h-7z'/%3E%3C/svg%3E"); }
.icon[data-icon="layers"]::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='m12 2 9 5-9 5-9-5 9-5Z'/%3E%3Cpath d='m3 12 9 5 9-5'/%3E%3Cpath d='m3 17 9 5 9-5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='m12 2 9 5-9 5-9-5 9-5Z'/%3E%3Cpath d='m3 12 9 5 9-5'/%3E%3Cpath d='m3 17 9 5 9-5'/%3E%3C/svg%3E"); }
.icon[data-icon="chat"]::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M21 12a8 8 0 1 1-3.5-6.6L21 4l-1 4.6c.6 1 1 2.2 1 3.4Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M21 12a8 8 0 1 1-3.5-6.6L21 4l-1 4.6c.6 1 1 2.2 1 3.4Z'/%3E%3C/svg%3E"); }
.icon[data-icon="tag"]::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M20 12 12 20l-8-8V4h8l8 8Z'/%3E%3Ccircle cx='8' cy='8' r='1.6' fill='%23000'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M20 12 12 20l-8-8V4h8l8 8Z'/%3E%3Ccircle cx='8' cy='8' r='1.6' fill='%23000'/%3E%3C/svg%3E"); }
.icon[data-icon="sliders"]::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 6h10M18 6h2M4 12h2M8 12h12M4 18h14M22 18h-2'/%3E%3Ccircle cx='16' cy='6' r='2' fill='%23000' stroke='none'/%3E%3Ccircle cx='6' cy='12' r='2' fill='%23000' stroke='none'/%3E%3Ccircle cx='18' cy='18' r='2' fill='%23000' stroke='none'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 6h10M18 6h2M4 12h2M8 12h12M4 18h14M22 18h-2'/%3E%3Ccircle cx='16' cy='6' r='2' fill='%23000' stroke='none'/%3E%3Ccircle cx='6' cy='12' r='2' fill='%23000' stroke='none'/%3E%3Ccircle cx='18' cy='18' r='2' fill='%23000' stroke='none'/%3E%3C/svg%3E"); }
.icon[data-icon="spark"]::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2c.6 3.8 2.6 5.8 6.4 6.4-3.8.6-5.8 2.6-6.4 6.4-.6-3.8-2.6-5.8-6.4-6.4C9.4 7.8 11.4 5.8 12 2Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2c.6 3.8 2.6 5.8 6.4 6.4-3.8.6-5.8 2.6-6.4 6.4-.6-3.8-2.6-5.8-6.4-6.4C9.4 7.8 11.4 5.8 12 2Z'/%3E%3C/svg%3E"); }
.icon[data-icon="rocket"]::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M5 15c-1 2-1 5-1 5s3 0 5-1l6-6c2-2 3-6 3-8 0 0-4 1-8 3l-5 7Z'/%3E%3Ccircle cx='15' cy='9' r='1.4' fill='%23000' stroke='none'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M5 15c-1 2-1 5-1 5s3 0 5-1l6-6c2-2 3-6 3-8 0 0-4 1-8 3l-5 7Z'/%3E%3Ccircle cx='15' cy='9' r='1.4' fill='%23000' stroke='none'/%3E%3C/svg%3E"); }
.icon[data-icon="globe"]::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2c2.5 2.7 4 6.3 4 10s-1.5 7.3-4 10c-2.5-2.7-4-6.3-4-10s1.5-7.3 4-10Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2c2.5 2.7 4 6.3 4 10s-1.5 7.3-4 10c-2.5-2.7-4-6.3-4-10s1.5-7.3 4-10Z'/%3E%3C/svg%3E"); }
.icon[data-icon="frame"]::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M6 2h12v7H10v6h8v7H6v-7h6V9H6V2Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M6 2h12v7H10v6h8v7H6v-7h6V9H6V2Z'/%3E%3C/svg%3E"); }
.icon[data-icon="bag"]::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M6 8h12l1 13H5L6 8Z'/%3E%3Cpath d='M9 8V6a3 3 0 0 1 6 0v2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M6 8h12l1 13H5L6 8Z'/%3E%3Cpath d='M9 8V6a3 3 0 0 1 6 0v2'/%3E%3C/svg%3E"); }
.icon[data-icon="cube"]::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='m12 2 9 5v10l-9 5-9-5V7l9-5Z'/%3E%3Cpath d='M3 7l9 5 9-5M12 12v10'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='m12 2 9 5v10l-9 5-9-5V7l9-5Z'/%3E%3Cpath d='M3 7l9 5 9-5M12 12v10'/%3E%3C/svg%3E"); }

/* ===================== Toolkit ===================== */
.tool-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; }
.tool-card{
  background: var(--card); border:1px solid var(--card-border); border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .4s var(--ease), border-color .4s ease;
}
.tool-card:hover{ transform: translateY(-6px); border-color: rgba(201,242,78,.35); }
.tool-card h3{ font-size:1.1rem; margin-bottom:10px; }
.tool-card p{ color: var(--text-muted); font-size:.9rem; }

/* ===================== Pricing ===================== */
.pricing-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:28px; align-items:stretch; }
.price-card{
  position:relative;
  background: var(--card); border:1px solid var(--card-border); border-radius: var(--radius);
  padding: 40px 34px; display:flex; flex-direction:column;
  transition: transform .4s var(--ease), border-color .4s ease;
}
.price-card:hover{ transform: translateY(-6px); }
.price-featured{
  border-color: rgba(201,242,78,.5);
  background: linear-gradient(180deg, rgba(201,242,78,.07), var(--card) 40%);
  box-shadow: 0 30px 60px -30px var(--accent-glow);
}
.badge{
  position:absolute; top:-14px; left:34px;
  background: var(--accent); color:#0a0b08; font-weight:700; font-size:.75rem;
  padding:6px 16px; border-radius:100px; text-transform:uppercase; letter-spacing:.05em;
}
.price-tag{ color: var(--accent); font-weight:700; font-size:.85rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:10px; }
.price-card h3{ font-size:1.4rem; margin-bottom:14px; }
.price-value{ font-family: var(--ff-head); font-size:2.4rem; font-weight:700; margin-bottom:14px; }
.price-value span{ color: var(--accent); }
.price-desc{ color: var(--text-muted); margin-bottom:26px; }
.price-list{ margin-bottom:32px; flex:1; }
.price-list li{
  position:relative; padding-left:28px; margin-bottom:14px; font-size:.94rem; color: var(--text);
}
.price-list li::before{
  content:""; position:absolute; left:0; top:3px; width:18px; height:18px; border-radius:50%;
  background: rgba(201,242,78,.15);
}
.price-list li::after{
  content:""; position:absolute; left:5px; top:7px; width:8px; height:5px;
  border-left:2px solid var(--accent); border-bottom:2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ===================== Testimonial ===================== */
.testimonial-card{
  max-width: 780px; margin:0 auto; text-align:center;
  background: var(--card); border:1px solid var(--card-border); border-radius: var(--radius);
  padding: 56px 48px;
}
.quote-mark{ color: var(--accent); margin-bottom: 20px; }
.testimonial-quote{
  font-family: var(--ff-head); font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height:1.5; margin-bottom:30px;
}
.testimonial-author{ display:flex; align-items:center; justify-content:center; gap:14px; }
.avatar{
  width:44px; height:44px; border-radius:50%; background: rgba(201,242,78,.15); color: var(--accent);
  display:flex; align-items:center; justify-content:center; font-weight:700; font-family: var(--ff-head);
}
.testimonial-author div{ text-align:left; display:flex; flex-direction:column; }
.testimonial-author span{ color: var(--text-muted); font-size:.85rem; }

/* ===================== FAQ ===================== */
.faq-list{ max-width: 820px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--card-border); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  background:none; border:none; color: var(--text); text-align:left;
  padding: 22px 4px; font-size:1.02rem; font-weight:600; font-family: var(--ff-head);
}
.faq-icon{ position:relative; width:18px; height:18px; flex-shrink:0; }
.faq-icon::before, .faq-icon::after{
  content:""; position:absolute; background: var(--accent); border-radius:2px; transition: transform .3s ease;
}
.faq-icon::before{ width:18px; height:2px; top:8px; left:0; }
.faq-icon::after{ width:2px; height:18px; top:0; left:8px; }
.faq-q[aria-expanded="true"] .faq-icon::after{ transform: rotate(90deg) scaleY(0); }
.faq-a{
  max-height:0; overflow:hidden; transition: max-height .4s var(--ease);
}
.faq-a p{ padding: 0 4px 24px; color: var(--text-muted); font-size:.96rem; }

/* ===================== CTA / Contact form ===================== */
.cta-section{ background: var(--bg-alt); }
.contact-form{
  max-width: 720px; margin:0 auto;
  display:flex; flex-direction:column; gap:20px;
  background: var(--card); border:1px solid var(--card-border); border-radius: var(--radius);
  padding: 40px;
}
.hidden-field{ position:absolute; left:-9999px; opacity:0; height:0; overflow:hidden; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.contact-form label{ display:flex; flex-direction:column; gap:8px; font-size:.88rem; color: var(--text-muted); font-weight:600; }
.contact-form label.full{ grid-column:1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--ff-body);
  font-size:.95rem;
  resize: vertical;
  transition: border-color .25s ease, background .25s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus{
  outline:none; border-color: var(--accent); background: rgba(255,255,255,.05);
}
.contact-form .btn{ align-self:flex-start; }
.form-note{ font-size:.82rem; color: var(--text-muted); }
.form-success{
  display:none; text-align:center; padding:50px 20px; font-family: var(--ff-head); font-size:1.2rem;
}
.form-success.show{ display:block; }
.contact-form.hide{ display:none; }

/* ===================== Footer ===================== */
.site-footer{ padding: 80px 0 30px; border-top:1px solid var(--card-border); }
.footer-inner{
  display:grid; grid-template-columns: 2fr 1fr 1fr; gap:40px; margin-bottom:60px;
}
.footer-brand p{ color: var(--text-muted); margin: 16px 0 14px; max-width:280px; }
.footer-brand a{ display:block; color: var(--text-muted); margin-bottom:6px; transition: color .25s ease; }
.footer-brand a:hover{ color: var(--accent); }
.footer-col h4{ font-size:.85rem; text-transform:uppercase; letter-spacing:.06em; color: var(--text-muted); margin-bottom:18px; }
.footer-col a{ display:block; color: var(--text); margin-bottom:12px; font-size:.94rem; transition: color .25s ease; }
.footer-col a:hover{ color: var(--accent); }
.footer-bottom{ color: var(--text-muted); font-size:.85rem; text-align:center; padding-top:24px; border-top:1px solid var(--card-border); }

/* ===================== Back to top ===================== */
.back-to-top{
  position:fixed; right:24px; bottom:24px; width:46px; height:46px; border-radius:50%;
  background: var(--accent); color:#0a0b08; border:none; font-size:1.1rem;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
  z-index:90;
}
.back-to-top.show{ opacity:1; pointer-events:auto; transform: translateY(0); }

/* ===================== Reveal animation ===================== */
[data-reveal]{
  opacity:0; transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible{ opacity:1; transform: translateY(0); }
.steps [data-reveal]:nth-child(2){ transition-delay:.08s; }
.steps [data-reveal]:nth-child(3){ transition-delay:.16s; }
.benefit-grid [data-reveal]:nth-child(2){ transition-delay:.05s; }
.benefit-grid [data-reveal]:nth-child(3){ transition-delay:.1s; }
.benefit-grid [data-reveal]:nth-child(4){ transition-delay:.15s; }
.benefit-grid [data-reveal]:nth-child(6){ transition-delay:.05s; }
.benefit-grid [data-reveal]:nth-child(7){ transition-delay:.1s; }
.benefit-grid [data-reveal]:nth-child(8){ transition-delay:.15s; }
.tool-grid [data-reveal]:nth-child(2){ transition-delay:.06s; }
.tool-grid [data-reveal]:nth-child(3){ transition-delay:.12s; }
.tool-grid [data-reveal]:nth-child(4){ transition-delay:.18s; }
.pricing-grid [data-reveal]:nth-child(2){ transition-delay:.1s; }

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

/* ===================== Responsive ===================== */
@media (max-width: 1024px){
  .benefit-grid{ grid-template-columns: repeat(2,1fr); }
  .tool-grid{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px){
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .steps{ grid-template-columns:1fr; }
  .step-line{ display:none; }
  .pricing-grid{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr 1fr; }
  .footer-brand{ grid-column:1 / -1; }
}

@media (max-width: 640px){
  .section{ padding:80px 0; }
  .hero{ padding:130px 0 70px; }
  .benefit-grid{ grid-template-columns:1fr; }
  .tool-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .contact-form{ padding:28px 22px; }
  .testimonial-card{ padding:40px 26px; }
  .footer-inner{ grid-template-columns:1fr; gap:32px; }
  .price-card{ padding:32px 24px; }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .hero-cta .btn{ width:100%; }
}

@media (max-width: 420px){
  .container{ padding-inline:18px; }
  .ring-1{ width:280px; height:280px; }
  .ring-2{ width:420px; height:420px; }
  .ring-3{ width:560px; height:560px; }
}
