/* ============================================================================
   GuardWP — Stylesheet
   Aesthetic: dark editorial / boutique tech infrastructure
   Type:      Fraunces (display serif) + Manrope (body sans)
   ============================================================================ */

/* -- Reset y base ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root {
    /* Colors */
    --bg:           #0A0B0D;
    --bg-elev:      #13151A;
    --bg-elev-2:    #1A1D24;
    --border:       #23272F;
    --border-soft:  #1B1E25;
    --text:         #ECEEF2;
    --text-muted:   #9CA3AF;
    --text-dim:     #6B7280;
    --accent:       #A3F7BF;
    --accent-soft:  #1F3A2C;
    --accent-dim:   #7BD49C;
    --warn:         #FFB547;
    --danger:       #FF6B6B;

    /* Type */
    --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
    --font-body:    'Manrope', system-ui, -apple-system, sans-serif;

    /* Layout */
    --container: 1200px;
    --radius:    14px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    /* Motion */
    --ease:      cubic-bezier(.2, .8, .2, 1);
    --t-fast:    150ms;
    --t-base:    250ms;
    --t-slow:    500ms;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    background-image:
        radial-gradient(circle at 12% -5%, rgba(163, 247, 191, 0.06), transparent 35%),
        radial-gradient(circle at 90% 100%, rgba(163, 247, 191, 0.04), transparent 40%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

/* -- Typography ------------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text);
    font-variation-settings: "opsz" 144, "SOFT" 30;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); letter-spacing: -0.015em; }
h4 { font-size: 1.1rem; font-weight: 500; letter-spacing: -0.01em; }

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
}
.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--accent);
    opacity: 0.6;
}

p { color: var(--text-muted); max-width: 65ch; }
.lead {
    font-size: clamp(1.05rem, 1.45vw, 1.25rem);
    line-height: 1.6;
    color: var(--text);
    opacity: 0.92;
    max-width: 60ch;
}

.italic-serif {
    font-family: var(--font-display);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    color: var(--accent);
}

/* -- Layout ----------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section { padding-block: clamp(4rem, 8vw, 7rem); position: relative; }
section + section { border-top: 1px solid var(--border-soft); }

.section-head { max-width: 720px; margin-bottom: 3.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }

/* -- Skip link -------------------------------------------------------------- */
.skip-link {
    position: absolute; top: -100px; left: 1rem;
    background: var(--accent); color: var(--bg);
    padding: .75rem 1rem; border-radius: var(--radius-sm);
    font-weight: 600; z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* -- Header / Nav ----------------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10, 11, 13, 0.78);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid var(--border-soft);
}
.header-inner {
    display: flex; align-items: center; gap: 2rem;
    min-height: 76px;
}

.brand {
    display: inline-flex; align-items: center; gap: 0.65rem;
    font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em;
    color: var(--text); flex-shrink: 0;
}
.brand-mark { width: 28px; height: 28px; color: var(--text); }
.brand:hover .brand-mark { color: var(--accent); transition: color var(--t-base) var(--ease); }

.primary-nav { flex: 1; }
.primary-nav > ul {
    display: flex; align-items: center; gap: 0.35rem;
    justify-content: center;
}
.primary-nav a {
    display: inline-block;
    padding: 0.55rem 0.95rem;
    font-size: 0.93rem; font-weight: 500;
    color: var(--text-muted);
    border-radius: 999px;
    transition: all var(--t-fast) var(--ease);
}
.primary-nav a:hover, .primary-nav a.is-active {
    color: var(--text); background: var(--bg-elev);
}

.has-dropdown { position: relative; }
.has-dropdown > a::after {
    content: "▾"; font-size: 0.7em; margin-left: 0.35em; opacity: 0.5;
}
.dropdown {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--bg-elev); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 0.5rem;
    min-width: 280px; opacity: 0; visibility: hidden;
    transition: all var(--t-base) var(--ease);
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
.dropdown li { display: block; }
.dropdown a {
    display: block; padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm); font-size: 0.9rem;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}

.header-cta {
    display: flex; align-items: center; gap: 1rem;
    flex-shrink: 0;
}
.status-dot {
    display: inline-block; width: 8px; height: 8px;
    background: var(--accent); border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(163, 247, 191, 0.18);
    animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(163, 247, 191, 0.4); }
    50%      { box-shadow: 0 0 0 6px rgba(163, 247, 191, 0); }
}
.status-text {
    font-size: 0.82rem; color: var(--text-muted); font-weight: 500;
}

