/* =========================================================
   Strategic Code Partners - Agency site styles
   Sections: tokens · base · buttons · header · hero ·
   sections · cards · split · steps · work · pricing ·
   quotes · faq · cta/form · footer · reveal · responsive
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Type: Arial system stack throughout */
  --font-sans: Arial, "Helvetica Neue", Helvetica, "Segoe UI", sans-serif;
  --font-display: Arial, "Helvetica Neue", Helvetica, "Segoe UI", sans-serif;

  /* Brand: ink navy + sapphire blue */
  --accent: #2f6fed;
  --accent-2: #6aa5ff;
  --accent-grad: linear-gradient(120deg, #1d4ed8 0%, #2f6fed 45%, #7cc0ff 100%);
  --on-accent: #ffffff;

  /* Dark theme (default) */
  --bg: #0a0c12;
  --bg-2: #0f1219;
  --surface: #131722;
  --surface-2: #1a1f2d;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #ecedf2;
  --muted: #9aa1b2;
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-sm: 0 8px 24px -12px rgba(0, 0, 0, 0.6);

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1160px;
  --pad: clamp(1.1rem, 4vw, 2rem);
}

:root[data-theme="light"] {
  --accent: #1d4ed8;
  --accent-2: #2563eb;
  --accent-grad: linear-gradient(120deg, #1e40af 0%, #1d4ed8 50%, #3b82f6 100%);
  --bg: #ffffff;
  --bg-2: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #f1f4fa;
  --border: rgba(15, 23, 42, 0.10);
  --border-strong: rgba(15, 23, 42, 0.18);
  --text: #0f172a;
  --muted: #55617a;
  --shadow: 0 24px 60px -28px rgba(15, 23, 42, 0.28);
  --shadow-sm: 0 10px 28px -16px rgba(15, 23, 42, 0.20);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.container--narrow { max-width: 820px; }

.grad {
  background: var(--accent-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: .9rem;
}
:root[data-theme="light"] .eyebrow { color: var(--accent); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--accent); color: var(--on-accent); padding: .6rem 1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .72rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: .95rem 1.7rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary {
  position: relative; overflow: hidden;
  color: var(--on-accent);
  background: var(--accent-grad);
  background-size: 160% 160%;
  box-shadow: 0 10px 30px -10px rgba(47, 111, 237, .55);
}
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg); transition: left .6s ease; pointer-events: none;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(47, 111, 237, .65); background-position: 100% 0; }
.btn--primary:hover::after { left: 130%; }
.btn--ghost { color: var(--text); background: transparent; border-color: var(--border-strong); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, transparent); }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 3px; width: 0;
  background: var(--accent-grad);
  pointer-events: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.nav { display: flex; align-items: center; gap: 1.5rem; height: 70px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.brand__mark svg rect { fill: var(--accent); }
.brand__mark { display: grid; place-items: center; filter: drop-shadow(0 6px 14px rgba(47,111,237,.4)); }

.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: .95rem; position: relative; transition: color .2s ease; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--accent-grad); transition: width .25s ease; }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: .7rem; margin-left: 0; }
.nav__links + .nav__actions { margin-left: 1rem; }

.theme-toggle {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  transition: border-color .2s ease, transform .2s ease;
}
.theme-toggle:hover { border-color: var(--accent); transform: rotate(-12deg); }
.icon-moon { display: none; }
:root[data-theme="light"] .icon-sun { display: none; }
:root[data-theme="light"] .icon-moon { display: block; }

