.pricing-hero {
    padding: 8rem 2rem 3rem;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
                var(--bg-dark);
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pricing-hero h1 .text-gradient {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheading {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-value-props {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    margin: 0 0 2rem;
    padding: 0;
}

.hero-value-props li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.hero-value-props li::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #0a0a0f;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-hero-cta .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-hero-cta:hover .arrow {
    transform: translateX(4px);
}

.provider-status {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 2rem;
}

.provider-check,
.provider-coming {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.provider-check::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
}

.provider-coming::before {
    content: "○";
    color: var(--text-muted);
}

.trust-section {
    padding: 3rem 0;
    background: var(--bg-darker);
}

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

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.plans-heading {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge-starter {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.price-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.pricing-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.consumer-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 2rem;
    align-items: start;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--accent-orange);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.2);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    color: white;
    text-align: center;
    padding: 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.coming-soon-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-darker);
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--border);
}

.team-card {
    opacity: 0.85;
}

.team-card:hover {
    opacity: 1;
}

.card-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.pricing-card.featured .card-header {
    padding-top: 4rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .period {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.price-note {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.card-body {
    padding: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.features-list li.sub-feature {
    padding-left: 1.5rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.features-list .check {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.features-list .check-sub {
    color: var(--text-muted);
    flex-shrink: 0;
}

.provider-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    text-align: center;
}

.lifetime-note {
    font-size: 0.85rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.team-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reassurance {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}

.btn-outline {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-primary);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(239, 68, 68, 0.1);
}

.btn-lifetime {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.btn-lifetime:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.btn-waitlist {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-waitlist:hover {
    background: var(--bg-card-hover);
    border-color: var(--text-muted);
}

.comparison-strip {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.comparison-strip h4 {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.comparison-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.comparison-option {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.comparison-option strong {
    color: var(--text-primary);
}

.teams-section {
    padding: 4rem 0;
    background: var(--bg-darker);
}

.teams-info-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.teams-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.teams-info-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.teams-info-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.teams-benefits {
    text-align: left;
    max-width: 450px;
    margin: 0 auto 1.5rem;
    list-style: none;
}

.teams-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.teams-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.teams-info-card .btn-primary {
    display: inline-block;
    margin-top: 1rem;
}

.faq-section {
    padding: 4rem 0;
    background: var(--bg-darker);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.faq-item ul {
    list-style: none;
    margin: 0.75rem 0;
    padding-left: 1rem;
}

.faq-item ul li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.faq-item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

@media (max-width: 1024px) {
    .consumer-grid,
    .teams-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .comparison-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-item {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .pricing-hero {
        padding: 6rem 1.5rem 2.5rem;
    }
    
    .pricing-container {
        padding: 0 1.25rem;
    }
    
    .hero-value-props {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding-left: 1rem;
    }
    
    .btn-hero-cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .provider-status {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .trust-section {
        padding: 2.5rem 0;
    }
    
    .trust-grid {
        gap: 1.5rem;
    }
    
    .trust-item {
        padding: 1.25rem;
        background: var(--bg-card);
        border-radius: 12px;
        border: 1px solid var(--border);
    }
    
    .plans-heading {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .card-header,
    .card-body {
        padding: 1.75rem 1.5rem;
    }
    
    .pricing-card.featured .card-header {
        padding-top: 4rem;
    }
    
    .pricing-card {
        margin-bottom: 0.5rem;
    }
    
    .plan-badge {
        top: 0.75rem;
        left: 0.75rem;
        font-size: 0.7rem;
    }
    
    .teams-info-card {
        padding: 2rem 1.5rem;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}
