
/* =====================================================
   ROOT - LIGHT PROFESSIONAL THEME
===================================================== */

:root {
    --bg: #ffffff;
    --bg-soft: #f7f7f5;
    --bg-card: #ffffff;

    --text: #181818;
    --text-dark: #101010;

    --muted: #6f6f6f;
    --muted-dark: #8a8a8a;

    --line: #e5e5e5;
    --line-soft: #eeeeee;

    --accent: #f97316;
    --accent-dark: #ea580c;
    --accent-light: #fff1e8;

    --container: 1240px;

    --transition: all 0.35s ease;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--bg);
    color: var(--text);

    font-family: "DM Sans", sans-serif;

    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


button {
    font-family: inherit;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid var(--line-soft);

    transition: var(--transition);
}


.nav-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.logo,
.footer-logo {
    font-family: "Manrope", sans-serif;

    font-size: 17px;

    font-weight: 800;

    letter-spacing: -0.5px;

    color: var(--text-dark);
}


.logo span,
.footer-logo span {
    color: var(--accent);
}


.desktop-nav {
    display: flex;

    align-items: center;

    gap: 30px;

    margin-left: auto;
}


.desktop-nav a {
    color: var(--muted);

    font-size: 13px;

    transition: var(--transition);
}


.desktop-nav a:hover {
    color: var(--accent);
}


.talk-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 20px;

    background: var(--text-dark);

    border: 1px solid var(--text-dark);

    color: #ffffff;

    font-size: 12px;

    transition: var(--transition);
}


.talk-btn:hover {
    background: var(--accent);

    border-color: var(--accent);
}


.menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--line);

    background: #ffffff;

    cursor: pointer;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 6px;
}


.menu-btn span {
    width: 18px;
    height: 2px;

    background: var(--text-dark);

    transition: var(--transition);
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    position: fixed;

    top: 82px;
    left: 0;

    width: 100%;

    height: 0;

    overflow: hidden;

    background: #ffffff;

    z-index: 999;

    transition: 0.4s ease;

    border-bottom: 1px solid var(--line);
}


.mobile-menu.active {
    height: calc(100vh - 82px);
}


.mobile-menu-inner {
    padding: 50px 24px;

    display: flex;

    flex-direction: column;

    gap: 25px;
}


.mobile-menu a {
    font-size: 24px;

    font-family: "Manrope", sans-serif;

    font-weight: 700;

    color: var(--text-dark);
}


.mobile-talk-btn {
    margin-top: 20px;

    color: var(--accent) !important;
}


/* =====================================================
   HERO
===================================================== */

.legal-hero {
    padding: 120px 0 90px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffffff 55%,
            #fff5ee 100%
        );

    border-bottom: 1px solid var(--line);
}


.hero-eyebrow,
.section-label {
    color: var(--accent);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.legal-hero h1 {
    margin-top: 25px;

    max-width: 900px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(60px, 10vw, 130px);

    line-height: 0.95;

    letter-spacing: -6px;

    font-weight: 700;

    color: var(--text-dark);
}


.legal-hero h1 span,
.intro-content h2 span,
.bottom-cta h2 span {
    color: var(--accent);
}


.hero-bottom {
    margin-top: 60px;

    display: grid;

    grid-template-columns: 1fr 420px;

    gap: 80px;

    align-items: end;
}


.hero-bottom > p {
    max-width: 620px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.7;
}


.date-info {
    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #ffffff;

    border: 1px solid var(--line);
}


.date-info div {
    padding: 20px;
}


.date-info div:first-child {
    border-right: 1px solid var(--line);
}


.date-info span {
    display: block;

    color: var(--muted-dark);

    text-transform: uppercase;

    font-size: 9px;

    letter-spacing: 1px;

    margin-bottom: 8px;
}


.date-info strong {
    color: var(--text-dark);

    font-size: 12px;

    font-weight: 600;
}


/* =====================================================
   INTRO SECTION
===================================================== */

.intro-section {
    padding: 110px 0;

    background: var(--bg);

    border-bottom: 1px solid var(--line);
}


.intro-grid {
    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 80px;
}


.intro-content {
    max-width: 760px;
}


.intro-content h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(40px, 5vw, 68px);

    line-height: 1.08;

    letter-spacing: -3px;

    margin-bottom: 40px;

    color: var(--text-dark);
}