.nav__burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); padding: 0; align-items: center; justify-content: center; }
.nav__burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; gap: .25rem; padding: 1rem var(--pad) 1.4rem; border-top: 1px solid var(--border); background: var(--bg); }
.mobile-menu a { padding: .8rem .4rem; color: var(--muted); font-weight: 500; border-radius: 10px; }
.mobile-menu a:hover { color: var(--text); background: var(--surface); }
.mobile-menu .btn { margin-top: .5rem; color: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem); overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% -10% auto -10%; height: 620px; z-index: 0;
  background:
    radial-gradient(45% 55% at 20% 30%, rgba(47,111,237,.30), transparent 70%),
    radial-gradient(40% 55% at 80% 20%, rgba(124,192,255,.20), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  animation: breathe 9s ease-in-out infinite;
}
:root[data-theme="light"] .hero__glow {
  background:
    radial-gradient(45% 55% at 18% 25%, rgba(29,78,216,.16), transparent 70%),
    radial-gradient(42% 55% at 82% 18%, rgba(59,130,246,.14), transparent 70%);
}
@keyframes breathe { 0%, 100% { opacity: .8; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__title { font-size: clamp(2.3rem, 5.4vw, 3.9rem); font-weight: 800; margin-bottom: 1.2rem; }
.hero__lead { color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 34ch; margin-bottom: 1.8rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.hero__points { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; color: var(--muted); font-size: .92rem; }
.hero__points li { display: inline-flex; align-items: center; gap: .5rem; }
.hero__points svg { color: var(--accent-2); }

/* Hero visual mockups */
.hero__visual { position: relative; min-height: 360px; }
.mock { position: absolute; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.mock--site { inset: 0 8% 12% 0; padding: 0; overflow: hidden; animation: float 7s ease-in-out infinite; }
.mock__bar { display: flex; align-items: center; gap: .4rem; padding: .7rem .9rem; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.mock__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.mock__bar em { margin-left: .6rem; font-style: normal; font-size: .72rem; color: var(--muted); }
.mock__body { padding: 1rem; }
.mock__hero { height: 92px; border-radius: 10px; background: var(--accent-grad); opacity: .85; margin-bottom: .8rem; }
.mock__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-bottom: .9rem; }
.mock__row i { height: 44px; border-radius: 8px; background: var(--surface-2); border: 1px solid var(--border); }
.mock__lines b { display: block; height: 9px; border-radius: 5px; background: var(--surface-2); margin-bottom: .5rem; }
.mock__lines b.short { width: 55%; }

.mock--admin {
  right: -2%; bottom: 0; width: 54%; padding: 1rem; z-index: 2;
  background: color-mix(in srgb, var(--surface) 92%, var(--accent) 8%);
  border-color: var(--border-strong);
  animation: float 7s ease-in-out infinite reverse;
}
.mock__admin-head { display: flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 600; font-size: .85rem; margin-bottom: .8rem; }
.mock__admin-head .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; animation: pingdot 2.4s ease-out infinite; }
@keyframes pingdot {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, .45); }
  70% { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.mock__stat { display: flex; justify-content: space-between; align-items: center; padding: .55rem .7rem; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--border); margin-bottom: .5rem; font-size: .82rem; color: var(--muted); }
.mock__stat strong { color: var(--text); font-size: 1rem; }
.mock__btn { margin-top: .7rem; text-align: center; padding: .55rem; border-radius: 10px; font-size: .82rem; font-weight: 600; color: var(--on-accent); background: var(--accent-grad); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Trust strip */
.trust { display: flex; align-items: center; gap: 1.5rem; margin-top: clamp(2.5rem, 6vw, 4rem); flex-wrap: wrap; }
.trust > span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.trust__row { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; }
.trust__row em { font-style: normal; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--muted); opacity: .8; transition: color .2s, opacity .2s; }
.trust__row em:hover { color: var(--text); opacity: 1; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 9vw, 6.5rem) 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--border); }
.section__head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section__head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: .8rem; }
.section__sub { color: var(--muted); font-size: 1.08rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  position: relative; padding: 1.8rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.card--featured { background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 12%, var(--surface)), var(--surface)); border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); }
.card__flag { position: absolute; top: -11px; left: 1.8rem; font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--on-accent); background: var(--accent-grad); padding: .3rem .7rem; border-radius: 999px; }
.card__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1.1rem; color: var(--accent-2); background: color-mix(in srgb, var(--accent) 14%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); transition: transform .35s ease; }
.card:hover .card__icon { transform: translateY(-4px) rotate(-4deg); }
:root[data-theme="light"] .card__icon { color: var(--accent); }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.3rem; margin-bottom: .55rem; }
.card p { color: var(--muted); margin-bottom: 1.1rem; }

.ticks { display: grid; gap: .55rem; }
.ticks li { position: relative; padding-left: 1.6rem; color: var(--text); font-size: .93rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 16px; height: 16px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f6fed' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}

/* ---------- Split / value ---------- */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split__copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 1rem; }
.split__copy p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.6rem; }
.stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2.4rem; }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem); background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: .9rem; }

.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow); }
.panel__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.panel__label { font-family: var(--font-display); font-weight: 600; }
.panel__pill { font-size: .72rem; font-weight: 600; color: #34d399; background: rgba(52,211,153,.14); padding: .2rem .6rem; border-radius: 999px; }
.panel__item { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .8rem; padding: .7rem; border-radius: 12px; border: 1px solid var(--border); margin-bottom: .6rem; }
.panel__item i { width: 38px; height: 38px; border-radius: 9px; background: var(--accent-grad); opacity: .85; }
.panel__item b { display: block; height: 9px; width: 70%; border-radius: 5px; background: var(--surface-2); margin-bottom: .4rem; }
.panel__item s { display: block; height: 8px; width: 45%; border-radius: 5px; background: var(--surface-2); }
.panel__item em { font-style: normal; font-family: var(--font-display); font-weight: 600; }
.panel__cta { margin-top: .4rem; text-align: center; padding: .6rem; border-radius: 12px; color: var(--on-accent); font-weight: 600; background: var(--accent-grad); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: step; }
.step { position: relative; padding: 1.6rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: transform .3s ease, border-color .3s; }
.step:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .9; }
.step h3 { font-size: 1.2rem; margin: .8rem 0 .5rem; }
.step p { color: var(--muted); font-size: .93rem; }

