/* ========================================
   LANDING PAGE STYLES
   Design tokens are inherited from main.css
   ======================================== */

/* ----------------------------------------
   LAYOUT RESET FOR LANDING
   ---------------------------------------- */
body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 100vh;
}

/* ----------------------------------------
   SITE HEADER (Reusable component)
   Fixed navigation at top
   ---------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.site-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header__brand {
    display: flex;
    align-items: center;
}

.site-header__logo {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-header__link {
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: color 0.2s;
}

.site-header__link:hover {
    color: var(--text-primary);
}

.site-header__btn {
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s;
}

.site-header__btn:hover {
    background: var(--accent-hover);
}

/* ----------------------------------------
   LANDING MAIN CONTAINER
   ---------------------------------------- */
.landing {
    flex: 1;
    margin-top: 60px; /* Account for fixed header */
}

/* ----------------------------------------
   LANDING SECTIONS
   ---------------------------------------- */
.landing-section {
    padding: 5rem 2rem;
}

.landing-section--alt {
    background: var(--bg-secondary);
}

.landing-section--cta {
    background: linear-gradient(
        180deg,
        var(--bg-primary) 0%,
        rgba(59, 130, 246, 0.05) 50%,
        var(--bg-primary) 100%
    );
}

.landing-section--final {
    padding: 6rem 2rem;
}

.landing-section__container {
    max-width: 720px;
    margin: 0 auto;
}

/* ----------------------------------------
   HERO SECTION
   ---------------------------------------- */
.landing-hero {
    padding: 8rem 2rem 6rem;
    text-align: center;
}

.landing-hero__title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.landing-hero__subtitle {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.landing-hero__body {
    max-width: 600px;
    margin: 0 auto;
}

.landing-hero__body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.landing-hero__body p:last-child {
    margin-bottom: 0;
}

/* ----------------------------------------
   CONTENT BLOCKS
   ---------------------------------------- */
.landing-content {
    line-height: 1.8;
}

.landing-content--centered {
    text-align: center;
}

.landing-content p {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.landing-content__lead {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.landing-content__note {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.landing-content__note p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.landing-content__note p:last-child {
    margin-bottom: 0;
}

/* ----------------------------------------
   LISTS
   ---------------------------------------- */
.landing-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.landing-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: var(--text-primary);
    opacity: 0.9;
}

.landing-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.7;
}

.landing-list li:last-child {
    margin-bottom: 0;
}

/* ----------------------------------------
   QUOTE
   ---------------------------------------- */
.landing-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-secondary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-left: 3px solid var(--accent);
    background: rgba(59, 130, 246, 0.05);
    border-radius: 0 8px 8px 0;
}

/* ----------------------------------------
   CTA SECTION
   ---------------------------------------- */
.landing-cta__headline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.landing-cta__actions {
    margin-top: 2.5rem;
}

.landing-cta__btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

.landing-cta__btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* ----------------------------------------
   FAQ SECTION
   ---------------------------------------- */
.landing-faq__list {
    margin: 0;
    padding: 0;
}

.landing-faq__item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.landing-faq__item:first-child {
    padding-top: 0;
}

.landing-faq__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.landing-faq__question {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.landing-faq__answer {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ----------------------------------------
   SITE FOOTER (Reusable component)
   ---------------------------------------- */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
}

.site-footer__container {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.site-footer__contacts {
    margin-bottom: 1.5rem;
}

.site-footer__contacts p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.site-footer__contacts a {
    color: var(--text-primary);
    text-decoration: none;
}

.site-footer__contacts a:hover {
    color: var(--accent);
}

.site-footer__legal {
    margin-bottom: 1.5rem;
}

.site-footer__legal a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.site-footer__legal a:hover {
    color: var(--text-primary);
}

.site-footer__copyright {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.site-footer__copyright p {
    margin: 0;
}

/* ----------------------------------------
   RESPONSIVE ADJUSTMENTS
   ---------------------------------------- */
@media (max-width: 768px) {
    .site-header__container {
        padding: 0.875rem 1.25rem;
    }

    .site-header__logo {
        font-size: 1.15rem;
    }

    .landing-section {
        padding: 3.5rem 1.25rem;
    }

    .landing-hero {
        padding: 6rem 1.25rem 4rem;
    }

    .landing-hero__title {
        font-size: 2.25rem;
    }

    .landing-hero__subtitle {
        font-size: 1.1rem;
    }

    .landing-hero__body p {
        font-size: 1rem;
    }

    .landing-content p,
    .landing-list li {
        font-size: 1rem;
    }

    .landing-quote {
        font-size: 1.1rem;
        padding: 1rem 1.25rem;
    }

    .landing-cta__headline {
        font-size: 1.25rem;
    }

    .landing-faq__question {
        font-size: 1rem;
    }

    .landing-faq__answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .site-header__nav {
        gap: 0.5rem;
    }

    .site-header__link {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }

    .site-header__btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .landing-hero__title {
        font-size: 1.85rem;
    }

    .landing-hero__subtitle br {
        display: none;
    }

    .landing-cta__btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

