/* =====================================================
   בדיקה. — עיצוב Trust & Authority
   Navy #1E3A8A + Gold #F59E0B · Frank Ruhl Libre + Heebo
   ===================================================== */
:root {
  --navy-950: #081226;
  --navy-900: #0B1B33;
  --navy-800: #10254A;
  --navy-700: #16305E;
  --primary: #1E3A8A;
  --primary-hover: #16307A;
  --blue-link: #1D4ED8;
  --gold: #F59E0B;
  --gold-deep: #B45309;
  --gold-soft: #FEF3C7;
  --gold-ink: #92400E;
  --ink: #0F172A;
  --body: #334155;
  --muted: #475569;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --success: #15803D;
  --success-soft: #DCFCE7;
  --danger: #B91C1C;
  --danger-soft: #FEE2E2;
  --warn: #B45309;
  --warn-soft: #FEF3C7;
  --info-soft: #DBEAFE;
  --wa: #047857;
  --wa-hover: #065F46;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, .08), 0 2px 4px rgba(15, 23, 42, .05);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, .14), 0 4px 10px rgba(15, 23, 42, .07);
  --shadow-xl: 0 24px 60px rgba(8, 18, 38, .28);
  --font-head: 'Frank Ruhl Libre', 'Heebo', serif;
  --font-body: 'Heebo', system-ui, sans-serif;
  --space-1: 8px; --space-2: 16px; --space-3: 24px; --space-4: 32px;
  --space-5: 40px; --space-6: 48px; --space-8: 64px; --space-10: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
h1, h2, h3 { font-family: var(--font-head); color: var(--ink); line-height: 1.25; margin: 0 0 var(--space-2); font-weight: 700; }
p { margin: 0 0 var(--space-2); }
ul, ol { margin: 0; padding: 0; }
a { color: var(--blue-link); }

.container { max-width: 1180px; margin-inline: auto; padding-inline: 20px; }

/* --- accessibility helpers --- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; inset-inline-start: 16px; top: -60px; z-index: 1000;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 10px;
  font-weight: 700; text-decoration: none; transition: top .2s ease;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--blue-link); outline-offset: 2px; border-radius: 4px; }
.hero :focus-visible, .final-cta :focus-visible, .trust-strip :focus-visible { outline-color: var(--gold); }

/* =============== header =============== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; gap: var(--space-3); min-height: 74px; }
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-icon { width: 34px; height: 34px; color: var(--primary); align-self: center; flex-shrink: 0; }
.brand-text { font-family: var(--font-head); font-weight: 900; font-size: 1.6rem; color: var(--ink); }
.brand-dot { color: var(--gold); }
.brand-tag { font-size: .78rem; color: var(--muted); font-weight: 500; display: none; }
@media (min-width: 900px) { .brand-tag { display: inline; } }

.main-nav { margin-inline-start: auto; }
.nav-toggle {
  display: none; align-items: center; gap: 8px; cursor: pointer;
  background: none; border: 1px solid var(--border-strong); border-radius: 10px;
  padding: 8px 14px; font: inherit; font-weight: 600; color: var(--ink); min-height: 44px;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-list { display: flex; gap: 4px; list-style: none; }
.nav-list a {
  display: block; padding: 10px 14px; border-radius: 10px; text-decoration: none;
  color: var(--ink); font-weight: 600; font-size: .95rem; transition: background .15s ease;
}
.nav-list a:hover { background: var(--info-soft); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; min-height: 48px; border-radius: 12px; border: 2px solid transparent;
  font: inherit; font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: var(--wa-hover); }
.btn-gold { background: var(--gold); color: var(--navy-950); }
.btn-gold:hover { background: #FBBF24; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--info-soft); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); }
.btn-phone { background: var(--navy-900); color: #fff; padding: 10px 18px; font-size: .95rem; }
.btn-phone:hover { background: var(--navy-700); }
.btn-lg { padding: 15px 30px; font-size: 1.08rem; min-height: 54px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    display: none; position: absolute; top: 100%; inset-inline: 0;
    flex-direction: column; background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg); padding: 10px 20px 18px; gap: 2px;
  }
  .nav-list.open { display: flex; }
  .nav-list a { padding: 14px; font-size: 1.05rem; }
  .brand-tag { display: none; }
  .btn-phone bdi { display: none; }
  .btn-phone { padding: 10px 13px; }
}

/* =============== hero =============== */
.hero {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(245, 158, 11, .16), transparent 60%),
    radial-gradient(700px 450px at 8% 110%, rgba(29, 78, 216, .25), transparent 55%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: #E2E8F0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
}
.hero-grid {
  position: relative; display: grid; gap: var(--space-6);
  padding-block: clamp(56px, 8vw, 104px);
}
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.15fr .85fr; align-items: center; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245, 158, 11, .14); border: 1px solid rgba(245, 158, 11, .4);
  color: #FCD34D; font-weight: 600; font-size: .92rem;
  padding: 7px 16px; border-radius: 999px; margin-bottom: var(--space-3);
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,.5);} 50% { box-shadow: 0 0 0 7px rgba(245,158,11,0);} }