/* ---------- Done-for-you statement ---------- */
.statement { position: relative; overflow: hidden; }
.statement::before {
  content: ""; position: absolute; inset: auto -20% -60% -20%; height: 480px; pointer-events: none;
  background: radial-gradient(50% 60% at 50% 100%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%);
}
.statement__inner { position: relative; max-width: 760px; margin-inline: auto; text-align: center; }
.statement__title { font-size: clamp(1.9rem, 4.4vw, 3.1rem); font-weight: 800; margin-bottom: 1.1rem; }
.statement__sub { color: var(--muted); font-size: 1.1rem; max-width: 56ch; margin: 0 auto 2rem; }
.handled { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-bottom: 2.2rem; }
.handled li {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border-radius: 999px; font-size: .9rem; font-weight: 500;
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color .25s ease, transform .25s ease;
}
.handled li:hover { border-color: var(--accent); transform: translateY(-2px); }
.handled svg { color: var(--accent-2); flex: none; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.member {
  padding: 1.6rem; border-radius: var(--radius); text-align: center;
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.member:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.member__photo {
  width: 132px; height: 132px; border-radius: 50%; margin: 0 auto 1.2rem;
  object-fit: cover; border: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: 0 10px 30px -12px rgba(47, 111, 237, .45);
  transition: transform .3s ease;
}
.member:hover .member__photo { transform: scale(1.05); }
.member__photo--placeholder {
  display: grid; place-items: center;
  background: var(--accent-grad);
}
.member__photo--placeholder span { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--on-accent); }
.member h3 { font-size: 1.15rem; margin-bottom: .2rem; }
.member__role { display: block; font-size: .85rem; font-weight: 600; color: var(--accent-2); margin-bottom: .7rem; }
:root[data-theme="light"] .member__role { color: var(--accent); }
.member p { color: var(--muted); font-size: .92rem; max-width: 30ch; margin-inline: auto; }

/* ---------- Free demo / risk-free start ---------- */
.freebie {
  padding: clamp(2rem, 5vw, 3.4rem);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(120% 140% at 50% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 60%),
    var(--surface);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  box-shadow: var(--shadow);
}
.freebie__head { max-width: 640px; margin: 0 auto clamp(1.8rem, 4vw, 2.6rem); text-align: center; }
.freebie__head h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); margin-bottom: .9rem; }
.freebie__head p { color: var(--muted); font-size: 1.06rem; }

.paysteps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: clamp(1.8rem, 4vw, 2.4rem); }
.paystep {
  position: relative; padding: 1.6rem; border-radius: var(--radius); text-align: center;
  background: var(--bg-2); border: 1px solid var(--border);
  transition: transform .3s ease, border-color .3s ease;
}
.paystep:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.paystep__badge {
  display: inline-grid; place-items: center; min-width: 74px; height: 74px; padding-inline: .8rem;
  border-radius: 50%; margin-bottom: 1rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--on-accent);
  background: var(--accent-grad);
  box-shadow: 0 12px 30px -12px rgba(47, 111, 237, .6);
  transition: transform .3s ease;
}
.paystep:hover .paystep__badge { transform: scale(1.08); }
.paystep h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.paystep p { color: var(--muted); font-size: .93rem; max-width: 30ch; margin-inline: auto; }
.paystep:not(:last-child)::after {
  content: ""; position: absolute; top: 50%; right: -1.05rem; width: .85rem; height: 2px;
  background: var(--border-strong);
}
.freebie__cta { display: flex; flex-direction: column; align-items: center; gap: .7rem; }
.freebie__note { color: var(--muted); font-size: .88rem; }

