:root {
    --orange: #ff4b12;
    --orange-dark: #d93b08;
    --black: #111820;
    --muted: #596273;
    --soft: #fff5f0;
    --line: #ffe0d4;
    --white: #ffffff;
    --shadow: 0 18px 48px rgba(17, 24, 32, 0.09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--black);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    margin: 0;
}

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

a {
    color: inherit;
}

.site-header {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #f0f2f5;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    left: 0;
    padding: 14px clamp(18px, 5vw, 56px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.brand {
    align-items: center;
    display: inline-flex;
    font-size: 1.08rem;
    font-weight: 900;
    gap: 10px;
    text-decoration: none;
}

.brand img {
    height: 38px;
    object-fit: contain;
    width: 44px;
}

.site-nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.site-nav a {
    border-radius: 8px;
    color: #2d3748;
    font-weight: 700;
    padding: 9px 12px;
    text-decoration: none;
}

.site-nav a:hover {
    background: var(--orange);
    color: #fff;
}

.menu-toggle {
    background: var(--black);
    border: 0;
    border-radius: 8px;
    color: #fff;
    display: none;
    font-weight: 800;
    padding: 10px 13px;
}

.hero,
.section,
.site-footer {
    padding-left: clamp(18px, 5vw, 56px);
    padding-right: clamp(18px, 5vw, 56px);
}

.hero {
    align-items: center;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    min-height: 88vh;
    padding-bottom: 64px;
    padding-top: 72px;
}

.eyebrow {
    color: var(--orange-dark);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 12px;
    text-transform: uppercase;
}

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

h1 {
    font-size: clamp(2.35rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.02;
    margin-bottom: 24px;
}

h1 span,
.price strong {
    color: var(--orange);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.22rem;
    line-height: 1.22;
}

.hero-text {
    color: var(--muted);
    font-size: 1.17rem;
    max-width: 680px;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    border-radius: 8px;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    padding: 13px 18px;
    text-decoration: none;
}

.button.primary {
    background: var(--orange);
    color: #fff;
}

.button.primary:hover {
    background: var(--orange-dark);
}

.button.secondary {
    border: 1px solid var(--orange);
    color: var(--orange-dark);
}

.button.secondary:hover {
    background: var(--orange);
    color: #fff;
}

.hero-facts {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 36px 0 0;
    max-width: 560px;
}

.hero-facts div {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
}

.hero-facts dt {
    color: var(--orange);
    font-size: 1.6rem;
    font-weight: 900;
}

.hero-facts dd {
    color: var(--muted);
    margin: 0;
}

.hero-visual {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(255, 75, 18, .16);
    display: flex;
    justify-content: center;
    min-height: 360px;
    padding: 40px;
}

.section {
    padding-bottom: 82px;
    padding-top: 82px;
}

.soft {
    background: var(--soft);
}

.section-heading {
    margin: 0 auto 38px;
    max-width: 820px;
    text-align: center;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

.feature-grid,
.pricing-grid,
.steps {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.price-card,
.steps article,
.contact-card,
.faq-list details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature-card,
.price-card,
.steps article {
    padding: 28px;
}

.feature-card p,
.steps p,
.price-card p,
.content-row p,
.contact-card p {
    color: var(--muted);
}

.feature-icon {
    align-items: center;
    background: var(--orange);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    height: 46px;
    justify-content: center;
    margin-bottom: 18px;
    min-width: 46px;
    padding: 0 10px;
}

.split {
    align-items: center;
    display: grid;
    gap: 52px;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.media-box {
    align-items: center;
    display: flex;
    justify-content: center;
}

.media-box img {
    max-height: 320px;
}

.check-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-grid span,
.content-row li {
    align-items: flex-start;
    display: flex;
    gap: 10px;
}

.check-grid span::before,
.content-row li::before,
.price-card li::before {
    color: var(--orange);
    content: "✓";
    font-weight: 900;
}

.content-rows {
    display: grid;
    gap: 26px;
}

.content-row {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    padding: 32px;
}

.content-row.reverse {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
}

.content-row.reverse div {
    order: 2;
}

.content-row img {
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(17, 24, 32, 0.12);
}

.content-row ul,
.price-card ul {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.steps article span {
    align-items: center;
    background: var(--orange);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    margin-bottom: 16px;
    width: 42px;
}

.price-card {
    position: relative;
}

.price-card.highlighted {
    border: 3px solid var(--orange);
}

.badge {
    background: var(--orange);
    border-radius: 999px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    padding: 7px 16px;
    position: absolute;
    right: 20px;
    top: -15px;
}

.price {
    align-items: baseline;
    display: flex;
    gap: 12px;
    margin: 18px 0 8px;
}

.price s {
    color: #dc3545;
    font-size: 1.2rem;
}

.price strong {
    font-size: 2.6rem;
}

.pricing-note {
    color: var(--muted);
    margin: 24px 0 0;
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 12px;
    margin: 0 auto;
    max-width: 860px;
}

.faq-list details {
    padding: 20px 22px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 900;
}

.faq-list p {
    color: var(--muted);
    margin: 14px 0 0;
}

.contact-section {
    background: var(--black);
}

.contact-card {
    margin: 0 auto;
    max-width: 860px;
    padding: 34px;
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 24px;
    text-align: left;
}

.contact-form label {
    color: #283241;
    display: grid;
    font-weight: 800;
    gap: 7px;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #d8dee8;
    border-radius: 8px;
    font: inherit;
    padding: 12px 13px;
}

.contact-actions a {
    color: var(--orange-dark);
    font-weight: 800;
}

.site-footer {
    align-items: center;
    background: var(--black);
    color: #fff;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding-bottom: 28px;
    padding-top: 28px;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.72);
    margin: 4px 0 0;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer a {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.legal-page {
    margin: 0 auto;
    max-width: 920px;
    padding: 64px clamp(18px, 5vw, 56px);
}

.legal-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 34px;
}

.legal-card h2 {
    font-size: 1.3rem;
    margin-top: 34px;
}

@media (max-width: 920px) {
    .site-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        width: 100%;
    }

    .site-nav.is-open {
        display: grid;
    }

    .hero,
    .split,
    .content-row,
    .content-row.reverse,
    .feature-grid,
    .pricing-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .content-row.reverse div {
        order: 0;
    }

    .hero {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .hero-facts,
    .check-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 260px;
        padding: 24px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