.hero h1 {
  color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.45rem); font-weight: 900;
  letter-spacing: -.5px; margin-bottom: var(--space-3);
}
.hero h1 em { font-style: normal; color: var(--gold); position: relative; white-space: nowrap; }
.hero-sub { font-size: 1.13rem; max-width: 56ch; color: #CBD5E1; }
.hero-sub strong { color: #fff; font-weight: 700; }
.hero-points { list-style: none; margin: var(--space-3) 0 var(--space-4); display: grid; gap: 10px; }
.hero-points li { display: flex; align-items: start; gap: 10px; color: #E2E8F0; font-weight: 500; }
.hero-points li::before {
  content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23F59E0B' fill-opacity='.18'/%3E%3Cpath fill='none' stroke='%23F59E0B' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='m7.5 12.5 3 3 6-7'/%3E%3C/svg%3E") center/contain no-repeat;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.hero-note { margin-top: var(--space-2); font-size: .88rem; color: #94A3B8; }

/* --- checker card --- */
.checker-card {
  background: var(--surface); color: var(--body);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  padding: clamp(24px, 3.5vw, 36px);
  border-top: 5px solid var(--gold);
  scroll-margin-top: 100px;
}
.checker-head { text-align: center; margin-bottom: var(--space-3); }
.checker-icon { width: 52px; height: 52px; color: var(--primary); margin-bottom: 6px; }
.checker-card h2 { font-size: 1.5rem; margin-bottom: 6px; }
.checker-head p { color: var(--muted); font-size: .97rem; margin: 0; }
#check-form label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
#check-form label.consent-row { font-weight: 400; }
#site-url, #email {
  width: 100%; min-height: 52px; padding: 12px 16px;
  border: 2px solid var(--border-strong); border-radius: 12px;
  font: inherit; font-size: 1rem; color: var(--ink); background: #fff;
  transition: border-color .15s ease;
}
#site-url:focus, #email:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(30, 58, 138, .18); }
#site-url::placeholder, #email::placeholder { color: #94A3B8; }
.field-hint { font-size: .85rem; color: var(--muted); margin: 8px 0 16px; }
.consent-row {
  display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 18px;
  font-size: .9rem; color: var(--muted); line-height: 1.55; cursor: pointer;
}
.consent-row input[type=checkbox] {
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; cursor: pointer;
  accent-color: var(--primary);
}
.btn-block { width: 100%; }
.field-error {
  margin: 10px 0 0; padding: 12px 14px; border-radius: 10px; font-weight: 600;
  background: var(--danger-soft); color: var(--danger); border: 1px solid #FCA5A5;
}
.check-progress { margin-top: var(--space-3); }
.progress-bar { height: 8px; background: var(--border); border-radius: 999px; overflow: hidden; }
.progress-fill {
  height: 100%; width: 8%; border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--blue-link), var(--gold));
  transition: width .6s ease;
}
#progress-text { margin: 10px 0 0; font-weight: 600; color: var(--primary); font-size: .95rem; }

/* --- trust strip --- */
.trust-strip { position: relative; background: rgba(8, 18, 38, .55); border-top: 1px solid rgba(255,255,255,.08); padding-block: 14px; }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; }
.trust-label { font-size: .85rem; color: #94A3B8; font-weight: 600; }
.trust-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; }
.trust-chips li {
  font-size: .82rem; font-weight: 600; color: #FCD34D;
  border: 1px solid rgba(245, 158, 11, .35); border-radius: 999px; padding: 4px 12px;
}

