/* ============================================
   Landify — Pricing & Roadmap
   ============================================ */

:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-glow: rgba(37, 99, 235, 0.5);
    --secondary: #10b981;
    --accent: #8b5cf6;
    --bg-base: #050a18;
    --bg-surface: #0c1425;
    --text-main: #f1f5f9;
    --text-muted: #8896b0;
    --card-bg: rgba(15, 25, 50, 0.65);
    --card-border: rgba(255, 255, 255, 0.06);
    --radius-lg: 24px;
    --radius-md: 14px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    background: var(--bg-base);
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- BACKGROUND DECORATION --- */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
}

/* Animated gradient background */
.bg-gradient-animated {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(-45deg, #050a18, #0c1425, #1a103c, #0d1f3c, #050a18);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(100px);
    animation: orbFloat 8s ease-in-out infinite;
}
.bg-orb--1 {
    width: 700px; height: 700px;
    top: -15%; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
    animation-delay: 0s;
}
.bg-orb--2 {
    width: 500px; height: 500px;
    top: 55%; right: -10%;
    background: radial-gradient(circle, rgba(139,92,246,0.10) 0%, transparent 70%);
    animation-delay: -5s;
}
.bg-orb--3 {
    width: 400px; height: 400px;
    top: 80%; left: -5%;
    background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* --- HEADER (same structure as index.html, transparent) --- */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: padding .15s ease, background .15s ease;
    transform: translateZ(0);
    will-change: transform;
}
.logo {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #63a4ff 0%, #93c5fd 60%, #7dd3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.logo svg { color: #3b82f6; }

/* --- HERO --- */
.hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 48px 24px 40px;
    max-width: 820px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 48px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: #fff;
    margin: 0 0 32px;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* --- SECTIONS --- */
.section-container {
    position: relative;
    z-index: 1;
    padding: 60px 24px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0 0 18px;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- PRICING CARDS --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }
    .pricing-card.featured,
    .pricing-card.featured.fade-up.is-visible {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }
}

.pricing-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 48px 38px 40px;
    width: 100%;
    max-width: 440px;
    position: relative;
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.22s ease,
                border-color 0.15s ease;
    box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.6);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.7);
}

/* Featured card */
.pricing-card.featured {
    border: 1px solid rgba(37, 99, 235, 0.35);
    background: linear-gradient(180deg, rgba(20, 35, 70, 0.8) 0%, rgba(10, 18, 40, 0.9) 100%);
    box-shadow: 0 0 40px -8px rgba(37, 99, 235, 0.15),
                0 8px 32px -8px rgba(0, 0, 0, 0.6);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 0 60px -8px rgba(37, 99, 235, 0.25),
                0 20px 50px -12px rgba(0, 0, 0, 0.7);
}

/* Enterprise card */
.pricing-card.enterprise {
    border: 1px solid rgba(139, 92, 246, 0.35);
    background: linear-gradient(180deg, rgba(30, 25, 60, 0.8) 0%, rgba(15, 12, 35, 0.9) 100%);
    box-shadow: 0 0 40px -8px rgba(139, 92, 246, 0.15),
                0 8px 32px -8px rgba(0, 0, 0, 0.6);
}

.pricing-card.enterprise:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 60px -8px rgba(139, 92, 246, 0.25),
                0 20px 50px -12px rgba(0, 0, 0, 0.7);
}

.enterprise .card-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    border-color: rgba(139, 92, 246, 0.25);
}

.enterprise-glow {
    background: radial-gradient(ellipse at top center, rgba(139,92,246,0.12) 0%, transparent 70%);
}

.enterprise-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

/* Savings badge for annual plans */
.savings-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: -12px;
    margin-bottom: 22px;
    text-align: center;
    line-height: 1.3;
    flex-wrap: wrap;
}

.savings-badge strong {
    color: var(--secondary);
    font-weight: 700;
    white-space: nowrap;
}

