:root {
    --bg: #ffffff;
    --bg-soft: #f7f7f5;
    --card: #ffffff;

    --text: #181818;
    --text-dark: #101010;

    --muted: #6f6f6f;
    --muted-light: #909090;

    --line: #e5e5e5;
    --line-soft: #eeeeee;

    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fff1e8;

    --container: 1240px;
    --transition: all 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}


a {
    color: inherit;
    text-decoration: none;
}


.container {
    width: min(92%, var(--container));
    margin: auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(12px);
}


.nav-wrapper {
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo,
.footer-logo {
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.5px;
}


.logo span,
.footer-logo span {
    color: var(--orange);
}


.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}


.desktop-nav > a:not(.nav-button) {
    font-size: 13px;
    font-weight: 600;
    color: #555;

    transition: var(--transition);
}


.desktop-nav > a:not(.nav-button):hover {
    color: var(--orange);
}


.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: var(--text);
    color: #fff;

    padding: 12px 18px;
    border-radius: 4px;

    font-size: 12px;
    font-weight: 700;

    transition: var(--transition);
}


.nav-button:hover {
    background: var(--orange);
    transform: translateY(-2px);
}


.nav-button span,
.cta-button span {
    font-size: 16px;
}


/* Mobile menu */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--line);
    background: #fff;

    cursor: pointer;
}


.menu-toggle span {
    display: block;

    width: 18px;
    height: 2px;

    background: var(--text);

    margin: 5px auto;
}


.mobile-menu {
    display: none;

    padding: 20px;

    border-top: 1px solid var(--line);
    background: #fff;
}


.mobile-menu a {
    display: block;

    padding: 12px 0;

    font-size: 14px;
    font-weight: 600;

    border-bottom: 1px solid var(--line-soft);
}


.mobile-cta {
    color: var(--orange);
}


/* =========================
   HERO
========================= */

.legal-hero {
    padding: 115px 0 100px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(249, 115, 22, 0.08),
            transparent 30%
        ),
        var(--bg-soft);

    border-bottom: 1px solid var(--line);
}


.eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


.legal-hero h1 {
    max-width: 850px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 7vw, 82px);
    line-height: 1.02;

    letter-spacing: -3px;

    margin-bottom: 25px;
}


.legal-hero h1 span {
    color: var(--orange);
}


.legal-hero p {
    max-width: 700px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================
   LEGAL SECTIONS
========================= */

.legal-section {
    padding: 95px 0;
}


.soft-section {
    background: var(--bg-soft);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}


.section-heading {
    display: grid;
    grid-template-columns: 70px 1fr;

    gap: 35px;

    max-width: 1050px;
}


.section-number {
    color: var(--orange);

    font-family: "Manrope", sans-serif;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;

    padding-top: 9px;
}


.section-heading h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.15;
    letter-spacing: -1.5px;

    margin-bottom: 25px;
}


.section-heading p {
    max-width: 850px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 18px;
}


/* =========================
   PRICING CARDS
========================= */

.pricing-grid {
    margin-top: 55px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


.pricing-card {
    position: relative;

    min-height: 230px;

    background: #fff;

    border: 1px solid var(--line);

    padding: 30px;

    transition: var(--transition);
}


.pricing-card:hover {
    border-color: rgba(249, 115, 22, 0.5);

    transform: translateY(-5px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}


.card-icon {
    display: inline-flex;

    width: 38px;
    height: 38px;

    align-items: center;
    justify-content: center;

    background: var(--orange-light);
    color: var(--orange);

    font-size: 10px;
    font-weight: 800;

    margin-bottom: 25px;
}


.pricing-card h3 {
    font-family: "Manrope", sans-serif;

    font-size: 20px;

    margin-bottom: 12px;
}


.pricing-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================
   HIGHLIGHT BOX
========================= */

.highlight-box {
    margin-top: 45px;

    display: flex;
    align-items: flex-start;

    gap: 22px;

    padding: 30px;

    background: var(--orange-light);

    border-left: 4px solid var(--orange);
}


.highlight-icon {
    display: flex;

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    align-items: center;
    justify-content: center;

    background: var(--orange);

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 20px;
    font-weight: 800;
}


.highlight-box h3 {
    font-family: "Manrope", sans-serif;

    font-size: 18px;

    margin-bottom: 5px;
}


.highlight-box p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================
   PAYMENT BOX
========================= */

.payment-box {
    margin-top: 50px;

    border-top: 1px solid var(--line);
}


.payment-item {
    display: flex;

    gap: 25px;

    padding: 25px 0;

    border-bottom: 1px solid var(--line);
}


.payment-item > span {
    color: var(--orange);

    font-size: 11px;
    font-weight: 800;

    min-width: 35px;
}


.payment-item strong {
    display: block;

    font-family: "Manrope", sans-serif;

    font-size: 16px;

    margin-bottom: 5px;
}


.payment-item p {
    color: var(--muted);

    font-size: 13px;
}


/* =========================
   IMPORTANT
========================= */

.important-section {
    padding: 100px 0;

    background: var(--text-dark);

    color: #fff;
}


.important-content {
    max-width: 900px;
}


.important-content h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(34px, 5vw, 58px);

    line-height: 1.12;

    letter-spacing: -2px;

    margin-bottom: 28px;
}


.important-content h2 span {
    color: var(--orange);
}


.important-content p {
    max-width: 820px;

    color: #aaa;

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 15px;
}


/* =========================
   CTA
========================= */

.cta-section {
    padding: 80px 0;

    background: var(--orange-light);

    border-top: 1px solid #ffe0ca;
}


.cta-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.cta-content h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(30px, 4vw, 46px);

    line-height: 1.15;

    letter-spacing: -1.5px;
}


.cta-content h2 span {
    color: var(--orange);
}


.cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    flex-shrink: 0;

    padding: 16px 25px;

    background: var(--text);

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    border-radius: 4px;

    transition: var(--transition);
}


.cta-button:hover {
    background: var(--orange);

    transform: translateY(-3px);
}


/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 75px 0 25px;

    background: #151515;

    color: #fff;
}


.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 70px;

    padding-bottom: 55px;

    border-bottom: 1px solid #2b2b2b;
}


.footer-brand p {
    max-width: 430px;

    color: #999;

    font-size: 13px;

    line-height: 1.8;

    margin-top: 20px;
}


.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.footer-column h4 {
    color: #fff;

    font-size: 12px;

    letter-spacing: 1px;

    margin-bottom: 12px;
}


.footer-column a {
    color: #999;

    font-size: 12px;

    transition: var(--transition);
}


.footer-column a:hover {
    color: var(--orange);
}


.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    color: #777;

    font-size: 11px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .desktop-nav {
        display: none;
    }


    .menu-toggle {
        display: block;
    }


    .mobile-menu.active {
        display: block;
    }


    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;

        gap: 35px;
    }
}


@media (max-width: 650px) {

    .nav-wrapper {
        height: 70px;
    }


    .legal-hero {
        padding: 80px 0 70px;
    }


    .legal-hero h1 {
        letter-spacing: -2px;
    }


    .legal-section {
        padding: 70px 0;
    }


    .section-heading {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .section-number {
        padding-top: 0;
    }


    .pricing-grid {
        grid-template-columns: 1fr;

        margin-top: 35px;
    }


    .pricing-card {
        min-height: auto;
    }


    .highlight-box {
        padding: 22px;
    }


    .cta-content {
        flex-direction: column;

        align-items: flex-start;
    }


    .cta-button {
        width: 100%;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }
}