/* ============================================================
   Jeramyl v3 — Shared Design System
   Source of truth: extracted from index.html + interior page additions
   DO NOT add old-site variables, Manrope, or legacy landing.css overrides.
============================================================ */

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

:root {
  --deep:        #0B0A1C;
  --dark:        #13103A;
  --purple:      #6B4FBB;
  --purple-lt:   #8B6FDB;
  --lavender:    #A78BF0;
  --purple-pale: #EDE8FF;
  --white:       #FFFFFF;
  --off:         #F6F4FF;
  --ink:         #1A163A;
  --ink-mid:     #3D3672;
  --ink-muted:   #7068A0;
  --border:      #D5CEF0;
  --green:       #1A8C50;
  --green-pale:  #E4F5EC;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* ── Accessibility: focus styles ── */
:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ── reduced-motion: kill all transitions & animations ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Utilities ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 18px; height: 2px;
  background: var(--purple); border-radius: 2px; flex-shrink: 0;
}

.section-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(26px, 3.2vw, 42px); font-weight: 700;
  line-height: 1.14; letter-spacing: -.018em; color: var(--ink); margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; line-height: 1.72; color: var(--ink-muted); max-width: 560px;
}

/* Content-section headings (used in split-layout sections) */
.sect-h {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(22px, 2.8vw, 36px); font-weight: 700;
  line-height: 1.14; letter-spacing: -.018em; color: var(--ink);
  margin-bottom: 12px;
}
.sect-sub {
  font-size: 15.5px; line-height: 1.74; color: var(--ink-muted);
}

/* ── Scroll-reveal ── */
.fu {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fu.on { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--white); background: var(--purple);
  border: none; border-radius: 10px; cursor: pointer;
  box-shadow: 0 2px 10px rgba(107,79,187,.35), 0 6px 22px rgba(107,79,187,.16);
  transition: background .15s, transform .12s, box-shadow .15s;
}
.btn-primary:hover {
  background: var(--purple-lt); transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(107,79,187,.42), 0 12px 32px rgba(107,79,187,.2);
}
.btn-primary svg { width: 16px; height: 16px; transition: transform .15s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--white); background: transparent;
  border: 1.5px solid rgba(255,255,255,.28); border-radius: 10px;
  transition: border-color .15s, background .15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.07); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--ink-mid); background: transparent;
  border: 1.5px solid var(--border); border-radius: 10px;
  transition: border-color .15s, background .15s, color .15s;
}
.btn-outline-dark:hover {
  border-color: var(--purple); background: var(--purple-pale); color: var(--purple);
}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 1000;
  height: 68px; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-nav.scrolled {
  background: rgba(11,10,28,.94);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom-color: rgba(255,255,255,.07);
}

.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo  { width: 32px; height: 32px; border-radius: 7px; object-fit: cover; }
.nav-name  {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px; font-weight: 700; color: var(--white); letter-spacing: -.01em;
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link  {
  padding: 7px 14px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.66); border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.07); }

.nav-cta {
  margin-left: 10px; padding: 9px 20px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--white); background: var(--purple); border-radius: 9px;
  transition: background .15s, transform .12s;
}
.nav-cta:hover { background: var(--purple-lt); transform: translateY(-1px); }