.nav-toggle {
    display: none; width: 40px; height: 40px;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 5px;
}
.nav-toggle span {
    display: block; width: 22px; height: 1.5px;
    background: var(--text); transition: all var(--t-base) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* -- Buttons ---------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem; font-weight: 600;
    border-radius: 999px;
    transition: all var(--t-base) var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
    line-height: 1;
}
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 1.1rem 1.85rem; font-size: 1.02rem; }

.btn-primary {
    background: var(--accent); color: #04140A;
    box-shadow: 0 0 0 0 rgba(163, 247, 191, 0.5);
}
.btn-primary:hover {
    background: #B7FAC9; transform: translateY(-1px);
    box-shadow: 0 8px 24px -8px rgba(163, 247, 191, 0.55);
}
.btn-ghost {
    background: transparent; color: var(--text);
    border-color: var(--border);
}
.btn-ghost:hover { background: var(--bg-elev); border-color: #2D333C; }

.btn-outline {
    background: transparent; color: var(--accent);
    border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent-soft); }

.btn-link {
    padding: 0; background: none; color: var(--accent);
    font-weight: 600; gap: 0.4rem; border-radius: 0;
}
.btn-link::after {
    content: "→"; transition: transform var(--t-base) var(--ease);
}
.btn-link:hover::after { transform: translateX(4px); }

/* -- Hero ------------------------------------------------------------------- */
.hero {
    padding-block: clamp(5rem, 12vw, 9rem) clamp(4rem, 8vw, 6rem);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(163, 247, 191, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(163, 247, 191, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
}
.hero-inner {
    position: relative; max-width: 920px; margin-inline: auto;
    text-align: center;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.hero .lead { margin: 0 auto 2.5rem; }
.hero-cta { display: inline-flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

.hero-trust {
    margin-top: 4rem;
    display: flex; flex-wrap: wrap; gap: 2.5rem;
    justify-content: center; align-items: center;
    color: var(--text-dim); font-size: 0.85rem;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-trust strong { color: var(--text); font-weight: 600; }

/* -- Cards ------------------------------------------------------------------ */
.card {
    background: var(--bg-elev);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--t-base) var(--ease);
}
.card:hover { border-color: var(--border); transform: translateY(-3px); }

.card-icon {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: var(--accent-soft); color: var(--accent);
    margin-bottom: 1.5rem;
}
.card-icon svg { width: 22px; height: 22px; }

.card h3 { margin-bottom: 0.65rem; }
.card p { font-size: 0.95rem; color: var(--text-muted); }

.grid-3, .grid-4, .grid-2 {
    display: grid; gap: 1.25rem;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* -- Stats ------------------------------------------------------------------ */
.stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0; border: 1px solid var(--border-soft); border-radius: var(--radius);
    overflow: hidden;
}
.stat {
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--border-soft);
}
.stat:last-child { border-right: 0; }
.stat-num {
    font-family: var(--font-display); font-size: 2.6rem; line-height: 1;
    color: var(--accent); font-variation-settings: "opsz" 144;
    margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* -- Pricing ---------------------------------------------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 920px; margin-inline: auto;
}
.plan {
    background: var(--bg-elev);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    display: flex; flex-direction: column;
    position: relative;
}
.plan-featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(163, 247, 191, 0.06), var(--bg-elev) 35%);
    box-shadow: 0 0 0 1px var(--accent), 0 24px 60px -20px rgba(163, 247, 191, 0.15);
}
.plan-badge {
    position: absolute; top: -12px; left: 2.25rem;
    background: var(--accent); color: #04140A;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem; border-radius: 999px;
}
.plan-name {
    font-family: var(--font-display); font-size: 1.5rem;
    margin-bottom: 0.4rem;
}
.plan-desc { font-size: 0.92rem; min-height: 3.2em; margin-bottom: 1.5rem; }
.plan-price {
    display: flex; align-items: baseline; gap: 0.4rem;
    margin-bottom: 0.4rem;
}
.plan-price-num {
    font-family: var(--font-display); font-size: 3.2rem; line-height: 1;
    color: var(--text); font-variation-settings: "opsz" 144;
}
.plan-price-unit { color: var(--text-muted); font-size: 0.95rem; }
.plan-tax { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 1.75rem; }

.plan-features { list-style: none; padding: 0; margin: 0 0 2rem; flex: 1; }
.plan-features li {
    display: flex; align-items: flex-start; gap: 0.7rem;
    padding-block: 0.6rem;
    font-size: 0.92rem; color: var(--text);
    border-bottom: 1px solid var(--border-soft);
}
.plan-features li:last-child { border-bottom: 0; }
.plan-features li::before {
    content: ""; flex-shrink: 0;
    width: 18px; height: 18px; margin-top: 2px;
    background: var(--accent-soft);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2L4.8 8.5L9.5 3.5' stroke='%23A3F7BF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
}
.plan-features li.disabled { color: var(--text-dim); }
.plan-features li.disabled::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 3L9 9M9 3L3 9' stroke='%23555' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
    background-color: transparent;
}

