:root {
    --ink: #181511;
    --ink-soft: #4a443b;
    --paper: #f3ecda;
    --paper-dark: #e8dcbb;
    --cream: #faf6e9;
    --white: #ffffff;
    --red: #c8102e;
    --red-dark: #94081f;
    --ochre: #c68a2e;
    --green: #27865f;
    --line: rgba(24, 21, 17, 0.14);
    --line-soft: rgba(24, 21, 17, 0.07);
    --muted: #6b7280;
    --shadow: 0 18px 38px rgba(24, 21, 17, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    background: var(--ink);
    color: var(--cream);
    box-shadow: inset 0 -1px 0 rgba(250, 246, 233, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    text-decoration: none;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--cream);
    background: var(--red);
    font-size: 14px;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: .05em;
    border: 1.5px solid rgba(250, 246, 233, 0.3);
    transform: rotate(-3deg);
    flex-shrink: 0;
}
.brand-mark svg { display: block; width: 28px; height: 28px; }
.brand-copy {
    display: grid;
    line-height: 0.98;
}
.brand-copy small {
    color: rgba(250, 246, 233, 0.45);
    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
}
.brand-copy strong,
.brand-copy span {
    color: var(--cream);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: .04em;
    font-weight: 400;
}
.brand-copy strong { font-size: 18px; }
.brand-copy span { font-size: 18px; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}
.main-nav a {
    color: rgba(250, 246, 233, 0.75);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .15s ease;
}
.main-nav a:hover { color: var(--cream); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.button:hover {
    transform: translateY(-1px);
}
.button.large {
    min-height: 52px;
    padding: 0 24px;
    font-size: 15px;
}
.button-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 10px 18px rgba(200, 16, 46, 0.25);
}
.button-primary:hover { background: var(--red-dark); }
.button-secondary {
    background: transparent;
    border-color: rgba(24, 21, 17, 0.18);
    color: var(--ink);
}
.button-ghost {
    background: transparent;
    border-color: rgba(250, 246, 233, 0.24);
    color: var(--cream);
}

.hero {
    padding: 72px 0 56px;
    background:
        radial-gradient(circle at top left, rgba(198, 138, 46, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(24, 21, 17, 0.02), rgba(24, 21, 17, 0));
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}
.eyebrow {
    margin: 0 0 14px;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.hero-copy h1 {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 0.96;
    letter-spacing: -.06em;
    max-width: 660px;
}
.lead {
    max-width: 610px;
    margin: 20px 0 0;
    color: var(--ink-soft);
    font-size: 1.15rem;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}
.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 600;
}
.hero-points li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-points li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
}

.hero-panel {
    display: flex;
    justify-content: center;
}
.panel-card {
    width: min(100%, 470px);
    border-radius: 22px;
    padding: 28px 28px 20px;
    background: linear-gradient(180deg, #fffaf0, rgba(255,255,255,0.96));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.panel-card-primary {
    background: linear-gradient(180deg, rgba(24,21,17,0.98), rgba(42,36,28,0.92));
    color: var(--cream);
}
.panel-kicker {
    margin: 0 0 12px;
    color: rgba(250, 246, 233, 0.7);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.panel-card h2 {
    margin: 0 0 20px;
    font-size: clamp(1.5rem, 2vw, 2.2rem);
    line-height: 1.15;
}
.panel-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 11px;
    color: rgba(250,246,233,0.8);
    font-size: 0.98rem;
}

.trust-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,0.25);
}
.trust-wrap {
    display: grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: 12px;
    align-items: center;
    min-height: 68px;
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section {
    padding: 92px 0;
}
.section-alt {
    background: rgba(255,255,255,0.3);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}
.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}
.section-heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.1;
    letter-spacing: -.04em;
}
.narrow { max-width: 700px; }

.card-grid {
    display: grid;
    gap: 24px;
}
.three-up { grid-template-columns: repeat(3, minmax(0,1fr)); }
.four-up { grid-template-columns: repeat(4, minmax(0,1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0,1fr)); }

.info-card,
.feature-card {
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 22px;
    box-shadow: 0 10px 24px rgba(24,21,17,0.03);
}
.icon-wrap {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(200, 16, 46, 0.08);
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 14px;
}
.info-card h3,
.feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    line-height: 1.2;
}
.info-card p,
.feature-card p,
.pricing-copy p,
.quote-box p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.7;
}

.soft-card {
    background: linear-gradient(180deg, rgba(250,246,233,0.8), rgba(255,255,255,0.75));
}
.text-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

.split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}
.check-list {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: grid;
    gap: 16px;
    font-size: 1rem;
    color: var(--ink-soft);
}
.check-list li {
    position: relative;
    padding-left: 30px;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(39, 134, 95, 0.12);
    color: var(--green);
    font-weight: 800;
}

.quote-box {
    background: linear-gradient(180deg, rgba(24,21,17,0.96), rgba(42,36,28,0.92));
    color: var(--cream);
    border-radius: 22px;
    padding: 30px 26px;
    box-shadow: var(--shadow);
}
.quote-box p {
    color: rgba(250,246,233,0.92);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 18px;
}
.quote-box span {
    color: rgba(250,246,233,0.7);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pricing-section {
    padding: 92px 0 110px;
}
.pricing-wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: center;
}
.pricing-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}
.pricing-card {
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 28px 26px;
}
.pricing-label {
    margin: 0 0 12px;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}
.price {
    font-size: clamp(2.1rem, 3vw, 3rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.05em;
}
.period {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.pricing-card ul {
    margin: 18px 0 22px;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: var(--ink-soft);
}
.btn-block { width: 100%; }

.site-footer {
    padding: 30px 0 52px;
    background: var(--ink);
    color: rgba(250,246,233,0.7);
}
.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-brand { align-items: center; }
.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(250,246,233,0.7);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.footer-links a:hover { color: var(--cream); }
.site-footer p {
    margin: 0;
    color: rgba(250,246,233,0.6);
    font-size: 0.85rem;
}

@media (max-width: 980px) {
    .hero-grid,
    .split-layout,
    .pricing-wrap,
    .three-up,
    .four-up {
        grid-template-columns: 1fr;
    }
    .two-up { grid-template-columns: 1fr; }
    .nav-wrap {
        flex-wrap: wrap;
        justify-content: center;
        padding: 18px 0;
    }
    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        margin-left: 0;
    }
    .nav-actions {
        width: 100%;
        justify-content: center;
    }
    .trust-wrap {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 640px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 20;
    }
    .hero {
        padding-top: 52px;
    }
    .hero-copy h1 {
        font-size: clamp(2.3rem, 15vw, 4rem);
    }
    .button.large {
        width: 100%;
    }
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .nav-actions {
        flex-direction: column;
        width: 100%;
    }
    .nav-actions .button {
        width: 100%;
    }
    .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .trust-wrap {
        grid-template-columns: 1fr;
        padding: 16px 0;
    }
}