/* ══════════════════════════════════
   HERO (homepage only)
══════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; max-height: 960px;
  display: flex; align-items: center; overflow: hidden;
  background: var(--deep);
}

.hero-img {
  position: absolute; inset: 0;
  background: url('https://d8j0ntlcm91z4.cloudfront.net/user_3DodQesXwvuTJxgmZzW9U8DZs7T/hf_20260613_124430_838c4169-a8ef-49ce-b2a2-d686dbe72f34.png') center right / cover no-repeat;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(11,10,28,.96) 0%,
    rgba(11,10,28,.90) 38%,
    rgba(11,10,28,.52) 62%,
    rgba(11,10,28,.08) 100%
  );
}

.hero-body {
  position: relative; z-index: 2;
  max-width: 660px;
  padding: 100px 40px 80px;
  margin-left: max(40px, calc((100vw - 1240px) / 2));
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(167,139,240,.1); border: 1px solid rgba(167,139,240,.26);
  border-radius: 30px; padding: 5px 14px 5px 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600; color: var(--lavender);
  letter-spacing: .04em; margin-bottom: 28px;
}
.badge-pip {
  width: 6px; height: 6px; border-radius: 50%; background: var(--lavender);
  animation: pip 2.4s ease-in-out infinite;
}
@keyframes pip {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .3; transform: scale(.65); }
}

.hero-h1 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(38px, 4.8vw, 62px); font-weight: 800;
  line-height: 1.05; letter-spacing: -.022em; color: var(--white);
  margin-bottom: 22px;
}
.hero-h1 em {
  font-style: italic; font-weight: 700; color: var(--lavender);
}

.hero-sub {
  font-size: 17.5px; line-height: 1.74; color: rgba(255,255,255,.76);
  margin-bottom: 40px; max-width: 520px;
}

.hero-actions {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px;
}

.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.42);
}
.trust-pill svg {
  width: 13px; height: 13px; stroke: var(--green);
  fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ══════════════════════════════════
   INTERIOR PAGE HERO
══════════════════════════════════ */
.page-hero {
  background: var(--deep);
  padding: calc(68px + 72px) 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(167,139,240,.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.page-hero::after {
  content: ''; position: absolute;
  bottom: -60px; right: -80px; width: 400px; height: 300px;
  background: var(--purple); border-radius: 50%;
  filter: blur(110px); opacity: .09; pointer-events: none;
}
.page-hero .section-label { color: var(--lavender); }
.page-hero .section-label::before { background: var(--lavender); }
.page-hero .page-h1 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(32px, 4.2vw, 52px); font-weight: 800;
  line-height: 1.08; letter-spacing: -.022em; color: var(--white);
  margin-bottom: 18px;
}
.page-hero .page-sub {
  font-size: 17px; line-height: 1.72;
  color: rgba(255,255,255,.58); max-width: 560px;
}
.page-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════
   FEATURES / SERVICES
══════════════════════════════════ */
.services {
  background: var(--off); padding: 100px 0; position: relative; overflow: hidden;
}
.services::after {
  content: ''; position: absolute;
  top: -120px; right: -160px; width: 500px; height: 500px;
  background: var(--purple); border-radius: 50%;
  filter: blur(140px); opacity: .06; pointer-events: none;
}

.svc-head { margin-bottom: 60px; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.svc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 20px rgba(107,79,187,.1), 0 18px 52px rgba(107,79,187,.07);
  border-color: var(--purple);
}

.svc-icon {
  width: 44px; height: 44px; border-radius: 11px; background: var(--purple-pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  transition: background .2s;
  animation: icon-breathe 3.5s ease-in-out infinite;
}
.svc-card:hover .svc-icon {
  background: var(--purple);
  animation: none;
  box-shadow: 0 0 0 6px rgba(107,79,187,.15);
}
@keyframes icon-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,79,187,.0); }
  50%       { box-shadow: 0 0 0 5px rgba(107,79,187,.1); }
}

.svc-icon svg {
  width: 20px; height: 20px; stroke: var(--purple);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .2s;
}
.svc-card:hover .svc-icon svg { stroke: var(--white); }

.svc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--ink);
  margin-bottom: 8px; letter-spacing: -.01em;
}
.svc-desc { font-size: 13.5px; line-height: 1.68; color: var(--ink-muted); }

/* ══════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════ */
.problem {
  background: var(--white); padding: 100px 0; position: relative; overflow: hidden;
}
.problem-head { margin-bottom: 48px; }

.problem-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px;
}

.prob-card {
  background: var(--off); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.prob-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 18px rgba(107,79,187,.09), 0 14px 44px rgba(107,79,187,.05);
  border-color: var(--purple);
}
.prob-q {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--ink);
  margin-bottom: 8px; letter-spacing: -.01em;
}
.prob-a { font-size: 13.5px; line-height: 1.68; color: var(--ink-muted); }

/* ══════════════════════════════════
   WHO IT'S FOR
══════════════════════════════════ */
.for-sect {
  background: var(--off); padding: 100px 0; position: relative; overflow: hidden;
}
.for-sect::before {
  content: ''; position: absolute;
  top: -80px; left: -80px; width: 400px; height: 400px;
  background: var(--purple); border-radius: 50%;
  filter: blur(130px); opacity: .05; pointer-events: none;
}
.for-head { text-align: center; margin-bottom: 56px; }
.for-head .section-label { justify-content: center; }
.for-head .section-sub { margin: 0 auto; text-align: center; }

