/* ═══════════════════════════════════════
   SEO Audit Tool — Corporate Style
   Matches index.html class structure
═══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #ffffff;
  --bg2:      #f8f9fb;
  --dark:     #0d1117;
  --dark2:    #161b22;
  --text:     #1a1f2e;
  --muted:    #6b7280;
  --border:   #e5e7eb;
  --blue:     #2563eb;
  --blue-d:   #1d4ed8;
  --blue-l:   #eff6ff;
  --green:    #16a34a;
  --amber:    #d97706;
  --red:      #dc2626;
  --radius:   10px;
  --radius-lg:16px;
  --shadow:   0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.05);
  --shadow-lg:0 4px 6px rgba(0,0,0,.05), 0 10px 40px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', -apple-system, sans-serif; color: var(--text); background: var(--bg); font-size: 16px; line-height: 1.6; }
h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(34px, 5vw, 60px); font-weight: 800; }
h2 { font-size: clamp(24px, 3.5vw, 38px); }
h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
p { color: var(--muted); line-height: 1.7; }
a { text-decoration: none; color: inherit; }
strong { color: var(--text); }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ──────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.nav-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 62px; gap: 8px; }
.nav-logo { font-size: 20px; font-weight: 800; color: var(--text); margin-right: 20px; white-space: nowrap; flex-shrink: 0; }
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-links > a { font-size: 14px; font-weight: 500; color: var(--muted); padding: 6px 12px; border-radius: 7px; transition: all .15s; }
.nav-links > a:hover { color: var(--text); background: var(--bg2); }

/* Lang dropdown — sits OUTSIDE nav-links so it stays visible on mobile */
.nav-lang-wrap { position: relative; flex-shrink: 0; }
.nav-lang-btn { display: flex; align-items: center; gap: 5px; background: none; border: 1px solid var(--border); border-radius: 7px; padding: 5px 10px; font-size: 13px; font-weight: 500; cursor: pointer; color: var(--text); font-family: inherit; transition: all .15s; }
.nav-lang-btn:hover { background: var(--bg2); }
.nav-lang-btn svg { transition: transform .2s; }
.nav-lang-wrap.open .nav-lang-btn svg { transform: rotate(180deg); }
.lang-dropdown { display: none; position: absolute; top: calc(100% + 8px); right: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 170px; overflow: hidden; z-index: 200; animation: dropIn .15s ease; }
.lang-dropdown.open { display: block; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.lang-dropdown button { display: flex; align-items: center; gap: 8px; width: 100%; text-align: left; padding: 10px 14px; font-size: 14px; background: none; border: none; cursor: pointer; color: var(--text); font-family: inherit; transition: background .1s; }
.lang-dropdown button:hover { background: var(--bg2); }
.lang-dropdown button.lang-active { background: var(--blue-l); color: var(--blue); font-weight: 600; }
.lang-flag { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 18px; background: var(--blue); color: #fff; border-radius: 3px; font-size: 10px; font-weight: 700; letter-spacing: .5px; flex-shrink: 0; }

/* Hamburger */
.nav-hamburger { display: none; background: none; border: 1px solid var(--border); border-radius: 7px; width: 38px; height: 38px; cursor: pointer; align-items: center; justify-content: center; flex-shrink: 0; color: var(--text); transition: background .15s; }
.nav-hamburger:hover { background: var(--bg2); }
.nav-hamburger svg { display: block; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.nav-signin { background: none; border: 1px solid var(--border); border-radius: 7px; padding: 6px 14px; font-size: 13px; font-weight: 500; cursor: pointer; color: var(--muted); font-family: inherit; transition: all .15s; }
.nav-signin:hover { color: var(--text); background: var(--bg2); }
.nav-cta { background: var(--blue); color: #fff; border-radius: 7px; padding: 7px 16px; font-size: 13px; font-weight: 600; transition: background .15s; white-space: nowrap; }
.nav-cta:hover { background: var(--blue-d); }
.nav-user-btn { display: flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 7px; border: 1px solid var(--border); font-size: 13px; font-weight: 500; transition: all .15s; }
.nav-user-btn:hover { background: var(--bg2); }

/* Mobile nav drawer */
.nav-mobile-drawer { display: none; position: fixed; top: 62px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,.1); z-index: 99; padding: 16px 24px; }
.nav-mobile-drawer.open { display: block; animation: dropIn .2s ease; }
.nav-mobile-drawer a { display: block; padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--bg2); }
.nav-mobile-drawer a:last-child { border-bottom: none; }

/* ── HERO ─────────────────────────────── */
.hero-section { position: relative; background: var(--dark); color: #fff; padding: 90px 0 100px; overflow: hidden; text-align: center; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 48px 48px; }
.hero-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 20%, rgba(37,99,235,.25) 0%, transparent 65%); }
.hero-section .container { position: relative; max-width: 800px; }
.hero-badge { display: inline-block; background: rgba(37,99,235,.2); border: 1px solid rgba(37,99,235,.4); color: #93c5fd; font-size: 13px; font-weight: 600; padding: 5px 14px; border-radius: 20px; margin-bottom: 24px; letter-spacing: .02em; }
.hero-h1 { color: #fff; margin-bottom: 20px; letter-spacing: -.02em; }
.hero-sub { color: #9ca3af; font-size: 18px; margin-bottom: 36px; }
.hero-stats-row { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stat { padding: 0 28px; text-align: center; }
.hero-stat-num { font-size: 30px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.hero-stat-lbl { font-size: 13px; color: #6b7280; }
.hero-stat-sep { width: 1px; height: 44px; background: rgba(255,255,255,.1); }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.btn-primary-lg { background: var(--blue); color: #fff; padding: 14px 28px; border-radius: var(--radius); font-size: 16px; font-weight: 600; display: inline-block; transition: background .15s, transform .1s; }
.btn-primary-lg:hover { background: var(--blue-d); transform: translateY(-1px); }
.btn-ghost-lg { background: rgba(255,255,255,.07); color: #d1d5db; border: 1px solid rgba(255,255,255,.12); padding: 14px 28px; border-radius: var(--radius); font-size: 16px; font-weight: 500; display: inline-block; transition: all .15s; }
.btn-ghost-lg:hover { background: rgba(255,255,255,.12); color: #fff; }
.hero-note { font-size: 13px; color: #4b5563; }

/* ── SECTION HEADERS ──────────────────── */
.section-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); background: var(--blue-l); display: inline-block; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; text-align: center; }
.section-h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; margin-bottom: 12px; }
.section-sub { color: var(--muted); font-size: 16px; margin-bottom: 32px; }
.section-sub code { background: var(--bg2); border: 1px solid var(--border); padding: 2px 7px; border-radius: 5px; font-size: 14px; }

/* ── FEATURES ─────────────────────────── */
.features-section { padding: 88px 0; background: var(--dark); text-align: center; }
.features-section .section-eyebrow { background: rgba(37,99,235,.2); color: #93c5fd; }
.features-section .section-h2 { color: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; text-align: left; }
.feature-card { padding: 28px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.04); transition: border-color .2s; }
.feature-card:hover { border-color: rgba(37,99,235,.4); }
.feature-num { font-size: 12px; font-weight: 700; color: var(--blue); letter-spacing: .05em; margin-bottom: 10px; }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; background: rgba(37,99,235,.1); color: #60a5fa; }
.feature-icon svg { width: 24px; height: 24px; flex-shrink: 0; }
.logo-icon { display: inline-block; vertical-align: -3px; margin-right: 2px; flex-shrink: 0; }
.feature-card h3 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.feature-card p { color: #9ca3af; font-size: 14px; }

/* ── SAMPLE ───────────────────────────── */
.sample-section { padding: 88px 0; text-align: center; }
.sample-tabs { display: flex; gap: 4px; background: var(--bg2); padding: 4px; border-radius: var(--radius); margin: 32px auto 24px; flex-wrap: wrap; width: fit-content; }
.tab-btn { background: none; border: none; padding: 8px 18px; border-radius: 7px; font-size: 14px; font-weight: 500; cursor: pointer; color: var(--muted); font-family: inherit; transition: all .15s; }
.tab-btn:hover { color: var(--text); }
.tab-btn.active { background: #fff; color: var(--text); box-shadow: 0 1px 4px rgba(0,0,0,.1); }
.tab-content { display: none; text-align: left; }
.tab-content.active { display: block; }
.sample-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.sc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 8px; }
.sc-domain { font-size: 16px; font-weight: 700; color: var(--text); }
.sc-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.score-row { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.score-box { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.score-circle { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; border: 4px solid; }
.s-good { border-color: #16a34a; color: #16a34a; background: #f0fdf4; }
.s-warn { border-color: #d97706; color: #d97706; background: #fffbeb; }
.s-bad  { border-color: #dc2626; color: #dc2626; background: #fef2f2; }
.score-name { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.4; }
.score-name small { font-size: 11px; color: #9ca3af; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { text-align: left; font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; padding: 8px 12px; border-bottom: 2px solid var(--border); }
.data-table td { padding: 10px 12px; border-bottom: 1px solid var(--bg2); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg2); }
.highlight-row td { background: var(--blue-l) !important; font-weight: 500; }
.tag { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.tag-ok   { background: #dcfce7; color: #166534; }
.tag-warn { background: #fef9c3; color: #854d0e; }
.tag-bad  { background: #fee2e2; color: #991b1b; }
.tag-blue { background: var(--blue-l); color: var(--blue); }
.tag-gray { background: var(--bg2); color: var(--muted); }
.tag-purple { background: #f5f3ff; color: #7c3aed; }
.rec-list { display: flex; flex-direction: column; }
.rec-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--bg2); }
.rec-item:last-child { border-bottom: none; }
.rec-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.rec-high { background: var(--red); }
.rec-med  { background: var(--amber); }
.rec-low  { background: var(--green); }
.rec-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.rec-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }
.gbp-stats { display: flex; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; }
.gbp-stat { text-align: center; }
.gbp-val { font-size: 28px; font-weight: 800; color: var(--text); }
.gbp-val.green  { color: var(--green); }
.gbp-val.orange { color: var(--amber); }
.gbp-lbl { font-size: 12px; color: var(--muted); margin-top: 2px; }
.gbp-alert { background: #fffbeb; border: 1px solid #fde68a; border-left: 3px solid var(--amber); padding: 10px 14px; border-radius: 6px; font-size: 13px; color: #92400e; margin-bottom: 16px; }
.ai-text { margin-bottom: 20px; }
.ai-text p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 12px; }
.ai-pkg { background: var(--blue-l); border: 1px solid #bfdbfe; border-radius: var(--radius); padding: 16px 20px; }
.ai-pkg-label { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.ai-pkg-name  { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.ai-pkg-reason { font-size: 13px; color: var(--muted); }
.sample-footer-cta { text-align: center; margin-top: 40px; padding: 32px; background: var(--bg2); border-radius: var(--radius-lg); }
.sample-footer-cta p { font-size: 16px; color: var(--text); font-weight: 500; margin-bottom: 16px; }

/* ── PRICING ──────────────────────────── */
.pricing-section { padding: 88px 0; background: var(--bg2); text-align: center; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 720px; margin: 40px auto 0; }
.pricing-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: relative; text-align: left; }
.pricing-card-featured { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.pricing-best { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 14px; border-radius: 20px; white-space: nowrap; }
.pricing-name { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.pricing-price { font-size: 52px; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 16px; color: var(--muted); font-weight: 400; }
.pricing-per { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 24px; }
.pricing-list { list-style: none; margin-bottom: 28px; }
.pricing-list li { font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--bg2); color: var(--text); }
.pricing-list li:last-child { border: none; }
.pricing-list li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.pricing-btn-outline { display: block; text-align: center; padding: 12px; border-radius: var(--radius); font-size: 15px; font-weight: 700; border: 2px solid var(--blue); color: var(--blue); transition: all .15s; }
.pricing-btn-outline:hover { background: var(--blue-l); }
.pricing-btn-solid { display: block; text-align: center; padding: 12px; border-radius: var(--radius); font-size: 15px; font-weight: 700; background: var(--blue); color: #fff; transition: background .15s; }
.pricing-btn-solid:hover { background: var(--blue-d); }

/* ── FORM ─────────────────────────────── */
.form-section { padding: 88px 0; background: var(--bg2); }
.form-card { max-width: 680px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--border); }
.form-card-header { text-align: center; padding: 40px 40px 0; }
.form-card-header .section-eyebrow { margin-bottom: 8px; }
.form-card-header .section-h2 { margin-bottom: 8px; font-size: 26px; }
.form-card-sub { font-size: 13px; color: var(--muted); margin-bottom: 0; }
.audit-form-wrap { padding: 28px 40px 36px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group-full { margin-bottom: 14px; }
.form-group label { font-size: 12.5px; font-weight: 600; color: var(--text); letter-spacing: 0.01em; }
.input-icon-wrap { position: relative; display: flex; align-items: center; }
.input-icon { display: none; }
.input-icon-wrap input, .input-icon-wrap select { padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; font-family: inherit; color: var(--text); background: var(--bg2); outline: none; transition: all .2s; width: 100%; }
.input-icon-wrap input:focus, .input-icon-wrap select:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(37,99,235,.08); }
.input-icon-wrap input::placeholder { color: #b0b7c3; }
.form-group input, .form-group select { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; font-family: inherit; color: var(--text); background: var(--bg2); outline: none; transition: all .2s; }
.form-group input:focus, .form-group select:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(37,99,235,.08); }
.req { color: var(--red); }
.opt { font-size: 11.5px; font-weight: 400; color: var(--muted); }
.form-divider { height: 1px; background: var(--border); margin: 6px 0 18px; }
.plan-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.plan-opt { border: 2px solid var(--border); border-radius: 12px; padding: 16px 16px; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 10px; position: relative; background: var(--bg2); }
.plan-opt:hover { border-color: var(--blue); background: #fff; }
.plan-opt.active { border-color: var(--blue); background: var(--blue-l); box-shadow: 0 0 0 3px rgba(37,99,235,.08); }
.plan-radio-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #cbd5e1; flex-shrink: 0; transition: all .2s; }
.plan-opt.active .plan-radio-dot { border-color: var(--blue); background: var(--blue); box-shadow: inset 0 0 0 3px #fff; }
.plan-opt-info { flex: 1; }
.plan-opt-name { font-size: 14px; font-weight: 700; color: var(--text); }
.plan-opt-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.plan-opt-price { font-size: 22px; font-weight: 800; color: var(--blue); }
.save-pill { background: var(--green); color: #fff; font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-left: 6px; vertical-align: middle; }
.form-submit-btn { width: 100%; padding: 15px 20px; background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: #fff; border: none; border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 2px 8px rgba(37,99,235,.3); }
.form-submit-btn:hover { background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%); box-shadow: 0 4px 16px rgba(37,99,235,.4); transform: translateY(-1px); }
.form-submit-btn:active { transform: translateY(0); }
.form-submit-btn:disabled { background: var(--muted); cursor: not-allowed; box-shadow: none; transform: none; }
.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }
.form-trust { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; padding-top: 16px; }
.form-trust-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); font-weight: 500; }
.form-trust-item svg { color: var(--muted); opacity: 0.7; }
.form-trust-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.form-security { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }

/* ── FAQ ──────────────────────────────── */
.faq-section { padding: 88px 0; background: var(--bg2); }
.faq-list { max-width: 720px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 15px; font-weight: 600; font-family: inherit; color: var(--text); text-align: left; gap: 12px; }
.faq-icon { font-size: 22px; color: var(--muted); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--blue); }
.faq-a { display: none; padding-bottom: 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── FOOTER ───────────────────────────── */
.site-footer { background: var(--dark2); color: #9ca3af; padding: 56px 0 0; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 48px; flex-wrap: wrap; }
.footer-brand .nav-logo { color: #fff; font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; color: #6b7280; line-height: 1.6; }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-h { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #fff; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: #6b7280; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-flags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.footer-flags a { font-size: 22px; text-decoration: none; opacity: 0.8; transition: opacity .15s, transform .15s; }
.footer-flags a:hover { opacity: 1; transform: scale(1.15); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 18px 24px; display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 8px; max-width: 1080px; margin: 0 auto; }

/* ── MODALS ───────────────────────────── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 300; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal-box { background: #fff; border-radius: var(--radius-lg); padding: 40px; max-width: 420px; width: 90%; position: relative; text-align: center; }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 18px; cursor: pointer; color: var(--muted); }
.spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--blue); border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto 16px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 860px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-stat-sep { display: none; }
  .hero-stat { padding: 0 12px; }
  .hero-stat-num { font-size: 22px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .plan-selector { grid-template-columns: 1fr; }
  .form-card { border-radius: 12px; }
  .form-card-header { padding: 28px 20px 0; }
  .audit-form-wrap { padding: 20px 20px 28px; }
  .form-card-header .section-h2 { font-size: 22px; }
  .form-trust { flex-wrap: wrap; gap: 8px; }
  .footer-cols { gap: 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-actions #navLoggedOut .nav-signin { display: none; }
  .footer-top { flex-direction: column; }
  .sample-tabs { justify-content: center; }
  .hero-section { padding: 60px 0 70px; }
}