@charset "UTF-8";

:root {
    --bg: #090807;
    --bg-card: #120e0c;
    --bg-card-hover: #1b1613;
    --bg-band: rgba(18, 14, 12, 0.5);
    --border: rgba(255, 255, 255, 0.08);
    --border-bright: rgba(249, 115, 22, 0.4);
    --text: #f8f4f0;
    --text-muted: #a39790;
    --brand: #f97316;
    --brand-glow: #ff8c38;
    --brand-dark: #ea580c;
    --brand-soft: rgba(249, 115, 22, 0.12);
    --green: #10b981;
    --green-soft: rgba(16, 185, 129, 0.12);
    --nav-bg: rgba(9, 8, 7, 0.8);
    --grad-text: linear-gradient(135deg, #ffffff 30%, var(--brand) 100%);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --maxw: 1160px;
    --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    --shadow-price: 0 40px 90px -20px rgba(249, 115, 22, 0.35);
}

/* ── Light Theme Variable Overrides ── */
[data-theme="light"] {
    --bg: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --bg-band: #f1f5f9;
    --border: rgba(15, 23, 42, 0.08);
    --border-bright: rgba(249, 115, 22, 0.4);
    --text: #0f172a;
    --text-muted: #64748b;
    --brand: #f97316;
    --brand-glow: #ff8c38;
    --brand-dark: #ea580c;
    --brand-soft: rgba(249, 115, 22, 0.1);
    --green: #059669;
    --green-soft: rgba(5, 150, 105, 0.1);
    --nav-bg: rgba(248, 250, 252, 0.85);
    --grad-text: linear-gradient(135deg, #0f172a 30%, var(--brand) 100%);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.06);
    --shadow-price: 0 25px 60px -15px rgba(249, 115, 22, 0.25);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    overflow-wrap: break-word;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ── Pro Agency Ambient Background Grid & Glow ── */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 100% 40%, rgba(234, 88, 12, 0.05) 0%, transparent 40%),
        linear-gradient(to right, rgba(128,128,128,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(128,128,128,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 64px 64px, 64px 64px;
    pointer-events: none;
    z-index: -2;
}

.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, rgba(234, 88, 12, 0) 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
    animation: floatGlow 12s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    0% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateX(-45%) translateY(40px) scale(1.1); opacity: 1; }
    100% { transform: translateX(-55%) translateY(-20px) scale(0.95); opacity: 0.7; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.03em; margin: 0 0 0.5em; font-weight: 800; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.22rem; font-weight: 700; }

h1:has(.gradient-text) { line-height: 1.3; }

.gradient-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    line-height: 1.35;
    letter-spacing: -0.01em;
    padding: 0 0.1em 0.15em 0;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 800px; }
.center { text-align: center; }
.lead { color: var(--text-muted); font-size: 1.125rem; font-weight: 400; line-height: 1.7; }

.section { padding: 110px 0; position: relative; }
.band {
    background: var(--bg-band);
    border-block: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.section-head { max-width: 740px; margin: 0 auto 64px; text-align: center; }
.section-head h1 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: var(--brand-soft);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 99px;
}

/* ── Theme Toggle Button ── */
.theme-toggle-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.theme-toggle-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Buttons & Shimmer Effects ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.98rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 25px -4px rgba(249, 115, 22, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(60deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: rotate(30deg) translateY(-100%);
    transition: transform 0.8s ease;
}

.btn-primary:hover::after {
    transform: rotate(30deg) translateY(100%);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 14px 35px -4px rgba(249, 115, 22, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary s { opacity: 0.65; font-weight: 500; margin-right: 2px; }

.btn-ghost {
    border-color: var(--border);
    background: var(--bg-card);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: var(--border-bright);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.btn-lg { padding: 18px 34px; font-size: 1.05rem; border-radius: 14px; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; border-radius: 10px; }
.btn-block { width: 100%; }

/* ── Banner Bar ── */
.offer-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    background: linear-gradient(90deg, #ea580c, #f97316, #ea580c);
    background-size: 200% 100%;
    animation: gradientShift 6s ease infinite;
    color: #fff;
    font-size: 0.9rem;
    padding: 10px 20px;
    text-align: center;
    font-weight: 500;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.offer-bar a {
    text-decoration: underline;
    font-weight: 800;
    margin-left: 6px;
    color: #fff;
}

.countdown { font-variant-numeric: tabular-nums; font-weight: 800; background: rgba(0,0,0,0.25); padding: 3px 8px; border-radius: 6px; }
.dot {
    width: 8px; height: 8px; border-radius: 50%; background: #fff;
    display: inline-block; animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.3; transform: scale(0.8); } }

/* ── Nav Header ── */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}
.nav.scrolled {
    border-bottom-color: var(--border-bright);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }
.brand img { border-radius: 10px; box-shadow: 0 0 15px rgba(249, 115, 22, 0.3); }
.nav-links { display: flex; gap: 28px; margin-left: auto; font-size: 0.94rem; color: var(--text-muted); font-weight: 500; }
.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--text); }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; min-width: 44px; min-height: 44px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px auto; border-radius: 2px; }

/* ── Hero Section ── */
.hero { padding: 72px 0 80px; position: relative; }
.hero-copy-wrap { text-align: center; }
.hero-copy { max-width: 820px; margin: 0 auto; }
.pill {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: 0.84rem; font-weight: 600;
    color: var(--brand); background: var(--brand-soft); border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 7px 16px; border-radius: 999px; margin-bottom: 24px;
    max-width: 100%; flex-wrap: wrap; text-align: center;
}
.pill .dot { background: var(--brand); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin: 32px 0 24px; }
.hero-ticks { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; padding: 0; margin: 0; color: var(--text-muted); font-size: 0.92rem; font-weight: 500; }
.hero-ticks li::before { content: '\2713'; color: var(--green); font-weight: 800; margin-right: 8px; }

.hero-media { margin-top: 52px; scroll-margin-top: 100px; }
.hero-media-inner { max-width: 1320px; }

.hero-shot { position: relative; }
.shot-glow {
    position: absolute; inset: -6% -4% -8% -4%; z-index: -1; border-radius: 30px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.28) 0%, transparent 70%); filter: blur(40px);
}