.for-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}

.for-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 24px 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.for-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(107,79,187,.09), 0 12px 38px rgba(107,79,187,.05);
  border-color: var(--purple);
}
.for-type {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--ink);
  margin-bottom: 7px; letter-spacing: -.01em;
}
.for-desc { font-size: 13px; line-height: 1.65; color: var(--ink-muted); }

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */
.hiw {
  background: var(--dark); padding: 100px 0;
  position: relative; overflow: hidden;
}
.hiw::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(167,139,240,.1) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hiw::after {
  content: ''; position: absolute;
  bottom: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: var(--purple); border-radius: 50%;
  filter: blur(120px); opacity: .08; pointer-events: none;
}

.hiw .section-label { color: var(--lavender); }
.hiw .section-label::before { background: var(--lavender); }
.hiw .section-title { color: var(--white); }
.hiw .section-sub   { color: rgba(255,255,255,.52); }

.steps {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 44px;
  margin-top: 64px; position: relative;
}
.steps::before {
  content: ''; position: absolute;
  top: 26px;
  left: calc(100% / 6 + 12px);
  right: calc(100% / 6 + 12px);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(167,139,240,.35) 20%,
    rgba(167,139,240,.35) 80%,
    transparent
  );
}

.step { text-align: center; position: relative; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--purple); color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 19px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; position: relative; z-index: 1;
  box-shadow: 0 0 0 8px rgba(107,79,187,.14);
  animation: step-pulse 3s ease-in-out infinite;
}
.step:nth-child(2) .step-num { animation-delay: .8s; }
.step:nth-child(3) .step-num { animation-delay: 1.6s; }
@keyframes step-pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(107,79,187,.14); }
  50%       { box-shadow: 0 0 0 12px rgba(107,79,187,.08); }
}

.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--white);
  margin-bottom: 10px; letter-spacing: -.01em;
}
.step-desc { font-size: 14px; line-height: 1.72; color: rgba(255,255,255,.48); }

/* ══════════════════════════════════
   PRICING
══════════════════════════════════ */
.pricing {
  background: var(--white); padding: 100px 0;
  position: relative; overflow: hidden;
}
.pricing::before {
  content: ''; position: absolute;
  bottom: -80px; left: -80px; width: 480px; height: 480px;
  background: var(--purple); border-radius: 50%;
  filter: blur(130px); opacity: .05; pointer-events: none;
}

.pricing-head { text-align: center; margin-bottom: 60px; }
.pricing-head .section-label { justify-content: center; }
.pricing-head .section-title { margin: 0 auto 10px; }
.pricing-head .section-sub   { margin: 0 auto; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start;
}

.pcard {
  background: var(--off); border: 1px solid var(--border); border-radius: 20px;
  padding: 32px 26px; position: relative;
  transition: transform .22s ease, box-shadow .22s ease;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 28px rgba(107,79,187,.1), 0 18px 50px rgba(107,79,187,.06);
}
.pcard.hot {
  background: var(--dark); border-color: rgba(107,79,187,.55);
  transform: scale(1.04);
  box-shadow: 0 6px 28px rgba(107,79,187,.28), 0 20px 52px rgba(19,16,58,.32);
}
.pcard.hot:hover { transform: scale(1.04) translateY(-4px); }

.pcbadge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--purple); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
}

.pctier {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 10px;
}
.pcard.hot .pctier { color: var(--lavender); }

.pcprice {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 44px; font-weight: 800;
  color: var(--ink); letter-spacing: -.04em; line-height: 1; margin-bottom: 6px;
}
.pcard.hot .pcprice { color: var(--white); }
.pcprice sup { font-size: 19px; vertical-align: super; font-weight: 600; }
.pcprice span {
  font-size: 14px; font-family: 'DM Sans', sans-serif;
  font-weight: 400; color: var(--ink-muted);
}
.pcard.hot .pcprice span { color: rgba(255,255,255,.38); }

.pcdesc {
  font-size: 13px; color: var(--ink-muted); margin-bottom: 22px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pcard.hot .pcdesc { color: rgba(255,255,255,.45); border-bottom-color: rgba(255,255,255,.1); }

.pcfeats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.pcfeat  { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--ink-mid); }
.pcard.hot .pcfeat { color: rgba(255,255,255,.75); }
.pcfeat svg {
  width: 14px; height: 14px; stroke: var(--green);
  fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; margin-top: 2px;
}

