:root {
    --bg: #fbf7ee;
    --panel: #ffffff;
    --ink: #191714;
    --muted: #625d54;
    --line: #e7ddcc;
    --gold: #f6b73c;
    --amber: #df7b22;
    --green: #16775a;
    --red: #c63d2f;
    --shadow: 0 22px 60px rgba(72, 44, 13, 0.14);
    --radius: 8px;
    --max: 1180px;
    color-scheme: light;
}

html.dark {
    --bg: #12110f;
    --panel: #1e1b18;
    --ink: #fff6e8;
    --muted: #cbbda9;
    --line: #3b332a;
    --gold: #ffc857;
    --amber: #ff9d3d;
    --green: #4fc08f;
    --red: #ff705f;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 44px);
    border-bottom: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: #1c1207;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(223, 123, 34, 0.28);
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.main-nav {
    display: flex;
    gap: 20px;
    color: var(--muted);
    font-size: 14px;
}

.main-nav a {
    text-decoration: none;
}

.main-nav a:hover {
    color: var(--ink);
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--panel);
    color: var(--ink);
    cursor: pointer;
    font-size: 18px;
}

main {
    overflow: hidden;
}

.hero,
.section,
.final-cta {
    width: min(var(--max), calc(100% - 36px));
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
    min-height: calc(100vh - 72px);
    padding: 56px 0 42px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(38px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.2;
}

.lead {
    max-width: 660px;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.final-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: var(--radius);
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: #201206;
    box-shadow: 0 16px 34px rgba(223, 123, 34, 0.28);
}

.btn.secondary {
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--ink);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust-row span {
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: color-mix(in srgb, var(--panel) 78%, transparent);
    color: var(--muted);
    font-size: 13px;
}

.hero-media {
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: radial-gradient(circle at 20% 10%, color-mix(in srgb, var(--gold) 22%, transparent), transparent 38%), var(--panel);
    box-shadow: var(--shadow);
}

.section {
    padding: clamp(54px, 8vw, 98px) 0;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
}

.split.reverse {
    grid-template-columns: 430px minmax(0, 1fr);
}

.quick-card,
.info-card,
.phone-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.quick-card {
    padding: 26px;
}

.quick-card ul {
    padding-left: 20px;
    color: var(--muted);
}

.text-link {
    color: var(--green);
    font-weight: 800;
}

.feature-band {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--panel) 92%, transparent), color-mix(in srgb, var(--gold) 14%, var(--panel)));
    box-shadow: var(--shadow);
}

.feature-image {
    overflow: hidden;
    border-radius: 18px;
}

.steps {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.steps div {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 12px;
}

.steps strong {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--bg);
}

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

.info-card {
    padding: 24px;
}

.info-card p,
.section p,
.quick-card li,
.steps span,
td {
    color: var(--muted);
}

.phone-card {
    padding: 20px;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

th,
td {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    background: color-mix(in srgb, var(--gold) 16%, var(--panel));
    color: var(--ink);
}

tr:last-child td {
    border-bottom: 0;
}

.faq {
    max-width: 880px;
}

details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    margin-bottom: 12px;
    padding: 16px 18px;
}

summary {
    cursor: pointer;
    font-weight: 800;
}

details p {
    margin: 12px 0 0;
}

.final-cta {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 70px;
    padding: clamp(30px, 5vw, 56px);
    border-radius: 24px;
    background: linear-gradient(135deg, var(--ink), #442612);
    color: #fff6e8;
}

.final-cta p {
    max-width: 760px;
    color: #eadcc8;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 26px clamp(18px, 4vw, 44px);
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.site-footer p {
    margin: 0;
}

@media (max-width: 980px) {
    .main-nav {
        display: none;
    }

    .hero,
    .split,
    .split.reverse,
    .feature-band {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-media,
    .feature-image,
    .phone-card {
        max-width: 560px;
        width: 100%;
        margin: 0 auto;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .site-header {
        gap: 12px;
    }

    .brand small {
        display: none;
    }

    .hero,
    .section,
    .final-cta {
        width: min(100% - 28px, var(--max));
    }

    .hero-actions,
    .btn {
        width: 100%;
    }

    .trust-row span {
        width: calc(50% - 5px);
        text-align: center;
    }

    .feature-band {
        padding: 20px;
        border-radius: 18px;
    }

    .site-footer {
        flex-direction: column;
    }
}