.shot {
    position: relative; border: 1px solid var(--border); border-radius: var(--radius-lg);
    background: var(--bg-card); overflow: hidden;
    box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16 / 8.34;
}

.shot img, .shot video { width: 100%; height: 100%; object-fit: contain; object-position: top center; background: #050505; }
.shot.video { aspect-ratio: 16 / 9; }
.hero-video video { background: #050505; display: block; }

.shot-ph {
    position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 8px; text-align: center; padding: 24px;
    color: var(--text-muted); font-size: 0.88rem;
    background-image: repeating-linear-gradient(45deg, rgba(128,128,128,0.03) 0 12px, transparent 12px 24px);
}
.shot-ph b { color: var(--text); font-size: 1.05rem; }
.shot-ph code { font-size: 0.78rem; color: var(--brand); background: var(--brand-soft); padding: 4px 10px; border-radius: 6px; font-family: monospace; }

/* ── Stat Strip ── */
.stat-strip {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 80px;
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    padding: 30px 24px;
    box-shadow: var(--shadow-card);
}
.stat-strip div { text-align: center; }
.stat-strip b { display: block; font-size: 2rem; font-weight: 800; color: var(--brand); letter-spacing: -0.03em; }
.stat-strip span { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }

/* ── Features Grid ── */
.grid.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.3);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-card);
}
.card:hover::before { opacity: 1; }