.pcbtn {
  display: block; width: 100%; padding: 13px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  text-align: center; border-radius: 10px; border: none; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .12s;
}
.pcbtn-outline {
  color: var(--ink-mid); border: 1.5px solid var(--border); background: transparent;
}
.pcbtn-outline:hover {
  border-color: var(--purple); background: var(--purple-pale); color: var(--purple);
}
.pcbtn-purple { color: var(--white); background: var(--purple); }
.pcbtn-purple:hover { background: var(--purple-lt); }

/* ── Pricing toggle (annual/monthly) ── */
.pricing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 48px; }
.pricing-toggle {
  display: inline-flex;
  background: var(--off); border: 1px solid var(--border);
  border-radius: 50px; padding: 4px; gap: 2px;
}
.ptoggle-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px; border-radius: 50px; border: none;
  background: transparent; color: var(--ink-muted);
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background .18s, color .18s;
}
.ptoggle-btn.active { background: var(--purple); color: var(--white); }
.ptoggle-save {
  font-size: 10px; font-weight: 700;
  background: rgba(26,140,80,.12); color: var(--green);
  padding: 2px 8px; border-radius: 50px;
}
.ptoggle-btn.active .ptoggle-save { background: rgba(255,255,255,.18); color: var(--white); }
.pricing-period-sub {
  font-size: 11px; color: var(--green); font-weight: 600;
  margin-top: 2px; min-height: 1em; margin-bottom: 20px;
}
.pricing-cta-row { text-align: center; padding: 2rem 0 1rem; }
.pricing-cta-row p { font-size: 13px; color: var(--ink-muted); margin-top: 12px; }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq { background: var(--off); padding: 100px 0; }
.faq-head { text-align: center; margin-bottom: 56px; }
.faq-head .section-label { justify-content: center; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }

.fitem { border-bottom: 1px solid var(--border); }
.fq {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 19px 0; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--ink);
  cursor: pointer; background: none; border: none; width: 100%; text-align: left;
}
.fq-ico {
  width: 24px; height: 24px; border-radius: 50%; background: var(--purple-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .15s;
}
.fq-ico svg {
  width: 11px; height: 11px; stroke: var(--purple);
  fill: none; stroke-width: 2.5; stroke-linecap: round;
  transition: transform .22s, stroke .15s;
}
.fitem.open .fq-ico { background: var(--purple); }
.fitem.open .fq-ico svg { stroke: var(--white); transform: rotate(45deg); }

.fa {
  font-size: 14px; line-height: 1.74; color: var(--ink-muted);
  max-height: 0; overflow: hidden;
  transition: max-height .32s ease, padding .32s ease;
}
.fitem.open .fa { max-height: 220px; padding-bottom: 18px; }

/* Single-column FAQ variant */
.faq-single .faq-grid { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; gap: 12px; }

/* ── FAQ accordion: button-based card variant (.faq-item / .faq-btn / .faq-ans / .faq-icon) ── */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .18s, box-shadow .18s;
}
.faq-item:hover,
.faq-item:focus-within {
  border-color: var(--purple-lt);
  box-shadow: 0 2px 14px rgba(107,79,187,.08);
}
.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}
.faq-btn:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: -2px;
  border-radius: 15px 15px 0 0;
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--purple);
  stroke: var(--purple);
  fill: none;
  transition: transform .25s ease;
}
.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}
.faq-ans p {
  padding: 2px 22px 20px;
  font-size: 14.5px;
  line-height: 1.76;
  color: var(--ink-muted);
}

/* ══════════════════════════════════
   CTA BANNER
══════════════════════════════════ */
.ctabanner {
  background: var(--dark); padding: 88px 0; text-align: center;
  position: relative; overflow: hidden;
}
.ctabanner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(107,79,187,.12) 1px, transparent 1px);
  background-size: 24px 24px;
}
.ctabanner::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 560px; height: 280px;
  background: var(--purple); border-radius: 50%;
  filter: blur(110px); opacity: .12; pointer-events: none;
}