.inline-link { color: var(--accent-2); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.inline-link:hover { color: var(--accent); }
:root[data-theme="light"] .inline-link { color: var(--accent); }

/* ---------- Pricing ---------- */
.pricing__promise {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.1rem;
  padding: .6rem 1.1rem; border-radius: 999px; font-size: .92rem; font-weight: 600;
  color: var(--text); background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
}
.pricing__promise svg { color: var(--accent-2); flex: none; }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: start; }
.price { position: relative; padding: 1.9rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: transform .3s ease, border-color .3s; }
.price:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.price--featured { background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 12%, var(--surface)), var(--surface)); border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); box-shadow: var(--shadow); }
.price__flag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--on-accent); background: var(--accent-grad); padding: .3rem .8rem; border-radius: 999px; }
.price h3 { font-size: 1.35rem; margin-bottom: .3rem; }
.price__for { color: var(--muted); font-size: .9rem; margin-bottom: 1.1rem; }
.price__amount { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; margin-bottom: 1.3rem; letter-spacing: -.02em; }
.price__speed {
  display: inline-flex; align-items: center; gap: .45rem;
  margin: -0.6rem 0 1.2rem; padding: .4rem .85rem; border-radius: 999px;
  font-size: .84rem; font-weight: 600; color: var(--text);
  background: color-mix(in srgb, var(--accent-2) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-2) 38%, transparent);
}
.price__speed svg { color: var(--accent-2); flex: none; }
.price__amount span { font-size: .85rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price .ticks { margin-bottom: 1.6rem; }

/* ---------- Guarantees ---------- */
.promises { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.promise {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
  padding: 1.7rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.promise:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.promise__icon {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  color: var(--accent-2);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  grid-row: span 2;
  transition: transform .35s ease;
}
.promise:hover .promise__icon { transform: scale(1.1); }
:root[data-theme="light"] .promise__icon { color: var(--accent); }
.promise__icon svg { width: 24px; height: 24px; }
.promise h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.promise p { color: var(--muted); font-size: .95rem; grid-column: 2; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0 1.3rem; transition: border-color .25s ease; }
.faq__item[open] { border-color: var(--border-strong); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; cursor: pointer; list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { position: relative; width: 14px; height: 14px; flex: none; }
.faq__chev::before, .faq__chev::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; border-radius: 2px; background: var(--accent-2); transform: translate(-50%, -50%); transition: transform .25s ease; }
.faq__chev::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__chev::after { transform: translate(-50%, -50%) rotate(0); }
.faq__item p { color: var(--muted); padding-bottom: 1.2rem; margin-top: -.2rem; max-width: 62ch; }

/* ---------- CTA / contact ---------- */
.cta-section { padding-bottom: clamp(4rem, 9vw, 7rem); }
.cta {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(2rem, 5vw, 3.4rem);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(120% 140% at 0% 0%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 55%),
    var(--surface);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
}
.cta__copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: .8rem; }
.cta__copy p { color: var(--muted); margin-bottom: 1.6rem; }
.cta__contacts { display: grid; gap: .7rem; }
.cta__contacts li { display: flex; align-items: center; gap: .6rem; color: var(--muted); font-size: .95rem; }
.cta__contacts svg { color: var(--accent-2); flex: none; }

.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--text); }
.field input, .field textarea {
  width: 100%; padding: .8rem .95rem; border-radius: 12px;
  background: var(--bg-2); border: 1px solid var(--border); color: var(--text);
  font: inherit; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--muted) 80%, transparent); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent); }
.field textarea { resize: vertical; min-height: 96px; }
.form-note { margin-top: .8rem; font-size: .9rem; min-height: 1.2em; }
.form-note.ok { color: #34d399; }
.form-note.err { color: #fb7185; }

/* ---------- Payments ---------- */
.pay__row { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.pay__copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .8rem; }
.pay__copy p { color: var(--muted); max-width: 52ch; }
.pay__actions { display: flex; flex-direction: column; gap: .8rem; }
.pay__note { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; color: var(--muted); font-size: .85rem; }
.pay__note svg { color: var(--accent-2); flex: none; }
@media (max-width: 960px) {
  .pay__row { grid-template-columns: 1fr; }
  .pay__actions { max-width: 420px; }
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: clamp(2.5rem, 6vw, 4rem) 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer__brand p { color: var(--muted); font-size: .92rem; margin-top: .9rem; max-width: 34ch; }
.footer__col h4 { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.footer__col a { display: block; color: var(--text); font-size: .93rem; padding: .28rem 0; transition: color .2s ease; }
.footer__col a:hover { color: var(--accent-2); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border); color: var(--muted); font-size: .85rem; flex-wrap: wrap; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } .mock--site, .mock--admin { animation: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 300px; max-width: 460px; margin-top: 1rem; }
  .hero__lead { max-width: 48ch; }
  .cards, .pricing { grid-template-columns: repeat(2, 1fr); }
  .steps, .team { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__media { order: 2; }
  .cta { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__actions { margin-left: auto; }
  .mobile-menu.open { display: flex; }
  .promises { grid-template-columns: 1fr; }
  .paysteps { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .paystep:not(:last-child)::after { top: auto; bottom: -1.05rem; right: 50%; width: 2px; height: .85rem; }
}

@media (max-width: 560px) {
  .cards, .pricing, .steps, .team { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .price--featured { order: -1; }
  .hero__cta .btn { flex: 1; }
}