.card .ico {
    width: 48px; height: 48px; display: grid; place-items: center;
    background: var(--brand-soft); border-radius: 12px; margin-bottom: 20px; color: var(--brand);
    border: 1px solid rgba(249, 115, 22, 0.2);
}
.card .ico svg {
    width: 22px; height: 22px; fill: none; stroke: currentColor;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.card h3 { margin-bottom: 8px; font-size: 1.18rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; line-height: 1.6; }

/* ── Screenshots ── */
.gallery-container { max-width: 1100px; }
.shots-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.shots-grid figure { margin: 0; }
.shots-grid .shot img { background: var(--bg-card); }
.shots-grid figcaption { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; text-align: center; }

.screenshot-button {
    display: block;
    width: 100%;
    padding: 0;
    position: relative;
    border: 0;
    border-radius: var(--radius-lg);
    color: var(--text);
    background: transparent;
    cursor: zoom-in;
    font: inherit;
}
.screenshot-button .shot {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.screenshot-button:hover .shot,
.screenshot-button:focus-visible .shot {
    transform: translateY(-4px);
    border-color: var(--border-bright);
    box-shadow: 0 30px 80px -20px rgba(249, 115, 22, 0.3);
}
.screenshot-button:focus-visible { outline: 3px solid var(--brand); outline-offset: 6px; }
.media-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    background: rgba(9, 8, 7, 0.82);
    color: #fff;
    backdrop-filter: blur(12px);
    font: 700 0.82rem var(--font-main);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
button.media-action { cursor: pointer; }
.media-action:hover { background: rgba(249, 115, 22, 0.92); }
.media-action svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.zoom-hint {
    position: absolute;
    right: 18px;
    bottom: 18px;
    pointer-events: none;
    transition: transform 0.25s ease, background 0.25s ease;
}
.screenshot-button:hover .zoom-hint { transform: translateY(-3px); background: rgba(249, 115, 22, 0.92); }

/* ── Full-size Screenshot Viewer ── */
.lightbox {
    width: min(96vw, 1600px);
    max-width: none;
    max-height: 94vh;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: visible;
}
.lightbox::backdrop { background: rgba(0, 0, 0, 0.82); backdrop-filter: blur(8px); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox img {
    max-width: 96vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.lightbox-close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
}
.lightbox-close:hover { background: var(--brand); }

/* ── Calculator ── */
.calc {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px; margin-bottom: 40px;
    box-shadow: var(--shadow-card);
}
.calc-control { display: grid; gap: 12px; margin-bottom: 34px; }
.calc-control label { font-weight: 700; font-size: 1rem; }
.calc-control output { color: var(--brand); font-weight: 800; font-size: 1.1rem; }
input[type=range] {
    -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 99px;
    background: var(--border); outline: none;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; cursor: pointer;
    background: var(--brand); border: 4px solid var(--bg); box-shadow: 0 0 15px var(--brand);
    transition: transform 0.2s ease;
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.2); }
input[type=range]::-moz-range-thumb {
    width: 20px; height: 20px; border-radius: 50%; cursor: pointer;
    background: var(--brand); border: 4px solid var(--bg);
}
.calc-bars { display: grid; gap: 16px; }
.bar-row { display: grid; grid-template-columns: 130px 1fr 100px; align-items: center; gap: 16px; font-size: 0.95rem; }
.bar-track { background: var(--border); border-radius: 99px; height: 32px; overflow: hidden; }
.bar-fill {
    height: 100%; border-radius: 99px; background: linear-gradient(90deg, #94a3b8, #64748b);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1); min-width: 6px;
}
.bar-row.us .bar-fill { background: linear-gradient(90deg, var(--brand-dark), var(--brand)); }
.bar-row.us { font-weight: 800; font-size: 1.02rem; }
.bar-val { text-align: right; font-variant-numeric: tabular-nums; font-weight: 700; }
.bar-row.us .bar-val { color: var(--brand); font-size: 1.1rem; }
.calc-note { color: var(--text-muted); font-size: 0.85rem; margin: 24px 0 0; }

/* ── Comparison Table ── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-card); }
.cmp { width: 100%; border-collapse: collapse; min-width: 800px; font-size: 0.94rem; }
.cmp th, .cmp td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--border); }
.cmp thead th:first-child,
.cmp tbody th {
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--bg-card);
    min-width: 140px;
}
.cmp thead th:first-child { background: var(--bg-band); z-index: 2; }
.cmp thead th { background: var(--bg-band); font-size: 0.88rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; }
.cmp tbody th { text-align: left; font-weight: 600; color: var(--text-muted); }
.cmp td { color: var(--text-muted); }
.cmp .us { background: var(--brand-soft); color: var(--text); }
.cmp tbody tr:hover th { background: var(--bg-card-hover); }
.cmp thead .us { color: var(--brand); font-weight: 800; font-size: 1rem; }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp .y::before { content: '\2713\00a0'; color: var(--green); font-weight: 800; }
.cmp .n::before { content: '\2715\00a0'; color: var(--text-muted); font-weight: 800; opacity: 0.6; }
.fineprint { color: var(--text-muted); font-size: 0.88rem; margin-top: 24px; max-width: 780px; }

.faq code, .prose code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.86em;
    color: var(--brand); background: var(--brand-soft);
    padding: 2px 6px; border-radius: 5px; white-space: nowrap;
}

/* ── Pricing Card ── */
.price-card {
    max-width: 480px; margin: 0 auto; background: var(--bg-card);
    border: 1px solid var(--border-bright); border-radius: var(--radius-lg); padding: 44px 36px;
    text-align: center; position: relative;
    box-shadow: var(--shadow-price);
}
.price-badge {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff;
    font-size: 0.8rem; font-weight: 800; padding: 6px 18px; border-radius: 99px; white-space: nowrap;
    letter-spacing: 0.04em; text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    max-width: calc(100% - 24px);
}
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin: 16px 0 28px; }
.price-row s { color: var(--text-muted); font-size: 1.5rem; text-decoration-color: var(--brand); }
.price { font-size: 4rem; font-weight: 800; letter-spacing: -0.04em; color: var(--text); }
.once { color: var(--text-muted); font-size: 1rem; font-weight: 500; }
.price-list { list-style: none; padding: 0; margin: 0 0 32px; text-align: left; display: grid; gap: 14px; font-size: 0.98rem; }
.price-list li::before { content: '\2713'; color: var(--green); font-weight: 800; margin-right: 12px; }
.guarantee { color: var(--text-muted); font-size: 0.88rem; margin: 18px 0 0; }
.urgency { font-size: 0.88rem; color: var(--brand); margin: 8px 0 0; font-variant-numeric: tabular-nums; font-weight: 600; }

/* ── FAQ ── */
.faq { display: grid; gap: 14px; }
.faq details {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 24px;
    transition: border-color 0.2s ease;
}
.faq details:hover { border-color: var(--border-bright); }
.faq summary { cursor: pointer; font-weight: 700; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--brand); font-size: 1.5rem; line-height: 1; font-weight: 400; }
.faq details[open] summary::after { content: '\2212'; }
.faq p { color: var(--text-muted); font-size: 0.98rem; margin: 16px 0 0; line-height: 1.6; }

/* ── Final CTA & Footer ── */
.final { padding: 120px 0; background: var(--bg-card); border-top: 1px solid var(--border); }
.final img { margin: 0 auto 24px; border-radius: 20px; box-shadow: 0 0 40px rgba(249, 115, 22, 0.3); }
.final .lead { margin-bottom: 32px; }
.footer { padding: 48px 0 32px; font-size: 0.88rem; color: var(--text-muted); border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px 24px; flex-wrap: wrap; }
.footer nav { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.footer a:hover { color: var(--text); }

.footer-tools-links {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center;
    font-size: 0.84rem;
}
.footer-tools-title {
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.78rem;
}
.footer-tools-links a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}
.footer-tools-links a:hover {
    color: var(--brand);
}

/* ── Blog, Article & Free Tools Form Styles ── */
.article-header {
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.article-tag {
    background: var(--brand-soft);
    color: var(--brand);
    padding: 4px 12px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ai-summary-box {
    background: var(--bg-card);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 32px 0;
    box-shadow: var(--shadow-card);
}
.ai-summary-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.ai-summary-box p {
    margin: 0;
    font-size: 0.98rem;
    color: var(--text);
    line-height: 1.65;
}

.prose {
    font-size: 1.06rem;
    line-height: 1.8;
    color: var(--text);
}
.prose h2 {
    font-size: 1.75rem;
    margin: 48px 0 20px;
    padding-top: 12px;
}
.prose h3 {
    font-size: 1.3rem;
    margin: 32px 0 16px;
}
.prose p {
    margin-bottom: 24px;
    color: var(--text);
}
.prose ul, .prose ol {
    margin-bottom: 28px;
    padding-left: 28px;
}
.prose li {
    margin-bottom: 10px;
}
.prose strong {
    color: var(--text);
    font-weight: 700;
}

/* Inline links inside body copy need an affordance, since the global rule strips it. */
.prose a, .faq p a, .guarantee a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.prose a:hover, .faq p a:hover, .guarantee a:hover {
    color: var(--text);
}
.hero-ticks a {
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}
.hero-ticks a:hover {
    color: var(--text);
}

.tool-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card);
    margin-bottom: 48px;
}

.tool-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.tool-form-grid.full-width {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 16px;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.2s ease;
}

.input-field:focus {
    border-color: var(--brand);
}

textarea.input-field {
    resize: vertical;
    min-height: 90px;
}

.tool-result-card {
    background: var(--bg-band);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 28px;
}

.tool-result-card h4 {
    margin-bottom: 12px;
    color: var(--brand);
    font-size: 1.1rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
}

.result-row.total {
    border-bottom: none;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--brand);
}