.ctabanner .section-label { justify-content: center; color: var(--lavender); position: relative; z-index: 1; }
.ctabanner .section-label::before { background: var(--lavender); }
.cta-h {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3.8vw, 46px); font-weight: 800;
  color: var(--white); line-height: 1.1; letter-spacing: -.022em;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.cta-sub {
  font-size: 16px; color: rgba(255,255,255,.52);
  margin-bottom: 36px; position: relative; z-index: 1;
}
.cta-acts {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-note {
  font-size: 12px; color: rgba(255,255,255,.32);
  margin-top: 16px; position: relative; z-index: 1;
}

/* ══════════════════════════════════
   TRUST / CONVERSION SECTION
══════════════════════════════════ */
.trust-sect {
  background: var(--white); padding: 100px 0;
  position: relative; overflow: hidden;
}
.trust-sect::before {
  content: ''; position: absolute;
  top: -60px; right: -100px; width: 420px; height: 420px;
  background: var(--purple); border-radius: 50%;
  filter: blur(130px); opacity: .05; pointer-events: none;
}

.trust-head { margin-bottom: 56px; }
.trust-head .section-sub { max-width: 580px; }

.trust-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 60px;
}

.tcard {
  background: var(--off); border: 1px solid var(--border); border-radius: 16px;
  padding: 26px 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 18px rgba(107,79,187,.1), 0 14px 44px rgba(107,79,187,.06);
  border-color: var(--purple);
}
.tcard-icon {
  width: 42px; height: 42px; border-radius: 10px; background: var(--purple-pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  transition: background .2s;
}
.tcard:hover .tcard-icon { background: var(--purple); }
.tcard-icon svg {
  width: 19px; height: 19px; stroke: var(--purple);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .2s;
}
.tcard:hover .tcard-icon svg { stroke: var(--white); }
.tcard-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--ink);
  margin-bottom: 7px; letter-spacing: -.01em;
}
.tcard-desc { font-size: 13px; line-height: 1.65; color: var(--ink-muted); }

.trust-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  border: 1px solid var(--border); border-radius: 14px;
  background: var(--off); overflow: hidden;
}
.tstrip-item {
  flex: 1; min-width: 200px;
  display: flex; align-items: center; gap: 9px;
  padding: 18px 22px;
  font-size: 13px; font-weight: 500; color: var(--ink-mid);
  border-right: 1px solid var(--border);
}
.tstrip-item:last-child { border-right: none; }
.tstrip-item svg {
  width: 15px; height: 15px; stroke: var(--purple);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ══════════════════════════════════
   CONTENT SECTIONS (interior pages)
══════════════════════════════════ */
.content-sect {
  background: var(--white); padding: 88px 0; position: relative; overflow: hidden;
}
.content-sect.off-bg { background: var(--off); }
.content-sect.dark-bg {
  background: var(--dark);
}
.content-sect.dark-bg .section-label { color: var(--lavender); }
.content-sect.dark-bg .section-label::before { background: var(--lavender); }
.content-sect.dark-bg .section-title { color: var(--white); }
.content-sect.dark-bg .section-sub { color: rgba(255,255,255,.55); }

.content-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}

/* Feature list with check icons */
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.feat-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; line-height: 1.6; color: var(--ink-mid);
}
.feat-list li svg {
  width: 16px; height: 16px; stroke: var(--green);
  fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; margin-top: 3px;
}

/* Centered section head */
.sect-center { text-align: center; }
.sect-center .section-label { justify-content: center; }
.sect-center .section-sub { margin: 0 auto; }

/* Feature icon box (large cards) */
.feat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(107,79,187,.1), 0 16px 48px rgba(107,79,187,.07);
  border-color: var(--purple);
}
.feat-card-icon {
  width: 44px; height: 44px; border-radius: 11px; background: var(--purple-pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  transition: background .2s;
}
.feat-card:hover .feat-card-icon { background: var(--purple); }
.feat-card-icon svg {
  width: 20px; height: 20px; stroke: var(--purple);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .2s;
}
.feat-card:hover .feat-card-icon svg { stroke: var(--white); }
.feat-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--ink);
  margin-bottom: 8px; letter-spacing: -.01em;
}
.feat-card-desc { font-size: 13.5px; line-height: 1.68; color: var(--ink-muted); }

