/* ════════════════════════════════════════════════════════════════════════
   CleanLemon - Landing Page Styles
   ════════════════════════════════════════════════════════════════════════ */

.landing-body {
    background-color: #fff;
}

.landing-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.landing-navbar .navbar-brand {
    color: var(--cl-green-dark);
}

.landing-login-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cl-green-dark) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.4rem 1rem;
    border: 2px solid var(--cl-green);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.landing-login-link:hover {
    background: var(--cl-green);
    color: white !important;
}

.landing-login-link i {
    font-size: 1.1rem;
}

.landing-main {
    margin-top: 56px;
}

/* ─── Container ─────────────────────────────────────────────────────── */

.landing-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── Hero ──────────────────────────────────────────────────────────── */

.landing-hero {
    padding: 5rem 0 4rem;
    text-align: center;
    background: linear-gradient(170deg, #f6fdf0 0%, #fff 50%, #fffef5 100%);
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(91, 173, 39, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.landing-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(250, 215, 27, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.landing-hero-content {
    position: relative;
    z-index: 1;
}

.landing-hero-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.landing-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #222;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.landing-hero h1 span {
    color: var(--cl-green);
}

.landing-hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.landing-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--cl-green), var(--cl-green-dark));
    color: white;
    padding: 0.85rem 2.25rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(91, 173, 39, 0.3);
}

.landing-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(91, 173, 39, 0.4);
    color: white;
}

.landing-hero-stores {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.landing-hero-stores span {
    font-size: 0.85rem;
    color: #999;
}

.landing-hero-stores i {
    font-size: 1.5rem;
    color: #aaa;
}

/* ─── Features ──────────────────────────────────────────────────────── */

.landing-features {
    padding: 4rem 0;
    background: #fff;
}

.landing-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.landing-section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 0.5rem;
}

.landing-section-title p {
    font-size: 1.05rem;
    color: #777;
    max-width: 500px;
    margin: 0 auto;
}

.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.landing-feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

.landing-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #ddd;
}

.landing-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.landing-feature-icon.green {
    background: linear-gradient(135deg, #e8f5e0, #d4edcc);
    color: var(--cl-green);
}

.landing-feature-icon.yellow {
    background: linear-gradient(135deg, #fff8e1, #ffeeb3);
    color: #b8860b;
}

.landing-feature-icon.blue {
    background: linear-gradient(135deg, #e8f0fe, #ccdcf9);
    color: #2962ff;
}

.landing-feature-icon.purple {
    background: linear-gradient(135deg, #f3e8ff, #e0ccff);
    color: #7B5EA7;
}

.landing-feature-icon.orange {
    background: linear-gradient(135deg, #fff0e0, #ffe0b3);
    color: #e67e22;
}

.landing-feature-icon.teal {
    background: linear-gradient(135deg, #e0f7f4, #b3ede6);
    color: #00897b;
}

.landing-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem;
}

.landing-feature-card p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* ─── How It Works ──────────────────────────────────────────────────── */

.landing-howto {
    padding: 4rem 0;
    background: #f9faf7;
}

.landing-steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.landing-step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
}

.landing-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cl-green), var(--cl-green-dark));
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.landing-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.4rem;
}

.landing-step p {
    font-size: 0.88rem;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* ─── Plans ─────────────────────────────────────────────────────────── */

.landing-plans {
    padding: 4rem 0;
    background: #fff;
}

.landing-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 900px;
    margin: 0 auto;
}

.landing-plan-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
}

.landing-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.landing-plan-card.featured {
    border-color: var(--cl-green);
    box-shadow: 0 4px 20px rgba(91, 173, 39, 0.15);
}

.landing-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--cl-green), var(--cl-green-dark));
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

.landing-plan-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem;
}

.landing-plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cl-green-dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.landing-plan-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #999;
}

.landing-plan-price-free {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cl-green);
}

.landing-plan-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.landing-plan-features li {
    padding: 0.35rem 0;
    font-size: 0.88rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.landing-plan-features li i {
    color: var(--cl-green);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.landing-plan-features li.disabled {
    color: #bbb;
}

.landing-plan-features li.disabled i {
    color: #ddd;
}

.landing-plan-cta {
    display: block;
    padding: 0.65rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.landing-plan-cta.primary {
    background: linear-gradient(135deg, var(--cl-green), var(--cl-green-dark));
    color: white;
}

.landing-plan-cta.primary:hover {
    box-shadow: 0 4px 12px rgba(91, 173, 39, 0.3);
    color: white;
}

.landing-plan-cta.secondary {
    background: #f5f5f5;
    color: #555;
}

.landing-plan-cta.secondary:hover {
    background: #eee;
    color: #333;
}

/* ─── Footer ────────────────────────────────────────────────────────── */

.landing-footer {
    background: #f8f9fa;
    border-top: 1px solid #e8e8e8;
    padding: 1.5rem 0;
}

.landing-footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--cl-green-dark);
}

.landing-footer-copy {
    font-size: 0.82rem;
    color: #999;
}

/* ─── Responsive ────────────────────────────────────────────────────── */

@media (max-width: 991px) {
    .landing-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-plans-grid > :last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .landing-hero {
        padding: 3rem 0 2.5rem;
    }

    .landing-hero h1 {
        font-size: 2rem;
    }

    .landing-hero-subtitle {
        font-size: 1.05rem;
    }

    .landing-features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .landing-plans-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .landing-plans-grid > :last-child {
        max-width: 100%;
    }

    .landing-steps {
        flex-direction: column;
        align-items: center;
    }

    .landing-login-link span {
        display: none;
    }

    .landing-footer-grid {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