.intro-content > p {
    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 18px;
}


.intro-content strong,
.term-body strong {
    color: var(--text-dark);
}


.notice {
    margin-top: 45px;

    padding: 30px;

    background: var(--accent-light);

    border-left: 3px solid var(--accent);

    display: grid;

    grid-template-columns: 60px 1fr;

    gap: 20px;
}


.notice-number {
    color: var(--accent);

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    font-weight: 700;
}


.notice p {
    color: #555555;

    font-size: 16px;

    line-height: 1.7;
}


/* =====================================================
   TERMS MAIN
===================================================== */

.terms-main {
    padding: 100px 0 120px;

    background: var(--bg-soft);
}


.terms-wrapper {
    display: grid;

    grid-template-columns: 250px 1fr;

    gap: 90px;

    align-items: start;
}


/* =====================================================
   SIDEBAR
===================================================== */

.terms-sidebar {
    position: sticky;

    top: 110px;

    background: #ffffff;

    border: 1px solid var(--line);

    padding: 25px;
}


.sidebar-title {
    color: var(--accent);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--line);
}


.terms-nav {
    display: flex;

    flex-direction: column;
}


.terms-nav a {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 0;

    color: var(--muted);

    font-size: 12px;

    border-bottom: 1px solid var(--line-soft);

    transition: var(--transition);
}


.terms-nav a span {
    color: var(--muted-dark);

    font-size: 10px;

    min-width: 20px;
}


.terms-nav a:hover,
.terms-nav a.active {
    color: var(--text-dark);

    padding-left: 5px;
}


.terms-nav a.active {
    color: var(--accent);

    font-weight: 600;
}


.terms-nav a.active span {
    color: var(--accent);
}


/* =====================================================
   TERMS CONTENT
===================================================== */

.terms-content {
    max-width: 850px;
}


.term-section {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 35px;

    padding: 0 0 75px;

    margin-bottom: 75px;

    border-bottom: 1px solid var(--line);
}


.term-index {
    color: var(--accent);

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    font-weight: 700;
}


.term-body h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(30px, 3vw, 42px);

    line-height: 1.15;

    letter-spacing: -1.8px;

    margin-bottom: 30px;

    color: var(--text-dark);
}


.term-body p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.85;

    margin-bottom: 18px;
}


/* =====================================================
   RESTRICTION CARD
===================================================== */

.restriction-card,
.results-card {
    margin: 35px 0;

    padding: 35px;

    background: #ffffff;

    border: 1px solid var(--line);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.03);
}