/* -- Process / Steps -------------------------------------------------------- */
.steps {
    display: grid; gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    counter-reset: step;
}
.step {
    padding: 1.75rem;
    background: var(--bg-elev);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    position: relative;
}
.step::before {
    counter-increment: step;
    content: "0" counter(step);
    font-family: var(--font-display); font-size: 2rem; line-height: 1;
    color: var(--accent); opacity: 0.7;
    display: block; margin-bottom: 1rem;
    font-variation-settings: "opsz" 144;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.9rem; margin: 0; }

/* -- FAQ -------------------------------------------------------------------- */
.faq {
    max-width: 760px; margin-inline: auto;
    border-top: 1px solid var(--border-soft);
}
.faq details {
    border-bottom: 1px solid var(--border-soft);
    padding-block: 1.25rem;
}
.faq summary {
    cursor: pointer; list-style: none;
    font-family: var(--font-display); font-size: 1.15rem; line-height: 1.35;
    color: var(--text);
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
    transition: color var(--t-fast) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+"; flex-shrink: 0;
    font-family: var(--font-body); font-size: 1.5rem; color: var(--accent);
    font-weight: 300; line-height: 1;
    transition: transform var(--t-base) var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { color: var(--accent); }
.faq details p {
    margin-top: 0.9rem; font-size: 0.95rem; padding-right: 2rem;
}

/* -- CTA strip -------------------------------------------------------------- */
.cta-strip {
    padding-block: clamp(3rem, 6vw, 5rem);
    background:
        linear-gradient(135deg, rgba(163, 247, 191, 0.08), transparent 60%),
        var(--bg-elev);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.cta-strip-inner {
    display: flex; flex-wrap: wrap; gap: 2rem;
    align-items: center; justify-content: space-between;
}
.cta-strip-title {
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    margin-bottom: 0.4rem;
}
.cta-strip-text { color: var(--text-muted); margin: 0; }
.cta-strip-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* -- Footer ----------------------------------------------------------------- */
.site-footer {
    padding-block: 4rem 2rem;
    border-top: 1px solid var(--border-soft);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand-col .brand-footer { margin-bottom: 1.25rem; }
.footer-tagline {
    font-size: 0.9rem; max-width: 38ch;
    margin-bottom: 1.5rem;
}
.footer-status { font-size: 0.8rem; color: var(--text-dim); display: inline-flex; align-items: center; gap: 0.5rem; }

.footer-col h3 {
    font-family: var(--font-body);
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--text-dim);
    margin-bottom: 1.25rem;
}
.footer-col ul li {
    margin-bottom: 0.6rem; font-size: 0.92rem;
}
.footer-col a { color: var(--text-muted); }
.footer-col a:hover { color: var(--accent); }

.footer-contact li {
    display: flex; flex-direction: column; gap: 2px;
    color: var(--text-muted);
}
.footer-label {
    font-size: 0.72rem; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 0.1em;
}

.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a { font-size: 0.85rem; color: var(--text); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    padding-top: 2rem; border-top: 1px solid var(--border-soft);
    color: var(--text-dim); font-size: 0.82rem;
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: var(--text-dim); }
.footer-legal a:hover { color: var(--text-muted); }

/* -- Forms ------------------------------------------------------------------ */
.form-wrap {
    background: var(--bg-elev);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 4vw, 2.75rem);
    max-width: 640px;
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
    display: block; font-size: 0.85rem; font-weight: 500;
    color: var(--text); margin-bottom: 0.5rem;
}
.form-row label .req { color: var(--accent); }
.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font: inherit; color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(163, 247, 191, 0.18);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; }

.form-check {
    display: flex; align-items: flex-start; gap: 0.7rem;
    font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem;
}
.form-check input { width: auto; margin-top: 3px; }