/* =============== sections rhythm =============== */
section { padding-block: clamp(60px, 8vw, 104px); }
.section-eyebrow {
  display: inline-block; color: var(--gold-deep); font-weight: 700; font-size: .9rem;
  letter-spacing: .04em; margin-bottom: 10px;
  padding-inline-start: 34px; position: relative;
}
.section-eyebrow::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 50%;
  width: 26px; height: 3px; border-radius: 2px; background: var(--gold); transform: translateY(-50%);
}
section h2 { font-size: clamp(1.65rem, 3.2vw, 2.35rem); max-width: 30ch; }
.section-lead { font-size: 1.1rem; max-width: 70ch; color: var(--muted); margin-bottom: var(--space-5); }

/* =============== results =============== */
.results { background: #fff; border-bottom: 1px solid var(--border); padding-block: clamp(48px, 6vw, 80px); }
.results h2 { margin-bottom: var(--space-4); }
.result-summary {
  display: grid; gap: var(--space-4); margin-bottom: var(--space-5);
  align-items: center;
}
@media (min-width: 800px) { .result-summary { grid-template-columns: auto 1fr; } }
.score-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.score-gauge { position: relative; width: 156px; height: 156px; }
.score-gauge svg { transform: rotate(-90deg); }
.score-track { fill: none; stroke: var(--border); stroke-width: 11; }
.score-arc { fill: none; stroke-width: 11; stroke-linecap: round; transition: stroke-dashoffset 1s ease; }
.score-num {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; font-family: var(--font-head);
}
.score-num strong { font-size: 2.6rem; font-weight: 900; color: var(--ink); line-height: 1; }
.score-num span { font-size: .8rem; color: var(--muted); font-family: var(--font-body); }
.grade-pill { font-weight: 800; padding: 6px 18px; border-radius: 999px; font-size: .95rem; }
.grade-ok { background: var(--success-soft); color: var(--success); }
.grade-warn { background: var(--warn-soft); color: var(--gold-ink); }
.grade-risk { background: #FFEDD5; color: #9A3412; }
.grade-danger { background: var(--danger-soft); color: var(--danger); }

.summary-box h3 { font-size: 1.25rem; margin-bottom: 8px; }
.checked-url { direction: ltr; unicode-bidi: isolate; font-weight: 600; color: var(--primary); word-break: break-all; }
.site-type-chip {
  display: inline-block; background: var(--info-soft); color: var(--primary);
  border-radius: 999px; padding: 3px 12px; font-size: .82rem; font-weight: 700; margin-inline-start: 8px;
}
.sev-totals { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-2); list-style: none; }
.sev-totals li { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; font-weight: 700; padding: 5px 13px; border-radius: 999px; }
.sev-critical { background: var(--danger-soft); color: var(--danger); }
.sev-high { background: #FFEDD5; color: #9A3412; }
.sev-medium { background: var(--warn-soft); color: var(--gold-ink); }
.sev-low { background: var(--info-soft); color: var(--primary); }

.cat-block { margin-bottom: var(--space-4); }
.cat-block > h3 {
  display: flex; align-items: center; gap: 10px; font-size: 1.3rem;
  padding-bottom: 10px; border-bottom: 2px solid var(--border); margin-bottom: var(--space-2);
}
.cat-count { font-size: .85rem; background: var(--navy-900); color: #fff; border-radius: 999px; padding: 2px 12px; font-family: var(--font-body); }
.violation {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; margin-bottom: 12px; box-shadow: var(--shadow-sm);
  border-inline-start: 4px solid var(--border-strong);
}
.violation.v-critical { border-inline-start-color: var(--danger); }
.violation.v-high { border-inline-start-color: #EA580C; }
.violation.v-medium { border-inline-start-color: var(--gold); }
.violation.v-low { border-inline-start-color: var(--blue-link); }
.violation-head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 6px; }
.violation-head h4 { margin: 0; font-size: 1.05rem; color: var(--ink); font-family: var(--font-body); font-weight: 700; }
.sev-badge { font-size: .75rem; font-weight: 800; padding: 3px 11px; border-radius: 999px; flex-shrink: 0; }
.ai-badge { font-size: .72rem; font-weight: 700; color: var(--primary); background: var(--info-soft); padding: 3px 10px; border-radius: 999px; }
.violation-law { font-size: .85rem; color: var(--muted); display: flex; align-items: start; gap: 7px; margin-bottom: 8px; }
.violation-law svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--gold-deep); }
.violation-detail { font-size: .95rem; margin-bottom: 10px; }
.violation-fix {
  font-size: .92rem; background: var(--success-soft); color: #14532D;
  border-radius: 10px; padding: 10px 14px; margin: 0; font-weight: 500;
}
.violation-fix strong { color: var(--success); }

.positives { background: var(--success-soft); border-radius: var(--radius); padding: 18px 22px; margin-top: var(--space-3); }
.positives h3 { color: #14532D; font-size: 1.05rem; font-family: var(--font-body); margin-bottom: 8px; }
.positives ul { list-style: none; display: grid; gap: 6px; }
.positives li { display: flex; gap: 8px; align-items: start; color: #166534; font-size: .93rem; }
.positives li::before { content: "✓"; font-weight: 900; color: var(--success); }
.result-disclaimer { font-size: .82rem; color: var(--muted); margin-top: var(--space-3); }

.results-cta {
  margin-top: var(--space-6); text-align: center; background: var(--navy-900);
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); color: #E2E8F0;
}
.results-cta h3 { color: #fff; font-size: 1.5rem; }
.results-cta p { max-width: 55ch; margin-inline: auto; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; margin-top: var(--space-3); }

/* =============== why =============== */
.why { background: var(--bg); }
.stat-grid { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.stat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px 22px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.stat-card::before {
  content: ""; position: absolute; inset-inline: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-number {
  font-family: var(--font-head); font-weight: 900; font-size: 2rem; color: var(--primary);
  margin-bottom: 4px; line-height: 1.15;
}
.stat-card h3 { font-size: 1.06rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 8px; }
.stat-card p { font-size: .93rem; color: var(--muted); margin: 0; }
.stat-note { font-size: .82rem; color: var(--gold-ink); font-weight: 600; display: block; margin-top: 8px; }

.callout {
  display: flex; gap: 16px; align-items: start; margin-top: var(--space-5);
  background: var(--warn-soft); border: 1px solid #FDE68A; border-inline-start: 5px solid var(--gold);
  border-radius: var(--radius); padding: 20px 24px;
}
.callout svg { width: 30px; height: 30px; color: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.callout p { margin: 0; color: #713F12; }
.callout strong { color: var(--gold-ink); }

/* =============== law =============== */
.law { background: #fff; }
.law-grid { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-top: var(--space-5); }
.law-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.law-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.law-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--info-soft); color: var(--primary); margin-bottom: var(--space-2);
}
.law-icon svg { width: 28px; height: 28px; }
.law-card h3 { font-size: 1.18rem; }
.law-card p { font-size: .95rem; color: var(--muted); }
.law-risk {
  margin-top: auto !important; background: var(--warn-soft); color: var(--gold-ink) !important;
  border-radius: 10px; padding: 10px 14px; font-size: .88rem !important; font-weight: 600;
}

/* =============== how =============== */
.how { background: var(--navy-900); color: #CBD5E1; }
.how .section-eyebrow { color: var(--gold); }
.how h2 { color: #fff; }
.steps { list-style: none; display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: var(--space-5); counter-reset: step; }
.step {
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius); padding: 26px 22px; position: relative;
  transition: background .2s ease, transform .2s ease;
}
.step:hover { background: rgba(255, 255, 255, .09); transform: translateY(-4px); }
.step-num {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--navy-950); font-weight: 900; font-size: 1.25rem;
  font-family: var(--font-head); margin-bottom: var(--space-2);
}
.step h3 { color: #fff; font-size: 1.12rem; font-family: var(--font-body); font-weight: 700; }
.step p { font-size: .93rem; margin: 0; color: #94A3B8; }

/* =============== service =============== */
.service { background: var(--bg); }
.service-grid { display: grid; gap: var(--space-6); }
@media (min-width: 980px) { .service-grid { grid-template-columns: 1.3fr .7fr; align-items: start; } }
.service-list { list-style: none; display: grid; gap: 14px; margin: var(--space-3) 0 var(--space-4); }
.service-list li {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 18px 14px 14px; font-size: .97rem; color: var(--muted);
  display: flex; gap: 12px; align-items: start; box-shadow: var(--shadow-sm);
}
.service-list li::before {
  content: ""; flex-shrink: 0; width: 24px; height: 24px; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%231E3A8A' fill-opacity='.1'/%3E%3Cpath fill='none' stroke='%231E3A8A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='m7.5 12.5 3 3 6-7'/%3E%3C/svg%3E") center/contain no-repeat;
}
.service-list strong { color: var(--ink); }
.service-aside {
  background: var(--navy-900); color: #CBD5E1; border-radius: var(--radius-lg);
  padding: 30px 28px; position: sticky; top: 100px;
}
.service-aside h3 { color: var(--gold); font-size: 1.15rem; }
.service-aside ul { list-style: none; display: grid; gap: 12px; margin: var(--space-2) 0 var(--space-3); }
.service-aside li { display: flex; gap: 10px; align-items: start; font-size: .95rem; }
.service-aside li::before {
  content: ""; flex-shrink: 0; width: 20px; height: 20px; margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23F59E0B' d='M12 1 3 5v6c0 5.5 3.8 10.7 9 12 5.2-1.3 9-6.5 9-12V5l-9-4z' fill-opacity='.25'/%3E%3Cpath fill='none' stroke='%23F59E0B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m8.5 12.5 2.5 2.5 5-6'/%3E%3C/svg%3E") center/contain no-repeat;
}
.aside-note {
  background: rgba(245, 158, 11, .12); border: 1px solid rgba(245, 158, 11, .35);
  border-radius: 10px; padding: 14px 16px; font-size: .9rem; color: #FCD34D; margin: 0;
}

/* =============== faq =============== */
.faq { background: #fff; }
.faq-list { display: grid; gap: 12px; margin-top: var(--space-4); max-width: 860px; }
.faq-list details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .2s ease;
}
.faq-list details[open] { box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-weight: 700; color: var(--ink); font-size: 1.02rem; min-height: 44px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; flex-shrink: 0; width: 22px; height: 22px; transition: transform .2s ease;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%231E3A8A' fill-opacity='.1'/%3E%3Cpath fill='none' stroke='%231E3A8A' stroke-width='2.2' stroke-linecap='round' d='M12 8v8M8 12h8'/%3E%3C/svg%3E") center/contain no-repeat;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 22px 20px; margin: 0; color: var(--muted); font-size: .97rem; }

/* =============== final cta =============== */
.final-cta {
  background:
    radial-gradient(700px 400px at 15% 0%, rgba(245, 158, 11, .18), transparent 60%),
    linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: #CBD5E1; text-align: center;
}
.final-cta h2 { color: #fff; margin-inline: auto; }
.final-cta p { max-width: 55ch; margin-inline: auto; font-size: 1.08rem; }

/* =============== footer =============== */
.site-footer { background: var(--navy-950); color: #94A3B8; padding-block: var(--space-8) var(--space-4); font-size: .95rem; }
.footer-grid { display: grid; gap: var(--space-5); margin-bottom: var(--space-6); }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand .brand-text { color: #fff; font-size: 1.5rem; display: block; margin-bottom: 8px; }
.footer-contact a { color: #E2E8F0; text-decoration-color: rgba(255,255,255,.35); }
.site-footer h3 { color: #E2E8F0; font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 12px; }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer nav a, .footer-legal-links a { color: #94A3B8; text-decoration: none; }
.site-footer nav a:hover, .footer-legal-links a:hover { color: #fff; text-decoration: underline; }

.legal-docs { border-top: 1px solid rgba(255, 255, 255, .12); padding-top: var(--space-4); display: grid; gap: 10px; }
.legal-docs details { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); border-radius: 12px; }
.legal-docs summary {
  cursor: pointer; padding: 14px 18px; font-weight: 700; color: #E2E8F0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; min-height: 44px;
}
.legal-docs summary::-webkit-details-marker { display: none; }
.legal-docs summary::after { content: "+"; font-size: 1.3rem; color: var(--gold); transition: transform .2s ease; }
.legal-docs details[open] summary::after { transform: rotate(45deg); }
.legal-body { padding: 0 18px 18px; font-size: .9rem; line-height: 1.75; }
.legal-body a { color: #FCD34D; }
.footer-business {
  margin-top: var(--space-5); padding-top: var(--space-3); border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center; font-size: .88rem; color: #94A3B8;
}
.footer-business strong { color: #E2E8F0; }
.footer-business a { color: #FCD34D; text-decoration: none; }
.footer-business a:hover { text-decoration: underline; }
.footer-disclaimer { margin-top: var(--space-2); font-size: .82rem; color: #94A3B8; text-align: center; }

/* =============== motion & misc =============== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero-ctas .btn, .cta-buttons .btn { width: 100%; }
  .url-row { flex-direction: column; }
  .url-row .btn { width: 100%; }
}
