/* ============================================================================
   LANDING / MARKETING PAGE STYLES
   ============================================================================ */

/* Override body for landing page — allow scrolling */
body:has(.landing-page) {
    margin: 0;
    padding: 0;
    background: #FFFFFF;
    overflow: auto;
}

.landing-page {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #222222;
    line-height: 1.6;
}

.landing-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */
.landing-hero {
    text-align: center;
    padding: 80px 24px 64px;
    background: linear-gradient(180deg, #FAF5FF 0%, #FFFFFF 100%);
}

.landing-hero .logotype {
    margin-bottom: 24px;
}

.landing-headline {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #222222;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.landing-subheadline {
    font-size: 18px;
    color: #717171;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 17px;
    border-radius: 12px;
}

/* Sections */
.landing-section {
    padding: 64px 24px;
}

.landing-section-alt {
    background: #F7F7F7;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #222222;
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: #FAF5FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #A855F7;
}

.step-icon i,
.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222222;
}

.step-card p {
    font-size: 15px;
    color: #717171;
    margin: 0;
}

/* About */
.about-content {
    max-width: 720px;
    margin: 0 auto;
}

.about-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* SMS Info Grid */
.sms-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sms-info-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sms-info-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sms-info-card h3 i,
.sms-info-card h3 svg {
    width: 20px;
    height: 20px;
    color: #A855F7;
}

.sms-info-card p {
    font-size: 15px;
    color: #717171;
    margin-bottom: 8px;
}

.sms-info-card p:last-child {
    margin-bottom: 0;
}

.sms-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sms-info-card ul li {
    font-size: 15px;
    color: #717171;
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.sms-info-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #A855F7;
    border-radius: 50%;
}

/* Policies Grid */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.policy-link-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}

.policy-link-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.policy-link-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    text-decoration: none;
}

.policy-link-card a:hover {
    color: #A855F7;
}

.policy-link-card a i,
.policy-link-card a svg {
    width: 32px;
    height: 32px;
    color: #A855F7;
    margin-bottom: 12px;
}

/* Footer */
.landing-footer {
    background: #222222;
    color: #FFFFFF;
    padding: 48px 24px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand .logotype {
    color: #FFFFFF;
}

.footer-brand .logotype .accent {
    background: linear-gradient(to right, #A855F7, #C084FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 16px;
}

.footer-legal {
    font-size: 13px;
    color: #777;
    margin-top: 4px;
}

.footer-legal:first-of-type {
    margin-top: 16px;
}

.footer-contact h4,
.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 16px;
}

.footer-contact p,
.footer-links p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact i,
.footer-contact svg {
    width: 16px;
    height: 16px;
    color: #A855F7;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a,
.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: #A855F7;
}


/* Responsive */
@media (max-width: 768px) {
    .landing-hero {
        padding: 48px 16px 40px;
    }

    .landing-headline {
        font-size: 28px;
    }

    .landing-subheadline {
        font-size: 16px;
    }

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

    .sms-info-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .landing-section {
        padding: 48px 16px;
    }
}