.form-grid-2 {
    display: grid; gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.alert {
    padding: 1rem 1.25rem; border-radius: var(--radius-sm);
    border: 1px solid var(--border); font-size: 0.92rem;
    margin-bottom: 1.5rem;
}
.alert-error  { background: rgba(255,107,107,0.08); border-color: rgba(255,107,107,0.3); color: #FFB1B1; }
.alert-success{ background: rgba(163,247,191,0.08); border-color: rgba(163,247,191,0.3); color: var(--accent); }

/* -- Comparison table ------------------------------------------------------- */
.compare-wrap { overflow-x: auto; }
.compare {
    width: 100%; border-collapse: collapse;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius); overflow: hidden;
    background: var(--bg-elev);
}
.compare th, .compare td {
    padding: 1rem 1.25rem; text-align: left;
    border-bottom: 1px solid var(--border-soft);
    font-size: 0.93rem;
}
.compare th {
    background: var(--bg-elev-2);
    font-family: var(--font-display); font-weight: 400;
    font-size: 1.1rem; color: var(--text);
}
.compare th.featured { color: var(--accent); }
.compare td:not(:first-child) { text-align: center; }
.compare .ok  { color: var(--accent); font-weight: 600; }
.compare .no  { color: var(--text-dim); }

/* -- Hero alt (interior pages) --------------------------------------------- */
.page-hero {
    padding-block: clamp(4rem, 8vw, 6rem) clamp(2.5rem, 5vw, 4rem);
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle at 80% 20%, rgba(163, 247, 191, 0.08), transparent 50%);
}
.page-hero-inner { max-width: 880px; position: relative; }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }

.breadcrumbs {
    font-size: 0.83rem; color: var(--text-dim);
    margin-bottom: 1.5rem;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin-inline: 0.4rem; opacity: 0.5; }

/* -- Two-column content ----------------------------------------------------- */
.two-col {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.two-col.media-right { direction: ltr; }
.two-col .media {
    background: var(--bg-elev); border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg); aspect-ratio: 4 / 3;
    overflow: hidden; position: relative;
}

/* -- Feature list ----------------------------------------------------------- */
.feature-list {
    display: grid; gap: 0.5rem;
}
.feature-list li {
    display: flex; align-items: flex-start; gap: 0.8rem;
    padding: 0.75rem 0;
    color: var(--text); font-size: 0.96rem;
}
.feature-list li::before {
    content: ""; flex-shrink: 0;
    width: 22px; height: 22px; margin-top: 1px;
    background: var(--accent-soft);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2L4.8 8.5L9.5 3.5' stroke='%23A3F7BF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
}

/* -- Testimonial / pull quote ---------------------------------------------- */
.quote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.3; color: var(--text);
    border-left: 2px solid var(--accent);
    padding-left: 1.5rem;
    font-variation-settings: "opsz" 144;
}
.quote-author {
    font-family: var(--font-body); font-size: 0.85rem;
    color: var(--text-muted); margin-top: 1rem;
    display: block;
}

/* -- Prose (legal pages) ---------------------------------------------------- */
.prose { max-width: 720px; margin-inline: auto; }
.prose h2 { font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.75rem; margin-bottom: 0.5rem; }
.prose p { color: var(--text-muted); margin-bottom: 1rem; max-width: none; }
.prose ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; color: var(--text-muted); }
.prose ul li { margin-bottom: 0.35rem; }
.prose a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* -- Local SEO city list ---------------------------------------------------- */
.city-grid {
    display: grid; gap: 0.5rem;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    margin-top: 2rem;
}
.city-grid a {
    display: block; padding: 0.7rem 0.95rem;
    background: var(--bg-elev); border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm); font-size: 0.88rem;
    color: var(--text-muted);
}
.city-grid a:hover { border-color: var(--accent); color: var(--accent); }

/* -- Responsive ------------------------------------------------------------- */
@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
    .nav-toggle { display: flex; margin-left: auto; }
    .primary-nav {
        position: fixed; inset: 76px 0 0;
        background: var(--bg);
        padding: 2rem 1.5rem;
        transform: translateX(100%);
        transition: transform var(--t-base) var(--ease);
        z-index: 90;
        overflow-y: auto;
    }
    .primary-nav.is-open { transform: translateX(0); }
    .primary-nav > ul { flex-direction: column; align-items: stretch; gap: 0.25rem; }
    .primary-nav a { padding: 0.85rem 1rem; font-size: 1rem; border-radius: var(--radius-sm); }
    .has-dropdown > a::after { display: none; }
    .dropdown {
        position: static; transform: none;
        opacity: 1; visibility: visible;
        background: transparent; border: 0; padding: 0 0 0 1rem;
        min-width: 0; box-shadow: none;
        margin-top: 0.25rem;
    }
    .dropdown a { font-size: 0.92rem; color: var(--text-dim); }
    .header-cta .status-text, .header-cta .status-dot { display: none; }
    .two-col { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stat { border-right: 0; border-bottom: 1px solid var(--border-soft); }
    .stat:last-child { border-bottom: 0; }
}
@media (max-width: 520px) {
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
    .cta-strip-inner { flex-direction: column; align-items: flex-start; }
    .cta-strip-actions { width: 100%; }
    .cta-strip-actions .btn { flex: 1; }
}

/* -- Animations on scroll --------------------------------------------------- */
[data-reveal] {
    opacity: 0; transform: translateY(20px);
    transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}