.article-cta-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--brand-soft) 100%);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin: 64px 0 32px;
    box-shadow: var(--shadow-price);
}
.article-cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.article-cta-box p {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 28px;
}

/* ── Reveal Animation ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ── Responsive ── */
@media (max-width: 1080px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 120;
        flex-direction: column;
        gap: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border);
        padding: 8px 24px 16px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
        max-height: calc(100dvh - 74px);
        overflow-y: auto;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); min-height: 44px; display: flex; align-items: center; }
    .nav-inner > .btn { display: none; }
    .nav-toggle { display: block; margin-left: auto; }
    .theme-toggle-btn { margin-left: 0; }
}

@media (max-width: 900px) {
    .grid.features { grid-template-columns: repeat(2, 1fr); }
    .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .tool-form-grid { grid-template-columns: 1fr; }
    .hero { padding: 48px 0 56px; }
    h1 { font-size: clamp(2rem, 9vw, 3.4rem); }
}

@media (max-width: 720px) {
    body { font-size: 15px; }
    .container { padding: 0 16px; }
    .section { padding: 64px 0; }
    .section-head { margin-bottom: 36px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; white-space: normal; }
    .hero-ticks { flex-direction: column; gap: 10px; align-items: center; }
    .offer-bar { font-size: 0.8rem; padding: 8px 12px; gap: 8px; }
    .grid.features, .shots-grid { grid-template-columns: 1fr; }
    .shots-grid { gap: 36px; }
    .zoom-hint { right: 10px; bottom: 10px; }
    .lightbox { width: 100vw; max-height: 100dvh; }
    .lightbox img { max-width: 100vw; max-height: 100dvh; border-radius: 0; }
    .lightbox-close { top: 10px; right: 10px; }
    .bar-row { grid-template-columns: 1fr auto; gap: 8px 12px; font-size: 0.85rem; }
    .bar-row span:first-child { grid-column: 1; }
    .bar-val { grid-column: 2; }
    .bar-track { grid-column: 1 / -1; }
    .calc { padding: 20px 16px; }
    .price-card { padding: 36px 18px 28px; margin-inline: 0; }
    .price { font-size: 2.8rem; }
    .price-badge { white-space: normal; text-align: center; line-height: 1.3; padding: 6px 12px; }
    .price-row { flex-wrap: wrap; }
    .btn { white-space: normal; }
    .btn-lg { padding: 16px 20px; width: 100%; }
    .article-cta-box { padding: 28px 18px; }
    .article-cta-box h3 { font-size: 1.4rem; }
    .article-cta-box .btn { width: 100%; }
    .tool-box { padding: 22px 16px; }
    .faq details { padding: 16px 16px; }
    .faq summary { font-size: 1rem; }
    .faq code, .prose code { white-space: normal; overflow-wrap: anywhere; }
    .cmp th, .cmp td { padding: 12px 14px; }
    .table-wrap::before {
        content: 'Swipe to compare \2192';
        display: block;
        text-align: right;
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--text-muted);
        padding: 8px 12px 0;
    }
    .article-header { padding: 28px 0 24px; }
    .prose h2 { font-size: 1.4rem; margin-top: 32px; }
    .final { padding: 72px 0; }
    .lead { font-size: 1.02rem; }
}

@media (max-width: 520px) {
    .theme-toggle-btn span { display: none; }
    .nav-inner { gap: 8px; }
    .brand { gap: 8px; font-size: 1.02rem; }
    .brand img { width: 32px; height: 32px; }
    .media-action { padding: 8px 10px; }
    .stat-strip { padding: 20px 12px; gap: 16px; }
    .stat-strip b { font-size: 1.5rem; }
    .card { padding: 22px; }
    .result-row { gap: 12px; font-size: 0.92rem; }
    .result-row.total { font-size: 1.1rem; }
    .ambient-glow { width: 320px; height: 320px; }
}
