/* Landing Page Styles — mobile-first */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   1. Dark Hero
   ========================================================================== */
.landing-hero {
    background: linear-gradient(135deg, #0f1729 0%, #1a365d 55%, #0f1729 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    inset: -45% -20%;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(56, 178, 172, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 25%, rgba(72, 187, 120, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.landing-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.landing-hero-text {
    text-align: center;
}

.landing-hero-badge {
    display: inline-block;
    background: rgba(56, 178, 172, 0.15);
    border: 1px solid rgba(56, 178, 172, 0.35);
    color: #7edce2;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

.landing-hero h1 {
    color: #ffffff;
    font-size: clamp(2rem, 5.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 0.8rem;
}

.landing-hero h1 span {
    color: #48bb78;
}

.landing-hero-sub {
    color: #b7c3d6;
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto 1.6rem;
    line-height: 1.6;
}

.landing-hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-teal, #38b2ac), var(--accent-green, #48bb78));
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(41, 147, 153, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.landing-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(41, 147, 153, 0.45);
}

.landing-hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    color: #94a3b8;
    font-size: 0.88rem;
    font-weight: 500;
}

.landing-hero-trust span {
    font-size: 1.2rem;
}

.landing-hero-image {
    text-align: center;
}

.landing-hero-image img {
    width: 100%;
    max-width: 580px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

@media (min-width: 769px) {
    .landing-hero {
        padding: 4rem 0 4.5rem;
    }

    .landing-hero-inner {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .landing-hero-text {
        flex: 1;
        text-align: left;
    }

    .landing-hero-sub {
        margin-left: 0;
    }

    .landing-hero-trust {
        justify-content: flex-start;
    }

    .landing-hero-image {
        flex: 1;
    }
}

/* ==========================================================================
   2. Social Proof Badges
   ========================================================================== */
.landing-badges {
    background: #f7fafc;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.landing-badges-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.landing-badge {
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 14px 24px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(22, 36, 53, 0.07);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    width: 100%;
    max-width: 300px;
}

.landing-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(41, 147, 153, 0.15);
    border-color: #299399;
}

.landing-badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #299399;
    display: block;
    line-height: 1.2;
}

.landing-badge-label {
    font-size: 0.85rem;
    color: #475569;
    margin-top: 2px;
    font-weight: 500;
}

@media (min-width: 769px) {
    .landing-badges-grid {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .landing-badge {
        width: auto;
        max-width: none;
        padding: 20px 36px;
    }

    .landing-badge-number {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   3. Platform Preview (product-feature rows)
   ========================================================================== */
.landing-preview {
    padding: 3rem 0;
    background: #ffffff;
}

.landing-preview .section-title {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: #162435;
}

.landing-preview .section-subtitle {
    font-size: 1rem;
    color: #6b7280;
    text-align: center;
    margin: 0 0 2.5rem;
}

.landing-feature-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    background: #fafbfc;
    border-radius: 20px;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.landing-feature-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(41, 147, 153, 0.1);
}

.landing-feature-screenshot img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(22, 36, 53, 0.1);
}

.landing-feature-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #162435;
    margin-bottom: 0.75rem;
}

.landing-feature-text p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.landing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.landing-feature-list li {
    padding: 6px 0;
    color: #4b5563;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.landing-feature-list li::before {
    content: '✓';
    color: #299399;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.landing-feature-text .landing-row-cta {
    display: inline-block;
    margin-top: 0.75rem;
    background: linear-gradient(135deg, #299399, #3fb4bb);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(41, 147, 153, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.landing-row-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(41, 147, 153, 0.35);
}

@media (min-width: 769px) {
    .landing-preview {
        padding: 5rem 0;
    }

    .landing-feature-row {
        flex-direction: row;
        align-items: center;
        gap: 2.5rem;
        padding: 2.5rem;
    }

    .landing-feature-row.reverse {
        flex-direction: row-reverse;
    }

    .landing-feature-screenshot {
        flex: 1;
        min-width: 0;
    }

    .landing-feature-text {
        flex: 1;
        min-width: 0;
    }
}

/* ==========================================================================
   4. Feature Cards Grid
   ========================================================================== */
.landing-features {
    padding: 3rem 0;
    background: #f7fafc;
}

.landing-features .section-title {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    text-align: center;
    margin-bottom: 0.4rem;
    font-weight: 800;
    color: #162435;
}

.landing-features .section-subtitle {
    font-size: 1rem;
    color: #6b7280;
    text-align: center;
    margin: 0 0 2rem;
}

.landing-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.landing-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.landing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(41, 147, 153, 0.12);
    border-color: #299399;
}

.landing-card-image {
    background: #f1f5f9;
    overflow: hidden;
}

.landing-card-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.landing-card-body {
    padding: 16px 18px 20px;
}

.landing-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #162435;
    margin: 0 0 6px;
}

.landing-card-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
}

@media (min-width: 520px) {
    .landing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .landing-features {
        padding: 5rem 0;
    }

    .landing-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* ==========================================================================
   5. Mid-page CTA Band
   ========================================================================== */
.landing-mid-cta {
    background: linear-gradient(135deg, #0f1729, #1a365d);
    padding: 3rem 0;
    text-align: center;
}

.landing-mid-cta h2 {
    color: #ffffff;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.landing-mid-cta .landing-mid-pricing {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.landing-mid-cta .landing-mid-pricing .old {
    text-decoration: line-through;
    color: #64748b;
}

.landing-mid-cta .landing-mid-pricing .price {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.4rem;
}

.landing-mid-cta .landing-hero-cta {
    margin-bottom: 1rem;
}

.landing-mid-cta .landing-hero-trust {
    color: #94a3b8;
}

@media (min-width: 769px) {
    .landing-mid-cta {
        padding: 4.5rem 0;
    }
}

/* ==========================================================================
   Retained Sections — Trust + Final CTA
   ========================================================================== */
.trust-section {
    text-align: center;
    padding: 3rem 0;
    background: #ffffff;
}

.trust-section .section-title {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
    color: #162435;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.trust-item {
    padding: 24px 20px;
    background: #fafbfc;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.trust-item:hover {
    border-color: #299399;
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(41, 147, 153, 0.12);
}

.trust-icon {
    font-size: 40px;
    margin-bottom: 14px;
}

.trust-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #162435;
    font-weight: 700;
}

.trust-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (min-width: 769px) {
    .trust-section {
        padding: 5rem 0;
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .trust-icon {
        font-size: 48px;
    }
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(22, 36, 53, 0.03) 0%, rgba(41, 147, 153, 0.05) 100%);
}

.final-cta h2 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    margin-bottom: 12px;
    color: #162435;
    font-weight: 800;
}

.final-cta .hero-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    margin: 0 auto 2rem;
    max-width: 500px;
}

.price-box {
    background: #ffffff;
    border: 3px solid #299399;
    padding: 20px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(41, 147, 153, 0.12);
    display: inline-block;
}

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1rem;
}

.current-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: #162435;
    margin: 6px 0;
}

.price-increase-warning {
    color: #e67e00;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (min-width: 769px) {
    .final-cta {
        padding: 5rem 0;
    }

    .price-box {
        padding: 30px 50px;
    }

    .current-price {
        font-size: 3rem;
    }
}

/* ==========================================================================
   Shared Utility
   ========================================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