/* ══════════════════════════════════
   PROSE PAGES (privacy, terms, etc.)
══════════════════════════════════ */
.prose-page { background: var(--white); padding: calc(68px + 60px) 0 80px; }
.prose-body { max-width: 780px; }
.prose-body h1 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800;
  line-height: 1.1; letter-spacing: -.02em; color: var(--ink);
  margin-bottom: 10px;
}
.prose-date {
  font-size: 13px; color: var(--ink-muted); margin-bottom: 40px;
  display: block; border-bottom: 1px solid var(--border); padding-bottom: 24px;
}
.prose-body h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--ink);
  margin: 40px 0 10px; letter-spacing: -.01em;
}
.prose-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--ink);
  margin: 24px 0 8px;
}
.prose-body p {
  font-size: 15px; line-height: 1.75; color: var(--ink-muted); margin-bottom: 16px;
}
.prose-body ul, .prose-body ol {
  padding-left: 22px; margin-bottom: 16px;
}
.prose-body li {
  font-size: 15px; line-height: 1.75; color: var(--ink-muted); margin-bottom: 6px;
}
.prose-body a { color: var(--purple); text-decoration: underline; }
.prose-body a:hover { color: var(--purple-lt); }
.prose-body strong { color: var(--ink); font-weight: 600; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer { background: var(--deep); padding: 60px 0 32px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 28px;
}
.footer-top-4col { grid-template-columns: 2fr 1fr 1fr 1fr; }

.fbrand { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.flogo  { width: 28px; height: 28px; border-radius: 6px; object-fit: cover; }
.fname  {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--white);
}
.ftagline {
  font-size: 13px; line-height: 1.68;
  color: rgba(255,255,255,.36); max-width: 240px;
}

.fcol-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(255,255,255,.26); margin-bottom: 16px;
}
.flinks { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.flink { font-size: 13px; color: rgba(255,255,255,.44); transition: color .15s; }
.flink:hover { color: var(--white); }
.fsoc-link { display: inline-flex; align-items: center; color: rgba(255,255,255,.65); transition: color .18s; }
.fsoc-link:hover { color: var(--lavender); }
.fsoc-link svg { width: 22px; height: 22px; }

.footer-btm {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.fcopy { font-size: 12px; color: rgba(255,255,255,.22); }
.flegal { display: flex; gap: 18px; }
.flegal a { font-size: 12px; color: rgba(255,255,255,.22); transition: color .15s; }
.flegal a:hover { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .container  { padding: 0 28px; }
  .site-nav   { padding: 0 28px; }
  .hero-body  { padding: 100px 28px 80px; margin-left: 28px; }
  .svc-grid, .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .pcard.hot  { transform: none; }
  .pcard.hot:hover { transform: translateY(-4px); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-top-4col { grid-template-columns: 1fr 1fr 1fr; }
  .problem-cards { grid-template-columns: repeat(3,1fr); }
  .for-grid   { grid-template-columns: repeat(2,1fr); }
  .content-split { gap: 48px; }
}

@media (max-width: 768px) {
  .container  { padding: 0 20px; }
  .site-nav   { padding: 0 20px; }
  .nav-link   { display: none; }
  .hero-body  { padding: 90px 20px 60px; margin-left: 0; max-width: 100%; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(11,10,28,.94) 0%,
      rgba(11,10,28,.80) 100%
    );
  }
  .hero-h1    { font-size: clamp(32px, 8vw, 48px); }
  .steps      { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { display: none; }
  .svc-grid, .pricing-grid, .faq-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .tstrip-item { border-right: none; border-bottom: 1px solid var(--border); }
  .tstrip-item:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-top-4col { grid-template-columns: 1fr 1fr; gap: 28px; }
  .services, .hiw, .pricing, .faq, .trust-sect, .ctabanner, .problem, .for-sect,
  .content-sect { padding-top: 72px; padding-bottom: 72px; }
  .problem-cards { grid-template-columns: 1fr; }
  .for-grid   { grid-template-columns: 1fr; }
  .content-split { grid-template-columns: 1fr; gap: 36px; }
  .page-hero  { padding: calc(68px + 48px) 0 60px; }
  .faq-grid   { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 10px; align-items: flex-start; }
  .cta-h { font-size: clamp(24px, 7vw, 32px); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-top-4col { grid-template-columns: 1fr; gap: 24px; }
  .footer-btm { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .page-cta { flex-direction: column; }
  .page-cta .btn-primary, .page-cta .btn-ghost,
  .page-cta .btn-outline-dark { width: 100%; justify-content: center; }
  .svc-grid, .for-grid, .problem-cards { grid-template-columns: 1fr; }
}