.restriction-card > span,
.results-card > span,
.agreement > div > span {
    color: var(--accent);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.restriction-card h3,
.results-card h3 {
    max-width: 600px;

    margin: 18px 0 25px;

    font-family: "Manrope", sans-serif;

    font-size: 25px;

    line-height: 1.3;

    letter-spacing: -1px;

    color: var(--text-dark);
}


.restriction-card ul {
    list-style: none;

    display: grid;

    gap: 14px;
}


.restriction-card li {
    position: relative;

    padding-left: 20px;

    color: var(--muted);

    font-size: 14px;
}


.restriction-card li::before {
    content: "—";

    position: absolute;

    left: 0;

    color: var(--accent);
}


/* =====================================================
   RESULTS CARD
===================================================== */

.results-card {
    background: linear-gradient(
        135deg,
        #ffffff,
        #fff7f2
    );

    border-left: 3px solid var(--accent);
}


.results-card p {
    margin-bottom: 0;
}


/* =====================================================
   CONTACT LINK
===================================================== */

.last-term {
    border-bottom: none;

    margin-bottom: 50px;
}


.contact-link {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 20px;

    padding-bottom: 10px;

    border-bottom: 2px solid var(--accent);

    color: var(--accent);

    font-size: 14px;

    font-weight: 600;

    transition: var(--transition);
}


.contact-link span {
    font-size: 20px;

    transition: var(--transition);
}


.contact-link:hover span {
    transform: translateX(7px);
}


/* =====================================================
   AGREEMENT
===================================================== */

.agreement {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 30px;

    padding: 50px;

    background: #ffffff;

    border: 1px solid var(--line);
}


.agreement-number {
    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    background: var(--accent);

    color: #ffffff;

    font-weight: bold;
}


.agreement h3 {
    font-family: "Manrope", sans-serif;

    font-size: 28px;

    line-height: 1.3;

    margin: 15px 0;

    color: var(--text-dark);
}


.agreement p {
    max-width: 650px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   BOTTOM CTA
===================================================== */

.bottom-cta {
    padding: 120px 0;

    background: #fff4ed;

    border-top: 1px solid var(--line);
}


.bottom-cta-grid {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 50px;
}


.bottom-cta h2 {
    margin-top: 25px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 6vw, 76px);

    line-height: 1;

    letter-spacing: -3px;

    color: var(--text-dark);
}


.large-cta {
    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding: 16px 25px;

    background: var(--text-dark);

    color: #ffffff;

    font-size: 15px;

    transition: var(--transition);
}


.large-cta span {
    font-size: 24px;

    transition: var(--transition);
}


.large-cta:hover {
    background: var(--accent);
}


.large-cta:hover span {
    transform: translateX(6px);
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #171717;

    color: #ffffff;
}


.footer-top {
    padding: 65px 0;

    display: flex;

    justify-content: space-between;

    gap: 50px;
}


.footer-logo {
    color: #ffffff;
}


.footer-top p {
    margin-top: 18px;

    max-width: 320px;

    color: #a5a5a5;

    font-size: 13px;

    line-height: 1.7;
}


.footer-links {
    display: flex;

    gap: 25px;

    align-items: start;
}


.footer-links a {
    color: #a5a5a5;

    font-size: 12px;

    transition: var(--transition);
}


.footer-links a:hover {
    color: var(--accent);
}


.footer-bottom {
    padding: 25px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #777777;

    font-size: 11px;
}


.footer-bottom a:hover {
    color: var(--accent);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .desktop-nav {
        display: none;
    }


    .menu-btn {
        display: flex;
    }


    .talk-btn {
        margin-left: auto;
    }


    .hero-bottom {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .date-info {
        max-width: 500px;
    }


    .intro-grid,
    .terms-wrapper {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .terms-sidebar {
        position: static;
    }


    .terms-nav {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 0 30px;
    }

}


@media (max-width: 768px) {

    .container {
        width: min(calc(100% - 36px), var(--container));
    }


    .nav-container {
        min-height: 72px;
    }


    .mobile-menu {
        top: 72px;
    }


    .legal-hero {
        padding: 80px 0 65px;
    }


    .legal-hero h1 {
        letter-spacing: -3px;
    }


    .hero-bottom {
        margin-top: 45px;
    }


    .hero-bottom > p {
        font-size: 16px;
    }


    .intro-section {
        padding: 80px 0;
    }


    .intro-content h2 {
        letter-spacing: -2px;
    }


    .terms-main {
        padding: 70px 0 90px;
    }


    .terms-nav {
        grid-template-columns: 1fr;
    }


    .term-section {
        grid-template-columns: 1fr;

        gap: 20px;

        padding-bottom: 50px;

        margin-bottom: 50px;
    }


    .term-body h2 {
        font-size: 30px;
    }


    .agreement {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 30px;
    }


    .bottom-cta {
        padding: 80px 0;
    }


    .bottom-cta-grid {
        flex-direction: column;

        align-items: flex-start;
    }


    .footer-top {
        flex-direction: column;
    }


    .footer-links {
        flex-wrap: wrap;
    }

}


@media (max-width: 500px) {

    .talk-btn {
        display: none;
    }


    .menu-btn {
        margin-left: auto;
    }


    .legal-hero h1 {
        font-size: 58px;

        letter-spacing: -3px;
    }


    .date-info {
        grid-template-columns: 1fr;
    }


    .date-info div:first-child {
        border-right: none;

        border-bottom: 1px solid var(--line);
    }


    .notice {
        grid-template-columns: 1fr;

        gap: 12px;

        padding: 25px;
    }


    .restriction-card,
    .results-card {
        padding: 25px;
    }


    .restriction-card h3,
    .results-card h3 {
        font-size: 21px;
    }


    .footer-bottom {
        flex-direction: column;
    }

}