.savings-badge .badge-pill {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Inner glow for featured card */
.card-glow {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 200px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: radial-gradient(ellipse at top center, rgba(37,99,235,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.badge {
    position: absolute;
    top: -13px;
    right: 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid var(--card-border);
    color: var(--text-muted);
}

.featured .card-icon {
    background: rgba(37, 99, 235, 0.1);
    color: #60a5fa;
    border-color: rgba(37, 99, 235, 0.25);
}

.card-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-light);
    margin-bottom: 6px;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #fff;
    letter-spacing: -0.5px;
}

.card-subtitle {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 28px;
}

.price-container {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price {
    font-size: 3.4rem;
    font-weight: 900;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    line-height: 1;
    letter-spacing: -2px;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 8px;
    letter-spacing: 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.93rem;
    color: #b4c0d4;
    line-height: 1.5;
    transition: transform 0.1s ease;
}

.features-list li:hover {
    transform: translateX(3px);
}

.check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    margin-top: 1px;
}

.check-icon svg {
    width: 13px;
    height: 13px;
}

.featured .features-list li strong {
    color: #ffffff;
}

/* --- BUTTONS --- */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.98rem;
    border: 1px solid var(--card-border);
    transition: all 0.15s ease;
    width: 100%;
    cursor: pointer;
    margin-top: auto;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.cta-button--primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-button--primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

.cta-button--large {
    width: auto;
    padding: 18px 40px;
    font-size: 1.05rem;
    border-radius: 16px;
}

.phase-note {
    font-size: 0.82rem;
    margin-top: 18px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 0;
}

/* --- SECTION DIVIDER --- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 24px;
    position: relative;
    z-index: 1;
}

.divider-line {
    height: 1px;
    flex: 1;
    max-width: 200px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.divider-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

/* --- ROADMAP TIMELINE --- */
.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 22px;
    position: relative;
    text-align: left;
}

.timeline-track { display: none; }

.roadmap-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 32px 28px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.15s ease, box-shadow 0.18s ease;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.roadmap-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.5);
}

.roadmap-card:hover::before {
    opacity: 1;
}

.roadmap-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    letter-spacing: -2px;
    user-select: none;
    pointer-events: none;
}

.month-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #60a5fa;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.roadmap-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 14px;
    line-height: 1.35;
}

.roadmap-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roadmap-items li {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    line-height: 1.55;
}

.roadmap-items li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-light);
    opacity: 0.6;
}

.roadmap-items li:last-child {
    margin-bottom: 0;
}

/* --- FEATURE STATUS CARDS (Funcionalidades Implementadas) --- */
.feature-status-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.15s ease, box-shadow 0.18s ease;
    box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.4);
}

.feature-status-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.feature-status-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.5);
}

.feature-status-card:hover::before {
    opacity: 1;
}

/* Status variants */
.feature-status-card--completed {
    border-color: rgba(16, 185, 129, 0.35);
}

.feature-status-card--completed::before {
    background: linear-gradient(90deg, var(--secondary) 0%, #34d399 100%);
}

.feature-status-card--completed:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 16px 40px -8px rgba(16, 185, 129, 0.15);
}

.feature-status-card--progress {
    border-color: rgba(245, 158, 11, 0.35);
}

.feature-status-card--progress::before {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.feature-status-card--progress:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 16px 40px -8px rgba(245, 158, 11, 0.15);
}

.feature-status-card--pending {
    border-color: var(--card-border);
    opacity: 0.75;
}

.feature-status-card--pending::before {
    background: linear-gradient(90deg, var(--text-muted) 0%, #64748b 100%);
}

/* Card header with phase badge and status */
.feature-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-card-badges {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-phase-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 50px;
}

.feature-phase-badge--completed {
    background: var(--secondary);
    color: #050a18;
}

.feature-phase-badge--progress {
    background: #f59e0b;
    color: #050a18;
}

.feature-phase-badge--pending {
    background: var(--text-muted);
    color: #050a18;
}

.feature-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
}

.feature-status-badge--completed {
    color: var(--secondary);
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.feature-status-badge--progress {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.feature-status-badge--pending {
    color: var(--text-muted);
    background: rgba(136, 150, 176, 0.15);
    border: 1px solid rgba(136, 150, 176, 0.3);
}

/* Progress bar */
.feature-progress-bar {
    width: 120px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.feature-progress-bar__fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.feature-progress-bar__fill--completed {
    background: var(--secondary);
}

.feature-progress-bar__fill--progress {
    background: #f59e0b;
}

.feature-progress-bar__fill--pending {
    background: var(--text-muted);
}

/* Feature title */
.feature-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.35;
}

.feature-status-card--pending .feature-card-title {
    color: var(--text-muted);
}

/* Feature items list */
.feature-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-items-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.feature-items-list li:last-child {
    padding-bottom: 0;
}

.feature-item--completed {
    color: var(--secondary);
}

.feature-item--progress {
    color: #f59e0b;
}

.feature-item--pending {
    color: var(--text-muted);
}

/* Item tag/pill */
.feature-item-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 8px;
}

.feature-item-tag--new {
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60a5fa;
}

.feature-item-tag--dev {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.feature-item-tag--basic {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--secondary);
}

/* Summary cards for stats - Redesigned */
.feature-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .feature-summary-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
}

