/* ============================================================
   ROTSIKA — Landing Page Styles
   ============================================================ */

/* ---- NAVBAR ---- */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(13, 43, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.landing-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.landing-logo {
    text-decoration: none;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #F5A623;
    letter-spacing: 2px;
}
.landing-nav-links {
    display: flex;
    gap: 2rem;
}
.landing-nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.landing-nav-links a:hover {
    color: #F5A623;
}
.landing-nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.mobile-nav-btn {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
}

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, #0D2B1A 0%, #1A6B3C 50%, #0D2B1A 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(245,166,35,0.08) 0%, transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(26,107,60,0.15) 0%, transparent 50%);
}
.hero-content {
    position: relative;
    max-width: 700px;
}
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: 10px;
}
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    background: transparent;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}
.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.hero-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

/* ---- SECTIONS ---- */
.section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.section-alt {
    background: #f8faf9;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}
.section-alt > * {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #0D2B1A;
    margin-bottom: 3rem;
}

/* ---- FEATURES GRID ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.feature-card h3 {
    color: #1A6B3C;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}
.feature-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---- STEPS ---- */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.step {
    text-align: center;
    max-width: 200px;
}
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1A6B3C;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.step-number.gold {
    background: #F5A623;
}
.step-content h3 {
    font-size: 1rem;
    color: #0D2B1A;
    margin-bottom: 0.3rem;
}
.step-content p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
}
.step-arrow {
    font-size: 1.5rem;
    color: #d1d5db;
    padding-top: 1rem;
}

/* ---- STATS ---- */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.stat-block {
    text-align: center;
}
.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #1A6B3C;
}
.stat-label {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* ---- FEES TABLE ---- */
.fees-table-wrapper {
    max-width: 600px;
    margin: 0 auto;
}
.fees-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.fees-table th {
    background: #0D2B1A;
    color: #fff;
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.9rem;
}
.fees-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.9rem;
    color: #374151;
}
.fees-table .free {
    color: #16a34a;
    font-weight: 700;
}

/* ---- CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, #0D2B1A, #1A6B3C);
    max-width: none;
    text-align: center;
    padding: 80px 2rem;
}
.cta-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.cta-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.country-flags {
    margin-top: 2.5rem;
    font-size: 1.8rem;
    letter-spacing: 0.5rem;
    opacity: 0.8;
}

/* ---- FOOTER ---- */
.landing-footer {
    background: #0a1f13;
    color: rgba(255,255,255,0.7);
    padding: 3rem 2rem 1.5rem;
}
.landing-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}
.landing-footer-col h3 {
    color: #F5A623;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.landing-footer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}
.landing-footer-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    transition: color 0.2s;
}
.landing-footer-col a:hover {
    color: #F5A623;
}
.landing-footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ---- LANDING MAIN ---- */
.landing-main {
    min-height: 100vh;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .landing-nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #0D2B1A;
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
    }
    .landing-nav-links.open {
        display: flex;
    }
    .landing-nav-actions .btn { display: none; }
    .mobile-nav-btn { display: block; }

    .hero {
        min-height: auto;
        padding: 100px 1.5rem 60px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }

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

    .steps {
        flex-direction: column;
        align-items: center;
    }
    .step { max-width: 100%; }
    .step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }

    .stats-row {
        gap: 1.5rem;
    }
    .stat-value { font-size: 2rem; }

    .section {
        padding: 40px 1rem;
    }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .landing-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .country-flags {
        font-size: 1.2rem;
        letter-spacing: 0.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .features-grid { gap: 0.75rem; }
    .feature-card { padding: 1.5rem; }
    .landing-footer-inner { grid-template-columns: 1fr; }
}
