/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #FA9407;
    --black: #111111;
    --text: #222222;
    --gray: #666666;
    --light-gray: #e9e9e9;
    --background: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
}

a {
    color: inherit;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.container {
    width: 100%;
    max-width: 1100px;
    min-height: 100vh;

    margin: 0 auto;
    padding: 30px 40px 25px;

    display: flex;
    flex-direction: column;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--light-gray);
}

.brand {
    color: var(--black);
    text-decoration: none;

    font-size: 19px;
    font-weight: 800;

    letter-spacing: 3px;
}

.app-label {
    color: #888;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.5px;
}


/* =========================================================
   HOME — HERO
========================================================= */

.hero {
    width: 100%;
    max-width: 760px;

    margin: 100px auto 80px;

    text-align: center;
}

.icon {
    width: 64px;
    height: 64px;

    margin: 0 auto 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--orange);
    color: #fff;

    border-radius: 17px;

    font-size: 29px;
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;

    line-height: 1.1;
    letter-spacing: -1.5px;

    margin-bottom: 16px;
}

.subtitle {
    font-size: 20px;
    line-height: 1.4;

    margin-bottom: 18px;
}

.description {
    max-width: 650px;

    margin: 0 auto 32px;

    color: var(--gray);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   GOOGLE PLAY BUTTON
========================================================= */

.download {
    display: inline-block;

    padding: 14px 23px;

    border-radius: 10px;

    background: var(--orange);
    color: #fff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        opacity .2s,
        transform .2s;
}

.download:hover {
    opacity: .85;
    transform: translateY(-1px);
}


/* =========================================================
   HOME — FEATURES
========================================================= */

.features {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-bottom: 35px;

    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.feature {
    padding: 28px 25px;

    text-align: center;
}

.feature + .feature {
    border-left: 1px solid var(--light-gray);
}

.feature strong {
    display: block;

    font-size: 16px;

    margin-bottom: 8px;
}

.feature span {
    display: block;

    color: #777;

    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   FAQ — HERO
========================================================= */

.faq-hero {
    width: 100%;
    max-width: 680px;

    margin: 80px auto 75px;

    text-align: center;
}

.faq-icon {
    width: 64px;
    height: 64px;

    margin: 0 auto 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--orange);
    color: #fff;

    border-radius: 17px;

    font-size: 30px;
    font-weight: 700;
}

.faq-hero h1 {
    font-size: 42px;
    font-weight: 700;

    line-height: 1.1;
    letter-spacing: -1px;

    margin-bottom: 16px;
}

.faq-hero p {
    max-width: 580px;

    margin: 0 auto;

    color: var(--gray);

    font-size: 17px;
    line-height: 1.65;
}


/* =========================================================
   FAQ — CONTAINER
========================================================= */

.faq-container {
    width: 100%;
    max-width: 850px;

    margin: 0 auto 75px;
}

.faq-heading {
    margin-bottom: 28px;
}

.faq-heading span {
    color: var(--orange);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.faq-heading h2 {
    color: var(--black);

    font-size: 28px;
    line-height: 1.2;

    margin: 7px 0;
}

.faq-heading p {
    color: #888;

    font-size: 14px;
}


/* =========================================================
   FAQ — GRID
========================================================= */

.faq-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;
}

.faq-card {
    min-height: 230px;

    padding: 26px;

    border: 1px solid #e5e5e5;
    border-radius: 16px;

    background: #fff;

    transition:
        border-color .2s,
        transform .2s;
}

.faq-card:hover {
    border-color: var(--orange);

    transform: translateY(-2px);
}

.faq-number {
    width: 38px;
    height: 38px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--orange);
    color: #fff;

    font-size: 12px;
    font-weight: 700;
}

.faq-card h3 {
    color: var(--black);

    font-size: 17px;
    line-height: 1.35;

    margin-bottom: 12px;
}

.faq-card p {
    color: var(--gray);

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   FAQ — BOTTOM
========================================================= */

.faq-bottom {
    width: 100%;
    max-width: 850px;

    margin: 0 auto 40px;

    padding: 32px;

    border-radius: 17px;

    background: var(--black);
    color: #fff;
}

.faq-bottom span {
    color: var(--orange);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.faq-bottom h2 {
    font-size: 22px;

    margin: 9px 0;
}

.faq-bottom p {
    color: #aaa;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    width: 100%;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 25px;
}

.navigation a {
    padding: 11px 18px;

    border-radius: 9px;

    background: var(--orange);
    color: #fff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition:
        opacity .2s,
        transform .2s;
}

.navigation a:hover {
    opacity: .85;
    transform: translateY(-1px);
}


/* =========================================================
   LEGAL PAGES — HERO
========================================================= */

.legal-hero {
    width: 100%;
    max-width: 720px;

    margin: 75px auto 70px;

    text-align: center;
}

.legal-icon {
    width: 64px;
    height: 64px;

    margin: 0 auto 24px;
}

.legal-icon {
    width: 64px;
    height: 64px;

    margin: 0 auto 24px;

    background: transparent !important;
    border: none;
    border-radius: 0;
}

.legal-icon img {
    width: 64px;
    height: 64px;

    display: block;

    object-fit: contain;

    background: transparent !important;
    border: none;
    border-radius: 0;
}

.legal-label {
    display: block;

    margin-bottom: 12px;

    background: transparent !important;
    border: none;
    border-radius: 0;

    color: var(--orange);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.legal-hero h1 {
    font-size: 42px;
    font-weight: 700;

    line-height: 1.1;
    letter-spacing: -1px;

    margin-bottom: 16px;
}

.legal-hero > p {
    max-width: 610px;

    margin: 0 auto;

    color: var(--gray);

    font-size: 17px;
    line-height: 1.65;
}

.legal-date {
    margin-top: 22px;

    color: #999;

    font-size: 12px;
}


/* =========================================================
   LEGAL CONTENT
========================================================= */

.legal-content {
    width: 100%;
    max-width: 820px;

    margin: 0 auto 75px;
}

.legal-intro {
    padding: 30px 32px;

    margin-bottom: 18px;

    border-radius: 16px;

    background: #f7f7f7;
}

.legal-intro p {
    color: #555;

    font-size: 15px;
    line-height: 1.75;
}

.legal-intro p + p {
    margin-top: 15px;
}


/* =========================================================
   LEGAL SECTIONS
========================================================= */

.legal-section {
    display: grid;

    grid-template-columns: 48px minmax(0, 1fr);

    gap: 22px;

    padding: 30px 5px;

    border-bottom: 1px solid var(--light-gray);
}

.legal-section > span {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--orange);
    color: #fff;

    font-size: 11px;
    font-weight: 700;
}

.legal-section h2 {
    color: var(--black);

    font-size: 21px;
    line-height: 1.3;

    margin-bottom: 13px;
}

.legal-section p {
    color: var(--gray);

    font-size: 15px;
    line-height: 1.75;
}

.legal-section p + p {
    margin-top: 13px;
}

.legal-section strong {
    color: var(--black);
}

.legal-section a {
    color: var(--orange);

    font-weight: 600;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}


/* =========================================================
   LEGAL — IMPORTANT SECTION
========================================================= */

.legal-section.highlight {
    margin: 15px 0;

    padding: 30px 20px;

    border: 1px solid #f1d8b5;
    border-radius: 15px;

    background: #fffaf3;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: auto;

    padding-top: 22px;

    border-top: 1px solid var(--light-gray);

    color: #999;

    font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .container {
        max-width: 100%;

        padding-left: 28px;
        padding-right: 28px;
    }

    .hero {
        margin-top: 80px;
    }

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

    .faq-card {
        min-height: auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {
        padding: 22px 17px;
    }


    /* Header */

    .header {
        padding-bottom: 18px;
    }

    .brand {
        font-size: 17px;
        letter-spacing: 2px;
    }

    .app-label {
        font-size: 10px;
    }


    /* Home */

    .hero {
        margin: 60px auto 50px;
    }

    .hero h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .subtitle {
        font-size: 18px;
    }

    .description {
        font-size: 15px;
    }


    /* Features */

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

    .feature {
        padding: 23px 18px;
    }

    .feature + .feature {
        border-left: none;
        border-top: 1px solid var(--light-gray);
    }


    /* FAQ */

    .faq-hero {
        margin: 60px auto 55px;
    }

    .faq-hero h1 {
        font-size: 34px;
    }

    .faq-hero p {
        font-size: 15px;
    }

    .faq-container {
        margin-bottom: 55px;
    }

    .faq-heading h2 {
        font-size: 25px;
    }

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

    .faq-card {
        min-height: auto;

        padding: 23px;
    }


    /* Legal */

    .legal-hero {
        margin: 60px auto 55px;
    }

    .legal-hero h1 {
        font-size: 34px;
    }

    .legal-hero > p {
        font-size: 15px;
    }

    .legal-content {
        margin-bottom: 55px;
    }

    .legal-intro {
        padding: 24px;
    }

    .legal-section {
        grid-template-columns: 40px minmax(0, 1fr);

        gap: 15px;

        padding: 25px 2px;
    }

    .legal-section > span {
        width: 36px;
        height: 36px;
    }

    .legal-section h2 {
        font-size: 19px;
    }

    .legal-section p {
        font-size: 14px;
    }

    .legal-section.highlight {
        padding: 24px 18px;
    }


    /* Bottom */

    .faq-bottom {
        padding: 26px;
    }


    /* Navigation */

    .navigation a {
        flex: 1;

        min-width: 90px;

        text-align: center;
    }


    /* Footer */

    footer {
        justify-content: center;

        gap: 15px;

        text-align: center;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 31px;
    }

    .faq-hero h1,
    .legal-hero h1 {
        font-size: 31px;
    }

    .navigation {
        flex-direction: column;
    }

    .navigation a {
        width: 100%;
    }

    .legal-section {
        grid-template-columns: 36px minmax(0, 1fr);

        gap: 12px;
    }
}