.feature-summary-card {
    position: relative;
    text-align: center;
    padding: 32px 24px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.4);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.feature-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0.8;
    transition: opacity 0.15s ease;
}

.feature-summary-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top center, var(--glow-color, transparent) 0%, transparent 70%);
    opacity: 0.15;
    transition: opacity 0.15s ease;
    pointer-events: none;
}

.feature-summary-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 40px -10px var(--glow-color, transparent);
}

.feature-summary-card:hover::after {
    opacity: 0.25;
}

/* Completed variant */
.feature-summary-card--completed {
    --glow-color: rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.feature-summary-card--completed::before {
    background: linear-gradient(90deg, var(--secondary) 0%, #34d399 100%);
}

.feature-summary-card--completed:hover {
    border-color: rgba(16, 185, 129, 0.5);
}

/* Progress variant */
.feature-summary-card--progress {
    --glow-color: rgba(245, 158, 11, 0.3);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.feature-summary-card--progress::before {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.feature-summary-card--progress:hover {
    border-color: rgba(245, 158, 11, 0.5);
}

/* Pending variant */
.feature-summary-card--pending {
    --glow-color: rgba(136, 150, 176, 0.2);
    border: 1px solid rgba(136, 150, 176, 0.2);
    opacity: 0.9;
}

.feature-summary-card--pending::before {
    background: linear-gradient(90deg, var(--text-muted) 0%, #64748b 100%);
}

.feature-summary-card--pending:hover {
    border-color: rgba(136, 150, 176, 0.4);
    opacity: 1;
}

/* Icon container */
.feature-summary-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.feature-summary-card__icon--completed {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 24px -8px rgba(16, 185, 129, 0.4);
}

.feature-summary-card__icon--completed svg {
    color: var(--secondary);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

.feature-summary-card__icon--progress {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 8px 24px -8px rgba(245, 158, 11, 0.4);
}

.feature-summary-card__icon--progress svg {
    color: #f59e0b;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.5));
}

.feature-summary-card__icon--pending {
    background: linear-gradient(135deg, rgba(136, 150, 176, 0.15) 0%, rgba(136, 150, 176, 0.08) 100%);
    border: 1px solid rgba(136, 150, 176, 0.25);
}

.feature-summary-card__icon--pending svg {
    color: var(--text-muted);
}

/* Number */
.feature-summary-card__number {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.feature-summary-card__number--completed {
    color: var(--secondary);
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.feature-summary-card__number--progress {
    color: #f59e0b;
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.feature-summary-card__number--pending {
    color: var(--text-muted);
}

/* Label */
.feature-summary-card__label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

/* Mini progress bar at bottom */
.feature-summary-card__mini-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.feature-summary-card__mini-bar-fill {
    height: 100%;
    transition: width 0.3s ease;
}

.feature-summary-card__mini-bar-fill--completed {
    width: 100%;
    background: linear-gradient(90deg, var(--secondary) 0%, #34d399 100%);
}

.feature-summary-card__mini-bar-fill--progress {
    width: 50%;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.feature-summary-card__mini-bar-fill--pending {
    width: 0%;
    background: var(--text-muted);
}

/* Legend container */
.feature-legend {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
    padding: 28px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.feature-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-legend-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-legend-icon--completed {
    background: var(--secondary);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.feature-legend-icon--progress {
    background: #f59e0b;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.feature-legend-icon--pending {
    background: var(--text-muted);
}

.feature-legend-text {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
}

/* Timeline layout for single column */
.feature-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

/* --- BOTTOM CTA --- */
.bottom-cta {
    position: relative;
    z-index: 1;
    padding: 60px 24px 80px;
}

.bottom-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, rgba(20, 35, 70, 0.5) 0%, rgba(10, 18, 40, 0.5) 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.bottom-cta-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.bottom-cta-inner p {
    color: var(--text-muted);
    margin: 0 0 28px;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- FOOTER --- */
.page-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px 50px;
}

.page-footer p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.82rem;
    margin: 0;
}

/* --- BILLING TOGGLE --- */
.billing-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50px;
    padding: 6px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--card-border);
}

.billing-toggle button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
}

.billing-toggle button.active {
    background: var(--primary);
    color: white;
}

.billing-toggle button:hover:not(.active) {
    color: var(--text-main);
}

.tab-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    margin-left: 6px;
    vertical-align: middle;
}

.pricing-tab-content {
    display: none;
}

.pricing-tab-content.active {
    display: block;
}

/* --- FADE-UP ANIMATION --- */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Featured card reset for fade-up */
.pricing-card.featured.fade-up.is-visible {
    transform: scale(1.03);
}

/* --- RESPONSIVE --- */
@media (max-width: 980px) {
    .header { padding: 14px 20px; }
}
@media (max-width: 900px) {
    .pricing-card.featured,
    .pricing-card.featured.fade-up.is-visible {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }
    .hero { padding-top: 40px; }
}

@media (max-width: 640px) {
    .header { padding: 12px 16px; }
}
@media (max-width: 480px) {
    .hero { padding: 36px 18px 30px; }
    .hero-label { margin-top: 24px; }
    .section-container { padding: 40px 16px 60px; }
    .section-header h2 { font-size: 1.7rem; }
    .section-header p { font-size: 0.95rem; }
    .pricing-card {
        padding: 36px 22px 32px;
        max-width: 100%;
    }
    .badge {
        right: 18px;
        font-size: 0.65rem;
        padding: 5px 12px;
    }
    .price {
        font-size: 2.6rem;
    }
    .roadmap-timeline {
        grid-template-columns: 1fr;
    }
    .roadmap-card {
        padding: 26px 20px 22px;
    }
    .bottom-cta-inner {
        padding: 40px 22px;
    }
}

@media (max-width: 380px) {
    .logo { font-size: 18px; }
}

/* =============================
   SCROLLBAR STYLING
   ============================= */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

/* =============================
   LIGHT THEME OVERRIDES
   ============================= */
html[data-theme="light"] {
    --bg-base: #f8fafc;
    --bg-surface: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #6b7280;
    --card-bg: rgba(255, 255, 255, 0.8);
    --card-border: rgba(0, 0, 0, 0.06);
}
html[data-theme="light"] body {
    background: #f8fafc;
    color: #1a1a1a;
}
html[data-theme="light"] .bg-mesh {
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
}
html[data-theme="light"] .bg-gradient-animated {
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(59, 130, 246, 0.08), transparent 60%);
}
html[data-theme="light"] .top-logo,
html[data-theme="light"] .top-logo svg {
    color: #2563eb;
}
html[data-theme="light"] .hero-title {
    color: #1a1a1a;
}
html[data-theme="light"] .hero-label {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}
html[data-theme="light"] .pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
html[data-theme="light"] .pricing-card--popular {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
}
html[data-theme="light"] .feature-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.06);
}
html[data-theme="light"] .feature-card-title {
    color: #1a1a1a;
}
html[data-theme="light"] .roadmap-title {
    color: #1a1a1a;
}
html[data-theme="light"] .feature-item--completed,
html[data-theme="light"] .feature-item--progress,
html[data-theme="light"] .feature-item--pending {
    color: #4b5563;
}
html[data-theme="light"] .feature-item-tag--new {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #2563eb;
}
html[data-theme="light"] .section-header h2 {
    background: none;
    -webkit-text-fill-color: unset;
    color: #1a1a1a;
}
html[data-theme="light"] .section-label {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}
html[data-theme="light"] .roadmap-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.06);
}
html[data-theme="light"] .features-list li {
    color: #4b5563;
}
html[data-theme="light"] .features-list li strong {
    color: #1a1a1a;
}
html[data-theme="light"] .featured .features-list li strong {
    color: #1a1a1a;
}
html[data-theme="light"] .card-title {
    color: #1a1a1a;
}
html[data-theme="light"] .card-subtitle {
    color: #6b7280;
}
html[data-theme="light"] .price-container {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}
html[data-theme="light"] .price {
    color: #1a1a1a;
}
html[data-theme="light"] .cta-button {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    color: #374151;
}
html[data-theme="light"] .cta-button:hover {
    background: #f3f4f6;
    border-color: rgba(0, 0, 0, 0.15);
    color: #1a1a1a;
}
html[data-theme="light"] .cta-button--primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}
html[data-theme="light"] .bottom-cta-inner {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
html[data-theme="light"] .bottom-cta-inner h2 {
    color: #1a1a1a;
}
html[data-theme="light"] .bottom-cta-inner p {
    color: #4b5563;
}
html[data-theme="light"] .roadmap-card--completed {
    border-color: rgba(16, 185, 129, 0.3);
}
html[data-theme="light"] .roadmap-card--in-progress {
    border-color: rgba(245, 158, 11, 0.3);
}
html[data-theme="light"] ::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
}
html[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}
html[data-theme="light"] * {
    scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}
