/* ==========================================================================
   Pricing Page - Sections 1 & 2 Stylesheet
   Version: 1.0
   
   TABLE OF CONTENTS:
   1. Hero Section
   2. Plan Comparison Section
   3. Animations & Effects
   4. Responsive Design
   ========================================================================== */

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */

.pricing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 12rem 0 8rem;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(146, 110, 204, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(112, 109, 156, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(137, 143, 160, 0.2) 0%, transparent 50%),
        var(--main-gradient);
    animation: meshShift 20s ease-in-out infinite;
}

@keyframes meshShift {
    0%, 100% { filter: hue-rotate(0deg) brightness(1); }
    25% { filter: hue-rotate(10deg) brightness(1.1); }
    50% { filter: hue-rotate(-10deg) brightness(0.95); }
    75% { filter: hue-rotate(5deg) brightness(1.05); }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
}

.shape-1 {
    width: 30rem;
    height: 30rem;
    background: radial-gradient(circle, rgba(146, 110, 204, 0.4) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    animation: float1 25s ease-in-out infinite;
}

.shape-2 {
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    bottom: 20%;
    right: -5%;
    animation: float2 30s ease-in-out infinite;
}

.shape-3 {
    width: 25rem;
    height: 25rem;
    background: radial-gradient(circle, rgba(112, 109, 156, 0.5) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float3 22s ease-in-out infinite;
}

.shape-4 {
    width: 35rem;
    height: 35rem;
    background: radial-gradient(circle, rgba(137, 143, 160, 0.3) 0%, transparent 70%);
    top: 70%;
    left: 10%;
    animation: float4 28s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(-40px, -50px) scale(1.15) rotate(180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    25% { transform: translate(-45%, -55%) scale(0.9); }
    50% { transform: translate(-55%, -45%) scale(1.1); }
    75% { transform: translate(-48%, -52%) scale(1.05); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(30px, -40px) scale(1.2); opacity: 0.5; }
}

/* Particle Field */
.particle-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 10s ease-in-out infinite;
}

.particle:nth-child(1) { left: 20%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 40%; top: 60%; animation-delay: 2s; }
.particle:nth-child(3) { left: 60%; top: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; top: 50%; animation-delay: 8s; }

@keyframes particleFloat {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    10% { transform: translateY(-20px) scale(1); opacity: 1; }
    90% { transform: translateY(-200px) scale(1); opacity: 1; }
    100% { transform: translateY(-220px) scale(0); opacity: 0; }
}

/* Pulse Ring */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 100rem;
    margin: 0 auto;
}

/* Launch Banner */
.launch-banner {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 3rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-pill);
    animation: bannerPulse 2s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(146, 110, 204, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.banner-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    border-radius: var(--border-radius-pill);
    font-size: 1.2rem;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: badgeBlink 2s ease-in-out infinite;
}

@keyframes badgeBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.banner-text {
    font-size: 1.8rem;
    font-weight: var(--weight-semibold);
}

.banner-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-md);
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-value {
    font-size: 2.2rem;
    font-weight: var(--weight-bold);
    font-family: 'Courier New', monospace;
    line-height: 1;
}

.timer-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    opacity: 0.7;
}

.timer-separator {
    font-size: 2rem;
    opacity: 0.5;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Main Headline */
.hero-headline {
    font-size: 5.6rem;
    font-weight: var(--weight-bold);
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(to right, #e6d6ff, #ffd6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.price-reveal {
    display: block;
    margin-top: 1rem;
    opacity: 0;
    animation: revealPrice 1s ease-out 0.5s forwards;
}

@keyframes revealPrice {
    0% { 
        opacity: 0; 
        transform: translateY(20px) scale(0.9);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

.price-highlight {
    position: relative;
    display: inline-block;
    color: #4ade80;
    font-size: 7.2rem;
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(74, 222, 128, 0.5); }
    50% { text-shadow: 0 0 30px rgba(74, 222, 128, 0.8); }
}

/* Value Statement */
.value-statement {
    font-size: 2.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: var(--weight-light);
}

.strike-through {
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    text-decoration-color: #ff6b6b;
    text-decoration-thickness: 3px;
}

.highlight {
    color: #4ade80;
    font-weight: var(--weight-semibold);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
}

.trust-icon {
    width: 3.2rem;
    height: 3.2rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

/* Hero CTA */
.hero-cta {
    margin-bottom: 5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(146, 110, 204, 0.4);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.btn-large {
    font-size: 1.8rem;
    padding: 1.6rem 3.2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-large svg {
    width: 2.4rem;
    height: 2.4rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform var(--transition-medium);
}

.btn-large:hover svg {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Floating Preview Cards */
.floating-preview {
    position: absolute;
    bottom: -10rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: floatUp 1s ease 1.5s forwards;
}

@keyframes floatUp {
    0% { 
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    100% { 
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.preview-card {
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: transform var(--transition-medium);
}

.preview-card:hover {
    transform: translateY(-5px) scale(1.05);
}

.preview-label {
    display: block;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.preview-price {
    font-size: 2.4rem;
    font-weight: var(--weight-bold);
    color: white;
}

.card-1 { animation: floatCard 4s ease-in-out infinite; }
.card-2 { animation: floatCard 4s ease-in-out 1.3s infinite; }
.card-3 { animation: floatCard 4s ease-in-out 2.6s infinite; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-icon {
    width: 3rem;
    height: 5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.6rem;
    height: 1rem;
    background: white;
    border-radius: 0.3rem;
    animation: wheel 2s ease-in-out infinite;
}

@keyframes wheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(15px); opacity: 0.3; }
}

/* ==========================================================================
   2. PLAN COMPARISON SECTION
   ========================================================================== */

.pricing-plans {
    padding: 10rem 0;
    background: linear-gradient(to bottom, #f8f9fa, white);
    position: relative;
    overflow: hidden;
}

.pricing-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+CjxyZWN0IHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIwIj48L3JlY3Q+CjxjaXJjbGUgY3g9IjMwIiBjeT0iMzAiIHI9IjEuNSIgZmlsbD0iIzAwMCIgZmlsbC1vcGFjaXR5PSIwLjAzIj48L2NpcmNsZT4KPC9zdmc+');
    z-index: 0;
}

.pricing-plans .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.section-title {
    font-size: 4.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 2rem;
    color: var(--color-text-light);
    max-width: 60rem;
    margin: 0 auto;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.toggle-label {
    font-size: 1.8rem;
    color: var(--color-text);
    font-weight: var(--weight-medium);
}

.toggle-switch {
    position: relative;
    width: 6rem;
    height: 3.2rem;
    background: var(--color-border);
    border: none;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: background var(--transition-medium);
}

.toggle-switch.active {
    background: var(--main-gradient);
}

.toggle-slider {
    position: absolute;
    top: 0.3rem;
    left: 0.3rem;
    width: 2.6rem;
    height: 2.6rem;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-medium);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(2.8rem);
}

.save-badge {
    padding: 0.3rem 0.8rem;
    background: #22c55e;
    color: white;
    border-radius: var(--border-radius-pill);
    font-size: 1.2rem;
    font-weight: var(--weight-bold);
    animation: pulse 2s ease-in-out infinite;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 110rem;
    margin: 0 auto;
}

/* Plan Cards */
.plan-card {
    background: white;
    border-radius: 2rem;
    padding: 4rem 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all var(--transition-medium);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.plan-card:nth-child(2) { animation-delay: 0.5s; }
.plan-card:nth-child(3) { animation-delay: 0.6s; }

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Featured Plan */
.plan-card.featured {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    border: 2px solid var(--color-secondary);
    transform: scale(1.05);
    padding: 5rem 3rem;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(146, 110, 204, 0.2);
}

.popular-badge {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: var(--main-gradient);
    color: white;
    border-radius: var(--border-radius-pill);
    font-weight: var(--weight-bold);
    font-size: 1.4rem;
    box-shadow: 0 5px 20px rgba(146, 110, 204, 0.3);
}

.popular-badge svg {
    width: 2rem;
    height: 2rem;
    fill: white;
    animation: starSpin 3s linear infinite;
}

@keyframes starSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* VIP Plan */
.plan-card.vip {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.vip-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border-radius: var(--border-radius-md);
    font-weight: var(--weight-bold);
    font-size: 1.2rem;
}

.vip-badge svg {
    width: 1.6rem;
    height: 1.6rem;
    fill: currentColor;
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 3rem;
}

.plan-name {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary-dark);
}

.vip .plan-name {
    color: white;
}

.plan-tagline {
    font-size: 1.6rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.vip .plan-tagline {
    color: rgba(255, 255, 255, 0.8);
}

/* Price Section */
.price-section {
    margin-bottom: 3rem;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 2.4rem;
    color: var(--color-text-light);
    margin-right: 0.5rem;
}

.vip .price-currency {
    color: rgba(255, 255, 255, 0.7);
}

.price-monthly {
    font-size: 5.6rem;
    font-weight: var(--weight-bold);
    color: var(--color-primary-dark);
    line-height: 1;
    transition: all var(--transition-medium);
}

.vip .price-monthly {
    color: white;
}

.featured .price-monthly {
    color: var(--color-secondary);
}

.price-period {
    font-size: 2rem;
    color: var(--color-text-light);
    margin-left: 0.5rem;
}

.vip .price-period {
    color: rgba(255, 255, 255, 0.7);
}

/* Price Comparison */
.price-comparison {
    text-align: center;
}

.original-price {
    display: block;
    font-size: 1.6rem;
    color: var(--color-text-light);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.vip .original-price {
    color: rgba(255, 255, 255, 0.6);
}

.savings-amount {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: var(--border-radius-pill);
    font-size: 1.4rem;
    font-weight: var(--weight-semibold);
}

.vip .savings-amount {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

/* Plan Features */
.plan-features {
    margin-bottom: 3rem;
}

.features-title {
    font-size: 1.6rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-weight: var(--weight-medium);
}

.vip .features-title {
    color: rgba(255, 255, 255, 0.9);
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--color-text);
}

.vip .features-list li {
    color: rgba(255, 255, 255, 0.9);
}

.features-list svg {
    width: 2rem;
    height: 2rem;
    fill: #22c55e;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.featured .features-list svg {
    fill: var(--color-secondary);
}

.vip .features-list svg {
    fill: #ffd700;
}

.features-list li.highlight {
    font-weight: var(--weight-semibold);
}

.features-list li.vip-feature {
    color: white;
    font-weight: var(--weight-medium);
}

/* Plan CTA */
.plan-cta {
    text-align: center;
}

.plan-btn {
    width: 100%;
    font-size: 1.6rem;
    padding: 1.4rem 2.8rem;
    border-radius: var(--border-radius-lg);
}

.vip .btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
}

.vip .btn-primary:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.plan-note {
    margin-top: 1rem;
    font-size: 1.4rem;
    color: var(--color-text-light);
}

.vip .plan-note {
    color: rgba(255, 255, 255, 0.7);
}

/* Comparison Summary */
.comparison-summary {
    margin-top: 5rem;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.summary-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.6rem;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.summary-text svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: #22c55e;
}

.beta-notice {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, rgba(146, 110, 204, 0.1), rgba(112, 109, 156, 0.1));
    border: 1px solid rgba(146, 110, 204, 0.2);
    border-radius: var(--border-radius-lg);
}

.beta-icon {
    font-size: 2.4rem;
    font-weight: var(--weight-bold);
    color: var(--color-secondary);
}

.spots-remaining {
    padding: 0.5rem 1rem;
    background: var(--color-secondary);
    color: white;
    border-radius: var(--border-radius-pill);
    font-size: 1.4rem;
    font-weight: var(--weight-semibold);
    animation: spotsPulse 2s ease-in-out infinite;
}

@keyframes spotsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ==========================================================================
   3. ANIMATIONS & EFFECTS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   4. RESPONSIVE DESIGN
   ========================================================================== */

/* Large devices (laptops/desktops, up to 1200px) */
@media (max-width: 1200px) {
    .plans-grid {
        gap: 2rem;
    }
    
    .plan-card {
        padding: 3rem 2rem;
    }
    
    .plan-card.featured {
        padding: 4rem 2rem;
    }
}

/* Medium devices (tablets, up to 992px) */
@media (max-width: 992px) {
    .pricing-hero {
        padding: 10rem 0 6rem;
    }
    
    .hero-headline {
        font-size: 4.2rem;
    }
    
    .price-highlight {
        font-size: 5.6rem;
    }
    
    .value-statement {
        font-size: 2rem;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 50rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .floating-preview {
        display: none;
    }
}

/* Small devices (landscape phones, up to 768px) */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 3.2rem;
    }
    
    .price-highlight {
        font-size: 4.2rem;
    }
    
    .launch-banner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }
    
    .banner-content {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 3.2rem;
    }
    
    .section-subtitle {
        font-size: 1.8rem;
    }
    
    .price-monthly {
        font-size: 4.2rem;
    }
}

/* Extra small devices (phones, up to 576px) */
@media (max-width: 576px) {
    .pricing-hero {
        min-height: 90vh;
        padding: 8rem 0 4rem;
    }
    
    .hero-headline {
        font-size: 2.8rem;
    }
    
    .price-reveal {
        font-size: 2.4rem;
    }
    
    .price-highlight {
        font-size: 3.6rem;
    }
    
    .value-statement {
        font-size: 1.8rem;
    }
    
    .banner-timer {
        font-size: 0.9em;
    }
    
    .pricing-plans {
        padding: 6rem 0;
    }
    
    .plan-card {
        padding: 2.5rem 2rem;
    }
    
    .plan-name {
        font-size: 2.4rem;
    }
    
    .price-monthly {
        font-size: 3.6rem;
    }
}

/* ==========================================================================
   Pricing Page - Sections 3 & 4 Stylesheet
   Version: 1.0
   
   TABLE OF CONTENTS:
   1. Treatment Scope Section
   2. Medication Pricing Section
   3. Animations & Effects
   4. Responsive Design
   ========================================================================== */

/* ==========================================================================
   1. TREATMENT SCOPE SECTION
   ========================================================================== */

.treatment-scope {
    position: relative;
    padding: 10rem 0;
    background: linear-gradient(to bottom, white, #f8f9fa);
    overflow: hidden;
}

/* Scope Background */
.scope-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(146, 110, 204, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(146, 110, 204, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating Molecules */
.floating-molecules {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.molecule {
    position: absolute;
    animation: moleculeFloat 15s ease-in-out infinite;
}

.molecule-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.molecule-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.molecule-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

.atom {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(146, 110, 204, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}

.molecule-1 .atom:nth-child(1) { transform: translate(0, 0); }
.molecule-1 .atom:nth-child(2) { transform: translate(30px, 0); }
.molecule-1 .atom:nth-child(3) { transform: translate(15px, 25px); }

.molecule-2 .atom:nth-child(1) { transform: translate(0, 0); }
.molecule-2 .atom:nth-child(2) { transform: translate(25px, 25px); }

.molecule-3 .atom:nth-child(1) { transform: translate(0, 0); }
.molecule-3 .atom:nth-child(2) { transform: translate(30px, 0); }
.molecule-3 .atom:nth-child(3) { transform: translate(0, 30px); }
.molecule-3 .atom:nth-child(4) { transform: translate(30px, 30px); }

@keyframes moleculeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    50% { transform: translateY(20px) rotate(180deg); }
    75% { transform: translateY(-10px) rotate(270deg); }
}

/* Section Content */
.treatment-scope .container {
    position: relative;
    z-index: 1;
}

/* Treatment Categories */
.treatment-category {
    margin-bottom: 8rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.treatment-category:nth-child(2) { animation-delay: 0.2s; }
.treatment-category:nth-child(3) { animation-delay: 0.4s; }

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.category-header h3 {
    font-size: 3.2rem;
    color: var(--color-primary-dark);
    font-weight: var(--weight-bold);
}

.immediate-badge,
.inquiry-badge,
.network-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-pill);
    font-size: 1.4rem;
    font-weight: var(--weight-semibold);
}

.immediate-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.inquiry-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.network-badge {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.1));
    color: #d97706;
}

.immediate-badge svg,
.inquiry-badge svg,
.network-badge svg {
    width: 2rem;
    height: 2rem;
    fill: currentColor;
}

/* Conditions Grid */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.condition-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.condition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--main-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
    transform-origin: left;
}

.condition-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.condition-card:hover::before {
    transform: scaleX(1);
}

.featured-condition {
    background: linear-gradient(135deg, white 0%, rgba(146, 110, 204, 0.02) 100%);
    border: 2px solid rgba(146, 110, 204, 0.1);
}

.condition-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.condition-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, rgba(146, 110, 204, 0.1), rgba(112, 109, 156, 0.1));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-medium);
}

.condition-card:hover .condition-icon {
    transform: rotate(10deg) scale(1.1);
}

.condition-icon img {
    width: 3rem;
    height: 3rem;
}

.condition-header h4 {
    font-size: 2rem;
    color: var(--color-primary-dark);
    font-weight: var(--weight-semibold);
}

.condition-description {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

/* Medication Tags */
.medication-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.med-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(146, 110, 204, 0.08);
    color: var(--color-secondary);
    border-radius: var(--border-radius-pill);
    font-size: 1.3rem;
    font-weight: var(--weight-medium);
    transition: all var(--transition-fast);
}

.med-tag:hover {
    background: var(--main-gradient);
    color: white;
    transform: translateY(-2px);
}

/* Treatment Stats */
.treatment-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.4rem;
    font-weight: var(--weight-bold);
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.3rem;
    color: var(--color-text-light);
}

/* Availability Banner */
.availability-banner {
    background: var(--main-gradient);
    border-radius: 2rem;
    padding: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 6rem;
}

.availability-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.availability-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.big-number {
    font-size: 7.2rem;
    font-weight: var(--weight-bold);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-description {
    font-size: 1.8rem;
    opacity: 0.9;
}

.availability-message {
    max-width: 50%;
}

.availability-message p {
    font-size: 2rem;
    line-height: 1.5;
}

/* Related Conditions */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.related-card {
    padding: 2.5rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.related-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(146, 110, 204, 0.05), transparent);
    transition: height var(--transition-medium);
}

.related-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(114, 109, 156, 0.1);
}

.related-card:hover::after {
    height: 100%;
}

.related-card h4 {
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.8rem;
}

.related-card p {
    font-size: 1.5rem;
    color: var(--color-text-light);
}

/* Inquiry Section */
.inquiry-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    text-align: center;
}

.inquiry-section h4 {
    font-size: 2.4rem;
    color: var(--color-primary-dark);
    margin-bottom: 2.5rem;
}

.inquiry-form {
    display: flex;
    max-width: 60rem;
    margin: 0 auto 2rem;
    gap: 1rem;
}

.inquiry-input {
    flex: 1;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    background: white;
    transition: all var(--transition-medium);
}

.inquiry-input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(146, 110, 204, 0.1);
}

.inquiry-form .btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.inquiry-form .btn svg {
    width: 2rem;
    height: 2rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.inquiry-note {
    font-size: 1.5rem;
    color: var(--color-text-light);
}

/* Partner Network */
.partner-treatments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.partner-card {
    background: linear-gradient(135deg, white, rgba(255, 215, 0, 0.02));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-icon img {
    width: 5rem;
    height: 5rem;
}

.partner-card h4 {
    font-size: 2.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.partner-card p {
    font-size: 1.6rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.treatment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.treatment-list span {
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    color: #d97706;
    border-radius: var(--border-radius-pill);
    font-size: 1.3rem;
    font-weight: var(--weight-medium);
}

.access-note {
    font-size: 1.4rem;
    color: #d97706;
    font-weight: var(--weight-semibold);
}

.network-cta {
    text-align: center;
}

.network-cta p {
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 2rem;
}

/* ==========================================================================
   2. MEDICATION PRICING SECTION
   ========================================================================== */

.medication-pricing {
    position: relative;
    padding: 10rem 0;
    background: white;
    overflow: hidden;
}

/* Pricing Background */
.pricing-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Wave Animation */
.price-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDQwIDMyMCI+CiAgPHBhdGggZmlsbD0iIzkyNmVjYzIwIiBmaWxsLW9wYWNpdHk9IjEiIGQ9Ik0wLDE2MEw0OCwxNDkuM0M5NiwxMzksMTkyLDExNywyODgsMTIyLjdDMzg0LDEyOCw0ODAsMTYwLDU3NiwxNjVDNjcyLDE3MSw3NjgsMTQ5LDg2NCwxNDRDOTYwLDEzOSwxMDU2LDE0OSwxMTUyLDE2MEM0NDgsMTcxLDEzNDQsMTgxLDEzOTIsMTg2LjdMMTQ0MCwxOTJMMTQ0MCwzMjBMMTM5MiwzMjBDMTM0NCwzMjAsMTI0OCwzMjAsMTE1MiwzMjBDMTA1NiwzMjAsOTYwLDMyMCw4NjQsMzIwQzc2OCwzMjAsNjcyLDMyMCw1NzYsMzIwQzQ4MCwzMjAsMzg0LDMyMCwyODgsMzIwQzE5MiwzMjAsOTYsMzIwLDQ4LDMyMEwwLDMyMFoiPjwvcGF0aD4KPC9zdmc+');
    background-size: cover;
    animation: wave 10s linear infinite;
}

.wave-1 { 
    opacity: 0.3;
    animation-duration: 15s;
}

.wave-2 { 
    opacity: 0.2;
    animation-duration: 20s;
    animation-delay: -5s;
}

.wave-3 { 
    opacity: 0.1;
    animation-duration: 25s;
    animation-delay: -10s;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Floating Pills */
.floating-pills {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pill {
    position: absolute;
    width: 60px;
    height: 20px;
    background: linear-gradient(to right, rgba(146, 110, 204, 0.2), rgba(112, 109, 156, 0.2));
    border-radius: 10px;
    animation: pillFloat 20s ease-in-out infinite;
}

.pill::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
}

.pill-1 {
    top: 20%;
    left: 10%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.pill-2 {
    top: 70%;
    right: 20%;
    transform: rotate(-30deg);
    animation-delay: 5s;
    background: linear-gradient(to right, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2));
}

.pill-3 {
    top: 40%;
    right: 40%;
    transform: rotate(75deg);
    animation-delay: 10s;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
}

.pill-4 {
    bottom: 30%;
    left: 30%;
    transform: rotate(-60deg);
    animation-delay: 15s;
    background: linear-gradient(to right, rgba(255, 215, 0, 0.2), rgba(255, 237, 78, 0.2));
}

@keyframes pillFloat {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    25% { transform: translateY(-30px) rotate(60deg); }
    50% { transform: translateY(20px) rotate(30deg); }
    75% { transform: translateY(-10px) rotate(75deg); }
}

/* Price Guarantee */
.price-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--border-radius-pill);
    color: #22c55e;
    font-size: 1.6rem;
    font-weight: var(--weight-semibold);
    margin-top: 2rem;
}

.price-guarantee svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: currentColor;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
    background: var(--color-background);
    padding: 1rem;
    border-radius: var(--border-radius-lg);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.4rem;
    background: transparent;
    border: none;
    border-radius: var(--border-radius-md);
    color: var(--color-text-light);
    font-size: 1.6rem;
    font-weight: var(--weight-medium);
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--main-gradient);
    transition: width var(--transition-medium);
    z-index: -1;
}

.tab-btn:hover {
    color: var(--color-secondary);
}

.tab-btn.active {
    background: white;
    color: var(--color-secondary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.tab-btn.active::before {
    width: 100%;
}

.tab-btn svg {
    width: 2rem;
    height: 2rem;
    fill: currentColor;
}

/* Price Categories */
.price-category {
    display: none;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.price-category.active {
    display: block;
    opacity: 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.category-title {
    font-size: 2.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 4rem;
    text-align: center;
}

/* Price Grid */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.price-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    position: relative;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    background: linear-gradient(135deg, white, rgba(146, 110, 204, 0.02));
}

/* Badges */
.best-value-badge,
.popular-badge,
.natural-badge {
    position: absolute;
    top: -1rem;
    right: 2rem;
    padding: 0.6rem 1.5rem;
    background: var(--main-gradient);
    color: white;
    font-size: 1.2rem;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 5px 15px rgba(146, 110, 204, 0.3);
}

.natural-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* Med Header */
.med-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.med-header h4 {
    font-size: 2.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.med-header p {
    font-size: 1.5rem;
    color: var(--color-text-light);
}

/* Price Comparison */
.price-comparison {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--color-background);
    border-radius: var(--border-radius-lg);
}

.our-price {
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    font-size: 1.4rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 4.2rem;
    font-weight: var(--weight-bold);
    color: var(--color-secondary);
    line-height: 1;
}

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

.competitor-price {
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.comp-label {
    display: block;
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.comp-range {
    font-size: 1.8rem;
    color: var(--color-text);
    text-decoration: line-through;
    opacity: 0.7;
}

.savings-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.2rem;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: var(--border-radius-pill);
    font-size: 1.4rem;
    font-weight: var(--weight-semibold);
}

/* Price Features */
.price-features {
    list-style: none;
}

.price-features li {
    padding: 0.8rem 0;
    font-size: 1.5rem;
    color: var(--color-text);
    position: relative;
    padding-left: 2rem;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: var(--weight-bold);
}

/* Specialized Grid */
.specialized-notice {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--border-radius-lg);
    margin-bottom: 3rem;
}

.specialized-notice svg {
    width: 3rem;
    height: 3rem;
    fill: #3b82f6;
    flex-shrink: 0;
}

.specialized-notice p {
    font-size: 1.6rem;
    color: var(--color-text);
}

.price-card.premium {
    background: linear-gradient(135deg, white, rgba(255, 215, 0, 0.02));
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.premium-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-range {
    text-align: center;
    margin-bottom: 2rem;
}

.range-label {
    display: block;
    font-size: 1.4rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.range-value {
    font-size: 2.4rem;
    font-weight: var(--weight-bold);
    color: #d97706;
}

.med-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.med-options span {
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    color: #d97706;
    border-radius: var(--border-radius-pill);
    font-size: 1.3rem;
}

.consult-note {
    text-align: center;
    font-size: 1.5rem;
    color: #d97706;
    font-style: italic;
}

/* Calculator CTA */
.calculator-cta {
    background: linear-gradient(135deg, var(--color-background), white);
    border-radius: 2rem;
    padding: 5rem;
    text-align: center;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.calculator-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(146, 110, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(112, 109, 156, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.calculator-content h3 {
    font-size: 3.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.calculator-content p {
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 3rem;
}

.calculator-cta .btn svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: currentColor;
    margin-right: 1rem;
}

/* ==========================================================================
   3. ANIMATIONS & EFFECTS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   4. RESPONSIVE DESIGN
   ========================================================================== */

/* Large devices (up to 1200px) */
@media (max-width: 1200px) {
    .conditions-grid,
    .partner-treatments {
     grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (tablets, up to 992px) */
@media (max-width: 992px) {
    .treatment-scope,
    .medication-pricing {
        padding: 6rem 0;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .conditions-grid,
    .related-grid,
    .partner-treatments,
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .availability-message {
        max-width: 100%;
    }
    
    .category-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 150px;
    }
}

/* Small devices (up to 768px) */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.8rem;
    }
    
    .category-header h3 {
        font-size: 2.4rem;
    }
    
    .big-number {
        font-size: 5.6rem;
    }
    
    .inquiry-form {
        flex-direction: column;
    }
    
    .inquiry-form .btn {
        width: 100%;
    }
    
    .price-value {
        font-size: 3.2rem;
    }
}

/* Extra small devices (phones, up to 576px) */
@media (max-width: 576px) {
    .treatment-scope,
    .medication-pricing {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .condition-card,
    .partner-card,
    .price-card {
        padding: 2rem;
    }
    
    .medication-examples {
        justify-content: center;
    }
    
    .treatment-stats {
        grid-template-columns: 1fr;
    }
    
    .availability-banner {
        padding: 3rem 2rem;
    }
    
    .tab-btn {
        padding: 1rem 1.5rem;
        font-size: 1.4rem;
    }
    
    .tab-btn svg {
        width: 1.6rem;
        height: 1.6rem;
    }
    
    .price-grid {
        gap: 2rem;
    }
}

/* ==========================================================================
   5. PAYMENT PROCESS SECTION
   ========================================================================== */

.payment-process {
    position: relative;
    padding: 10rem 0;
    background: linear-gradient(to bottom, #f8f9fa, white);
    overflow: hidden;
}

/* Payment Background */
.payment-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.secure-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(146, 110, 204, 0.03) 0, rgba(146, 110, 204, 0.03) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(146, 110, 204, 0.03) 0, rgba(146, 110, 204, 0.03) 1px, transparent 1px, transparent 40px);
    animation: secureMove 40s linear infinite;
}

@keyframes secureMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.lock-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lock-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.1;
}

.lock-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--color-secondary);
}

.lock-icon.floating {
    top: 20%;
    left: 80%;
    animation: floatLock 15s ease-in-out infinite;
}

@keyframes floatLock {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(10deg); }
    50% { transform: translateY(10px) rotate(-10deg); }
    75% { transform: translateY(-10px) rotate(5deg); }
}

/* Payment Content */
.payment-process .container {
    position: relative;
    z-index: 1;
}

/* Consultative Approach Cards */
.consultative-approach {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.approach-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(146, 110, 204, 0.05));
    transition: top var(--transition-medium);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.approach-card:hover::before {
    top: 0;
}

.approach-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(146, 110, 204, 0.1), rgba(112, 109, 156, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-medium);
}

.approach-card:hover .approach-icon {
    transform: scale(1.1) rotate(5deg);
}

.approach-icon svg {
    width: 4.5rem;
    height: 4.5rem;
    fill: var(--color-secondary);
}

.approach-card h3 {
    font-size: 2.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.approach-card p {
    font-size: 1.6rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Payment Benefits */
.payment-benefits {
    margin-bottom: 6rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.payment-benefits h3 {
    font-size: 3.2rem;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: 4rem;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 6rem;
    height: 6rem;
    background: var(--main-gradient);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 3rem;
    height: 3rem;
    fill: white;
}

.benefit-item h4 {
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.8rem;
}

.benefit-item p {
    font-size: 1.5rem;
    color: var(--color-text-light);
}

/* Consultation Flow */
.consultation-flow {
    background: white;
    border-radius: 2rem;
    padding: 5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 6rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.consultation-flow h3 {
    font-size: 2.8rem;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: 4rem;
}

.flow-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
}

.flow-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 5rem;
    height: 5rem;
    background: var(--main-gradient);
    color: white;
    font-size: 2.2rem;
    font-weight: var(--weight-bold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 5px 20px rgba(146, 110, 204, 0.3);
}

.step-number::after {
    content: '';
    position: absolute;
    width: 6rem;
    height: 6rem;
    border: 2px solid rgba(146, 110, 204, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.step-content h4 {
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.8rem;
}

.step-content p {
    font-size: 1.4rem;
    color: var(--color-text-light);
}

.flow-connector {
    position: absolute;
    top: 2.5rem;
    width: calc(100% - 5rem);
    height: 2px;
    background: linear-gradient(to right, var(--color-border), var(--color-secondary), var(--color-border));
    z-index: 1;
}

.flow-connector:nth-child(2) { left: 2.5rem; }
.flow-connector:nth-child(4) { left: calc(33.33% + 2.5rem); }
.flow-connector:nth-child(6) { left: calc(66.66% + 2.5rem); }

/* Security Section */
.security-section {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(146, 110, 204, 0.05), rgba(112, 109, 156, 0.05));
    border-radius: var(--border-radius-lg);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.badge-item img {
    width: 80px;
    height: auto;
    opacity: 0.8;
    transition: opacity var(--transition-medium);
}

.badge-item:hover img {
    opacity: 1;
}

.badge-item span {
    font-size: 1.4rem;
    color: var(--color-text-light);
    font-weight: var(--weight-medium);
}

.security-note {
    font-size: 1.6rem;
    color: var(--color-text);
    max-width: 60rem;
    margin: 0 auto;
}

/* ==========================================================================
   6. COMPETITIVE COMPARISON SECTION
   ========================================================================== */

.competitive-comparison {
    position: relative;
    padding: 10rem 0;
    background: white;
    overflow: hidden;
}

/* Comparison Background */
.comparison-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.versus-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.vs-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: var(--weight-bold);
    color: rgba(146, 110, 204, 0.05);
    z-index: 2;
}

.vs-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(146, 110, 204, 0.1);
    top: 50%;
    left: 0;
    transform-origin: center;
}

.vs-line.line-1 {
    animation: vsRotate 15s linear infinite;
}

.vs-line.line-2 {
    animation: vsRotate 15s linear infinite reverse;
}

@keyframes vsRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.floating-logos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.competitor-logo {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(200, 200, 200, 0.1);
    border-radius: var(--border-radius-lg);
    animation: logoFloat 20s ease-in-out infinite;
}

.logo-1 { top: 20%; left: 10%; animation-delay: 0s; }
.logo-2 { top: 70%; right: 15%; animation-delay: 7s; }
.logo-3 { bottom: 30%; left: 50%; animation-delay: 14s; }

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.1; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 0.2; }
}

/* Comparison Content */
.competitive-comparison .container {
    position: relative;
    z-index: 1;
}

/* Comparison Table */
.comparison-wrapper {
    margin-bottom: 6rem;
}

.comparison-table-container {
    overflow-x: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--color-background);
}

.comparison-table th {
    padding: 2.5rem 2rem;
    text-align: center;
    font-weight: var(--weight-semibold);
    border-bottom: 2px solid var(--color-border);
}

.feature-col {
    text-align: left;
    width: 25%;
}

.competitor-col {
    width: 18.75%;
}

.our-col {
    width: 18.75%;
    background: linear-gradient(to bottom, rgba(146, 110, 204, 0.05), transparent);
}

.competitor-header,
.our-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.company-name {
    font-size: 1.8rem;
    color: var(--color-primary-dark);
}

.company-tag {
    font-size: 1.2rem;
    color: var(--color-text-light);
    font-weight: var(--weight-normal);
}

.our-header .company-name {
    color: var(--color-secondary);
    font-weight: var(--weight-bold);
}

.winner-badge {
    position: absolute;
    top: -1.5rem;
    right: 50%;
    transform: translateX(50%);
    width: 4rem;
    height: 4rem;
    background: var(--main-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(146, 110, 204, 0.3);
    animation: winnerPulse 2s ease-in-out infinite;
}

@keyframes winnerPulse {
    0%, 100% { transform: translateX(50%) scale(1); }
    50% { transform: translateX(50%) scale(1.1); }
}

.winner-badge svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: white;
}

.comparison-table tbody tr {
    transition: background var(--transition-fast);
}

.comparison-table tbody tr:hover {
    background: rgba(146, 110, 204, 0.02);
}

.comparison-table td {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-weight: var(--weight-medium);
    color: var(--color-primary-dark);
}

.feature-icon {
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--color-text-light);
}

/* Value Styling */
.competitor-value {
    font-size: 1.6rem;
    color: var(--color-text);
}

.our-value {
    font-size: 1.6rem;
    color: var(--color-secondary);
    font-weight: var(--weight-semibold);
}

.high-price {
    color: #ef4444;
}

.best-price {
    color: #22c55e;
    font-weight: var(--weight-bold);
}

.limited {
    color: #f59e0b;
}

.comprehensive {
    color: #22c55e;
    font-weight: var(--weight-bold);
}

.extra-fee {
    color: #ef4444;
}

.free {
    color: #22c55e;
    font-weight: var(--weight-bold);
}

.included {
    color: #22c55e;
}

.unlimited {
    color: #22c55e;
    font-weight: var(--weight-bold);
}

.refer-out {
    color: #ef4444;
}

.not-treated {
    color: #6b7280;
}

.evaluate-all {
    color: #22c55e;
    font-weight: var(--weight-bold);
}

.none {
    color: #6b7280;
}

.full-access {
    color: #22c55e;
    font-weight: var(--weight-bold);
}

.free-express {
    color: #22c55e;
    font-weight: var(--weight-bold);
}

/* Summary Row */
.summary-row {
    background: var(--color-background);
    font-weight: var(--weight-bold);
}

.summary-row td {
    padding: 2.5rem 2rem;
}

.total-price {
    font-size: 1.8rem;
    color: #ef4444;
}

.total-savings {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.savings-amount {
    font-size: 2.2rem;
    color: #22c55e;
}

.save-percentage {
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: var(--border-radius-pill);
}

/* Mobile Comparison */
.mobile-comparison {
    display: none;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-comparison-header h3 {
    font-size: 2.2rem;
    color: var(--color-primary-dark);
}

.competitor-select {
    padding: 1rem 1.5rem;
    font-size: 1.6rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    background: white;
    cursor: pointer;
}

/* Key Advantages */
.key-advantages {
    margin-bottom: 6rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.key-advantages h3 {
    font-size: 3.2rem;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: 4rem;
}

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

.advantage-card {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(146, 110, 204, 0.1), rgba(112, 109, 156, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg {
    width: 4rem;
    height: 4rem;
    stroke: var(--color-secondary);
    stroke-width: 2;
    fill: none;
}

.advantage-card h4 {
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.advantage-card p {
    font-size: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Comparison CTA */
.comparison-cta {
    background: var(--main-gradient);
    border-radius: 2rem;
    padding: 5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.comparison-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: ctaRotate 30s linear infinite;
}

@keyframes ctaRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.comparison-cta h3 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.comparison-cta p {
    font-size: 2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.comparison-cta .btn-large {
    font-size: 1.8rem;
    padding: 1.6rem 3.2rem;
}

.comparison-cta .btn-primary {
    background: white;
    color: var(--color-secondary);
}

.comparison-cta .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comparison-cta .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.comparison-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE DESIGN - Sections 5 & 6
   ========================================================================== */

/* Large devices (up to 1200px) */
@media (max-width: 1200px) {
    .consultative-approach {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (tablets, up to 992px) */
@media (max-width: 992px) {
    .payment-process,
    .competitive-comparison {
        padding: 6rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-timeline {
        flex-direction: column;
        gap: 3rem;
    }
    
    .flow-connector {
        display: none;
    }
    
    .security-badges {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    /* Hide desktop table, show mobile comparison */
    .comparison-table-container {
        display: none;
    }
    
    .mobile-comparison {
        display: block;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Small devices (up to 768px) */
@media (max-width: 768px) {
    .payment-benefits h3,
    .consultation-flow h3,
    .key-advantages h3 {
        font-size: 2.4rem;
    }
    
    .comparison-cta h3 {
        font-size: 2.8rem;
    }
    
    .comparison-cta p {
        font-size: 1.8rem;
    }
}

/* Extra small devices (up to 576px) */
@media (max-width: 576px) {
    .payment-process,
    .competitive-comparison {
        padding: 4rem 0;
    }
    
    .approach-card,
    .consultation-flow {
        padding: 2.5rem 2rem;
    }
    
    .approach-icon {
        width: 6rem;
        height: 6rem;
    }
    
    .approach-card h3 {
        font-size: 1.8rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .mobile-comparison {
        padding: 2rem;
    }
    
    .comparison-cta {
        padding: 3rem 2rem;
    }
}

/* ==========================================================================
   7. OFFERS & GUARANTEES SECTION
   ========================================================================== */

.offers-guarantees {
    position: relative;
    padding: 10rem 0;
    background: linear-gradient(to bottom, #f8f9fa, white);
    overflow: hidden;
}

/* Offers Background */
.offers-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Sparkle Field */
.sparkle-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-secondary);
    border-radius: 50%;
    animation: sparkleAnimation 3s ease-in-out infinite;
}

.sparkle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 20px;
    background: var(--color-secondary);
    opacity: 0.5;
}

.sparkle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: var(--color-secondary);
    opacity: 0.5;
}

.sparkle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle-2 { top: 60%; left: 30%; animation-delay: 0.5s; }
.sparkle-3 { top: 40%; right: 20%; animation-delay: 1s; }
.sparkle-4 { bottom: 30%; left: 60%; animation-delay: 1.5s; }
.sparkle-5 { top: 80%; right: 40%; animation-delay: 2s; }

@keyframes sparkleAnimation {
    0%, 100% { 
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% { 
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
}

/* Offer Waves */
.offer-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
}

.wave-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSIzMjAiIHZpZXdCb3g9IjAgMCAxNDQwIDMyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgOTZMMzQgOTBDNjkgODUgMTM3IDc1IDIwNiA5NkMyNzQgMTE3IDM0MyAxNzEgNDExIDE3MUM0ODAgMTcxIDU0OSAxMTcgNjE3IDEwN0M2ODYgOTYgNzU0IDEyOCA4MjMgMTI4Qzg5MSAxMjggOTYwIDk2IDEwMjkgOTZDMTA5NyA5NiAxMTY2IDEyOCAxMjM0IDE0NEMxMzAzIDE2MCAxMzcxIDE2MCAxNDA2IDE2MEwxNDQwIDE2MFYzMjBIMTQwNkMxMzcxIDMyMCAxMzAzIDMyMCAxMjM0IDMyMEMxMTY2IDMyMCAxMDk3IDMyMCAxMDI5IDMyMEM5NjAgMzIwIDg5MSAzMjAgODIzIDMyMEM3NTQgMzIwIDY4NiAzMjAgNjE3IDMyMEM1NDkgMzIwIDQ4MCAzMjAgNDExIDMyMEMzNDMgMzIwIDI3NCAzMjAgMjA2IDMyMEMxMzcgMzIwIDY5IDMyMCAzNCAzMjBMMCAzMjBWOTZaIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXIpIi8+CjxkZWZzPgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXIiIHgxPSI3MjAiIHkxPSIwIiB4Mj0iNzIwIiB5Mj0iMzIwIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9InJnYmEoMTQ2LDExMCwyMDQsMC4wNSkiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSJyZ2JhKDE0NiwxMTAsMjA0LDApIi8+CjwvbGluZWFyR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+');
    background-size: cover;
    background-repeat: repeat-x;
}

.layer-1 {
    animation: waveAnimation 20s linear infinite;
    opacity: 0.5;
}

.layer-2 {
    animation: waveAnimation 30s linear infinite reverse;
    opacity: 0.3;
}

@keyframes waveAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 8rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* Offer Cards */
.offer-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--main-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.offer-card:hover::before {
    transform: scaleX(1);
}

/* Featured Offer */
.featured-offer {
    background: linear-gradient(135deg, white, rgba(146, 110, 204, 0.02));
    border: 2px solid rgba(146, 110, 204, 0.1);
    grid-row: span 2;
}

.offer-ribbon {
    position: absolute;
    top: 2rem;
    right: -3rem;
    background: var(--main-gradient);
    color: white;
    padding: 0.5rem 4rem;
    transform: rotate(45deg);
    font-size: 1.2rem;
    font-weight: var(--weight-bold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.offer-icon {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, rgba(146, 110, 204, 0.1), rgba(112, 109, 156, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.offer-icon svg {
    width: 4rem;
    height: 4rem;
    fill: var(--color-secondary);
}

.offer-title {
    font-size: 2.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.offer-description {
    font-size: 1.8rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.offer-details {
    list-style: none;
    margin-bottom: 3rem;
}

.offer-details li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    color: var(--color-text);
}

.offer-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: var(--weight-bold);
    font-size: 2rem;
}

/* Spots Counter */
.spots-counter {
    margin: 2rem 0;
}

.counter-visual {
    width: 100%;
    height: 2rem;
    background: var(--color-border);
    border-radius: var(--border-radius-pill);
    overflow: hidden;
    margin-bottom: 1rem;
}

.counter-fill {
    height: 100%;
    background: var(--main-gradient);
    border-radius: var(--border-radius-pill);
    position: relative;
    animation: fillPulse 2s ease-in-out infinite;
}

@keyframes fillPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.spots-text {
    text-align: center;
    font-size: 1.6rem;
    color: var(--color-text);
}

.spots-text strong {
    color: var(--color-secondary);
    font-size: 2rem;
}

/* Discount Tiers */
.discount-tiers {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.tier {
    flex: 1;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--border-radius-md);
    text-align: center;
}

.tier-label {
    display: block;
    font-size: 1.4rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.tier-discount {
    display: block;
    font-size: 2.4rem;
    font-weight: var(--weight-bold);
    color: #22c55e;
}

.example-savings {
    text-align: center;
    font-size: 1.6rem;
    color: var(--color-text);
}

/* Annual Calculator */
.annual-calculator {
    background: var(--color-background);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    margin-top: 2rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1.6rem;
    color: var(--color-text);
}

.calc-row.highlight {
    font-weight: var(--weight-semibold);
    color: var(--color-secondary);
}

.calc-value {
    font-weight: var(--weight-semibold);
}

.calc-savings {
    text-align: center;
    padding: 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--border-radius-md);
    margin-top: 1rem;
    font-size: 1.8rem;
    color: #22c55e;
}

/* Guarantees Section */
.guarantees-section {
    margin-bottom: 8rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.guarantees-title {
    font-size: 3.6rem;
    text-align: center;
    color: var(--color-primary-dark);
    margin-bottom: 5rem;
}

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

.guarantee-card {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    transition: all var(--transition-medium);
}

.guarantee-card:hover {
    border-color: var(--color-secondary);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guarantee-badge {
    flex-shrink: 0;
    width: 10rem;
    height: 10rem;
    background: var(--main-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(146, 110, 204, 0.3);
}

.guarantee-number {
    font-size: 4rem;
    font-weight: var(--weight-bold);
    line-height: 1;
}

.guarantee-unit {
    font-size: 1.4rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.guarantee-icon {
    flex-shrink: 0;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, rgba(146, 110, 204, 0.1), rgba(112, 109, 156, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon svg {
    width: 5rem;
    height: 5rem;
    fill: var(--color-secondary);
}

.guarantee-content h4 {
    font-size: 2.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 1.6rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Referral Section */
.referral-section {
    background: var(--main-gradient);
    border-radius: 2rem;
    padding: 6rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.referral-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.referral-content h3 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.referral-content > p {
    font-size: 2rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.referral-rewards {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.reward-tier {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    transition: all var(--transition-medium);
}

.reward-tier:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.reward-tier.premium {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.reward-icon {
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.reward-icon svg {
    width: 4rem;
    height: 4rem;
    fill: white;
}

.reward-tier h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.reward-value {
    font-size: 3rem;
    font-weight: var(--weight-bold);
    margin-bottom: 0.5rem;
}

.reward-detail {
    font-size: 1.4rem;
    opacity: 0.8;
}

.referral-section .btn {
    background: white;
    color: var(--color-secondary);
}

.referral-section .btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

/* ==========================================================================
   8. PRICING FAQ SECTION
   ========================================================================== */

.pricing-faq {
    position: relative;
    padding: 10rem 0;
    background: white;
    overflow: hidden;
}

/* FAQ Background */
.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.question-marks {
    position: relative;
    width: 100%;
    height: 100%;
}

.q-mark {
    position: absolute;
    font-size: 8rem;
    font-weight: var(--weight-bold);
    color: rgba(146, 110, 204, 0.05);
    animation: floatQuestion 20s ease-in-out infinite;
}

.q-1 { top: 10%; left: 5%; animation-delay: 0s; }
.q-2 { top: 30%; right: 10%; animation-delay: 4s; }
.q-3 { bottom: 20%; left: 15%; animation-delay: 8s; }
.q-4 { top: 60%; left: 50%; animation-delay: 12s; }
.q-5 { bottom: 40%; right: 20%; animation-delay: 16s; }

@keyframes floatQuestion {
    0%, 100% { 
        transform: translateY(0) rotate(-10deg);
        opacity: 0.05;
    }
    50% { 
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.1;
    }
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.faq-category {
    padding: 1.2rem 2.4rem;
    background: transparent;
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-pill);
    color: var(--color-text);
    font-size: 1.6rem;
    font-weight: var(--weight-medium);
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.faq-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--main-gradient);
    transition: width var(--transition-medium);
    z-index: -1;
}

.faq-category:hover {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.faq-category.active {
    background: var(--main-gradient);
    border-color: transparent;
    color: white;
}

/* FAQ Content */
.faq-content {
    max-width: 80rem;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.faq-group {
    display: none;
}

.faq-group.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* FAQ Items */
.faq-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(146, 110, 204, 0.1);
}

.faq-question {
    width: 100%;
    padding: 2.5rem 3rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--color-background);
}

.faq-question span {
    font-size: 1.8rem;
    font-weight: var(--weight-semibold);
    color: var(--color-primary-dark);
    text-align: left;
    flex: 1;
}

.faq-icon {
    width: 2.4rem;
    height: 2.4rem;
    fill: var(--color-text-light);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon path {
    d: path("M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z");
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 50rem;
}

.faq-answer > * {
    padding: 0 3rem 2.5rem;
}

.faq-answer p {
    font-size: 1.6rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.faq-answer ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.faq-answer li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: var(--color-text);
    line-height: 1.6;
}

.faq-answer li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: var(--weight-bold);
}

.faq-answer strong {
    color: var(--color-primary-dark);
    font-weight: var(--weight-semibold);
}

/* Plan Comparison Mini */
.plan-comparison-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.plan-feature,
.plan-differences {
    padding: 2rem;
    background: var(--color-background);
    border-radius: var(--border-radius-md);
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    padding: 5rem;
    background: linear-gradient(135deg, var(--color-background), white);
    border-radius: var(--border-radius-lg);
    margin-top: 6rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.faq-cta h3 {
    font-size: 3.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.faq-cta > p {
    font-size: 1.8rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.faq-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.faq-cta .btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 2.8rem;
}

.faq-cta .btn svg {
    width: 2rem;
    height: 2rem;
    fill: currentColor;
}

/* ==========================================================================
   RESPONSIVE DESIGN - Sections 7 & 8
   ========================================================================== */

/* Large devices (up to 1200px) */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-offer {
        grid-row: auto;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .referral-rewards {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .reward-tier {
        max-width: 30rem;
    }
}

/* Medium devices (up to 992px) */
@media (max-width: 992px) {
    .offers-guarantees,
    .pricing-faq {
        padding: 6rem 0;
    }
    
    .offer-card {
        padding: 3rem;
    }
    
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .faq-categories {
        flex-wrap: wrap;
    }
    
    .plan-comparison-mini {
        grid-template-columns: 1fr;
    }
}

/* Small devices (up to 768px) */
@media (max-width: 768px) {
    .guarantees-title,
    .faq-cta h3 {
        font-size: 2.8rem;
    }
    
    .offer-title {
        font-size: 2.2rem;
    }
    
    .guarantee-badge,
    .guarantee-icon {
        width: 8rem;
        height: 8rem;
    }
    
    .guarantee-number {
        font-size: 3rem;
    }
    
    .referral-section {
        padding: 4rem 3rem;
    }
    
    .referral-content h3 {
        font-size: 2.4rem;
    }
    
    .q-mark {
        font-size: 6rem;
    }
    
    .faq-category {
        font-size: 1.4rem;
        padding: 1rem 1.8rem;
    }
    
    .faq-question span {
        font-size: 1.6rem;
    }
    
    .faq-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Extra small devices (up to 576px) */
@media (max-width: 576px) {
    .offers-guarantees,
    .pricing-faq {
        padding: 4rem 0;
    }
    
    .offer-card {
        padding: 2.5rem 2rem;
    }
    
    .offer-ribbon {
        font-size: 1rem;
        padding: 0.4rem 3rem;
    }
    
    .discount-tiers {
        flex-direction: column;
    }
    
    .annual-calculator {
        padding: 1.5rem;
    }
    
    .calc-row {
        font-size: 1.4rem;
    }
    
    .guarantee-card {
        padding: 2.5rem;
    }
    
    .faq-question {
        padding: 2rem;
    }
    
    .faq-answer > * {
        padding: 0 2rem 2rem;
    }
    
    .faq-cta {
        padding: 3rem 2rem;
    }
}


/* ==========================================================================
   SECTION 9: VALUE CALCULATOR
   Interactive savings calculator with real-time updates
   ========================================================================== */

.value-calculator {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, #f8f6ff 0%, #fff 100%);
    overflow: hidden;
}

/* Calculator Background Effects */
.calculator-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.calc-grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #926ecc, transparent);
}

.grid-line:nth-child(1),
.grid-line:nth-child(2) {
    width: 1px;
    height: 100%;
    top: 0;
}

.grid-line:nth-child(1) { left: 25%; }
.grid-line:nth-child(2) { left: 75%; }

.grid-line:nth-child(3),
.grid-line:nth-child(4) {
    width: 100%;
    height: 1px;
    left: 0;
}

.grid-line:nth-child(3) { top: 25%; }
.grid-line:nth-child(4) { top: 75%; }

/* Floating Numbers Animation */
.floating-numbers {
    position: absolute;
    inset: 0;
}

.number {
    position: absolute;
    font-size: 6rem;
    font-weight: 700;
    color: #926ecc;
    opacity: 0.05;
    animation: floatNumber 20s infinite ease-in-out;
}

.number-1 { top: 10%; left: 15%; animation-delay: 0s; }
.number-2 { top: 60%; right: 10%; animation-delay: 5s; }
.number-3 { bottom: 20%; left: 20%; animation-delay: 10s; }
.number-4 { top: 30%; right: 25%; animation-delay: 15s; }

@keyframes floatNumber {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(10deg); }
    50% { transform: translateY(20px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(5deg); }
}

/* Calculator Interface */
.calculator-interface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.calculator-panel {
    background: white;
    border-radius: 2rem;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Calculator Steps */
.calc-step {
    display: none;
    animation: slideUp 0.5s ease-out;
}

.calc-step.active {
    display: block;
}

.step-title {
    font-size: 2.2rem;
    color: #1a1545;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

/* Provider Selection */
.provider-selection {
    display: grid;
    gap: 1.5rem;
}

.provider-option {
    position: relative;
    cursor: pointer;
}

.provider-option input {
    position: absolute;
    opacity: 0;
}

.provider-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 1.2rem;
    transition: all 0.3s ease;
}

.provider-option input:checked + .provider-card {
    background: linear-gradient(135deg, #926ecc 0%, #706d9c 100%);
    border-color: #926ecc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(146, 110, 204, 0.3);
}

.provider-name {
    font-size: 1.8rem;
    font-weight: 600;
}

.provider-cost {
    font-size: 1.6rem;
    font-weight: 500;
}

.custom-cost {
    width: 10rem;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 0.6rem;
    font-size: 1.6rem;
    background: white;
    color: #1a1545;
}

.provider-option input:checked + .provider-card .custom-cost {
    border-color: white;
}

/* Treatment Selection */
.treatment-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.treatment-option {
    position: relative;
    cursor: pointer;
}

.treatment-option input {
    position: absolute;
    opacity: 0;
}

.treatment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.treatment-option input:checked + .treatment-card {
    background: linear-gradient(135deg, #926ecc 0%, #706d9c 100%);
    border-color: #926ecc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(146, 110, 204, 0.3);
}

.treatment-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-icon svg {
    width: 100%;
    height: 100%;
    fill: #926ecc;
    transition: fill 0.3s ease;
}

.treatment-option input:checked + .treatment-card .treatment-icon svg {
    fill: white;
}

.treatment-card span {
    font-size: 1.6rem;
    font-weight: 600;
}

/* Duration Selection */
.duration-slider {
    max-width: 40rem;
}

.duration-slider label {
    display: block;
    font-size: 1.8rem;
    color: #1a1545;
    margin-bottom: 2rem;
}

.slider-container {
    position: relative;
}

.duration-input {
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, #926ecc 0%, #926ecc var(--progress), #e9ecef var(--progress));
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
}

.duration-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #926ecc;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(146, 110, 204, 0.4);
    transition: all 0.3s ease;
}

.duration-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 20px rgba(146, 110, 204, 0.6);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 1.4rem;
    color: #6b7280;
}

.duration-display {
    text-align: center;
    margin-top: 2rem;
}

.duration-value {
    font-size: 4rem;
    font-weight: 700;
    color: #926ecc;
}

.duration-unit {
    font-size: 2rem;
    color: #6b7280;
    margin-left: 0.5rem;
}

/* Results Panel */
.results-panel {
    background: linear-gradient(135deg, #926ecc 0%, #706d9c 100%);
    border-radius: 2rem;
    padding: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.results-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.results-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.result-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.result-section h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Comparison Bars */
.comparison-bars {
    margin-bottom: 2rem;
}

.bar-item {
    margin-bottom: 1.5rem;
}

.bar-label {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.bar-container {
    position: relative;
    height: 4rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2rem;
    overflow: hidden;
}

.bar {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1.5rem;
    border-radius: 2rem;
    transition: width 1s ease-out;
}

.competitor-bar {
    background: rgba(239, 68, 68, 0.8);
}

.our-bar {
    background: rgba(34, 197, 94, 0.9);
}

.bar-value {
    font-size: 1.6rem;
    font-weight: 600;
}

.monthly-savings {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.savings-amount {
    font-size: 2.4rem;
    font-weight: 700;
    color: #22c55e;
}

/* Featured Result Section */
.result-section.featured {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.1));
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.total-savings-display {
    text-align: center;
    margin: 2rem 0;
}

.savings-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.currency {
    font-size: 3.5rem;
    margin-right: 0.5rem;
}

.savings-period {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.savings-breakdown {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.8rem;
}

.breakdown-item .cost {
    font-weight: 600;
}

/* Benefits List */
.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefits-list svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: #22c55e;
    flex-shrink: 0;
}

.benefits-list span {
    font-size: 1.6rem;
    line-height: 1.5;
}

/* Calculator CTA */
.calculator-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.calculator-cta .btn {
    font-size: 2rem;
    padding: 2rem 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Navigation */
.calculator-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:not(:disabled):hover {
    border-color: #926ecc;
    color: #926ecc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(146, 110, 204, 0.2);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-btn svg {
    width: 2rem;
    height: 2rem;
    fill: currentColor;
}

.step-indicators {
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 4rem;
    height: 0.4rem;
    background: #e9ecef;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #926ecc;
    transform: scaleX(1.5);
}

/* Examples Section */
.examples-section {
    margin-top: 6rem;
}

.examples-section h3 {
    font-size: 2.4rem;
    color: #1a1545;
    margin-bottom: 3rem;
    text-align: center;
}

.example-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2.5rem;
}

.example-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.example-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.example-condition {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1545;
}

.example-vs {
    font-size: 1.4rem;
    color: #6b7280;
}

.example-savings {
    text-align: center;
}

.save-amount {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.save-period {
    font-size: 1.6rem;
    color: #6b7280;
}

/* ==========================================================================
   SECTION 10: SUCCESS STORIES & SOCIAL PROOF
   Real testimonials and impressive metrics
   ========================================================================== */

.success-stories {
    padding: 8rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Stories Background */
.stories-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.testimonial-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(146, 110, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(112, 109, 156, 0.03) 0%, transparent 50%);
}

.floating-quotes {
    position: absolute;
    inset: 0;
}

.quote {
    position: absolute;
    font-size: 15rem;
    font-weight: 700;
    color: #926ecc;
    opacity: 0.03;
    font-family: Georgia, serif;
    animation: floatQuote 25s infinite ease-in-out;
}

.quote-1 { top: 5%; left: 10%; animation-delay: 0s; }
.quote-2 { bottom: 10%; right: 15%; animation-delay: 8s; }
.quote-3 { top: 50%; left: 50%; animation-delay: 16s; }

@keyframes floatQuote {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(-10deg); }
    66% { transform: translateY(15px) rotate(5deg); }
}

/* Success Metrics */
.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin: 5rem 0;
}

.metric-card {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.4rem;
    background: linear-gradient(90deg, #926ecc 0%, #706d9c 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.metric-card:hover::before {
    transform: scaleX(1);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #926ecc 0%, #706d9c 100%);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(146, 110, 204, 0.2);
}

.metric-icon svg {
    width: 3rem;
    height: 3rem;
    fill: white;
}

.metric-value {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1545;
    margin-bottom: 1rem;
}

.metric-label {
    font-size: 1.6rem;
    color: #6b7280;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Featured Story */
.testimonial-card.featured-story {
    grid-column: span 2;
    background: linear-gradient(135deg, #f8f6ff 0%, #fff 100%);
    border: 2px solid rgba(146, 110, 204, 0.2);
}

.story-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #926ecc 0%, #706d9c 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.patient-info {
    display: flex;
    gap: 1.5rem;
}

.patient-avatar {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #926ecc 0%, #706d9c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.8rem;
}

.patient-name {
    font-size: 1.8rem;
    color: #1a1545;
    margin-bottom: 0.5rem;
}

.patient-condition {
    font-size: 1.4rem;
    color: #6b7280;
}

.savings-badge {
    text-align: right;
}

.saved-amount {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #22c55e;
}

.saved-period {
    font-size: 1.4rem;
    color: #6b7280;
}

.testimonial-content {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    color: #f59e0b;
    font-size: 1.8rem;
}

.verified {
    font-size: 1.3rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.helpful-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    background: #926ecc;
    color: white;
    border-color: #926ecc;
}

.helpful-btn svg {
    width: 1.6rem;
    height: 1.6rem;
    fill: currentColor;
}

/* Cost Comparison */
.cost-comparison {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 1rem;
    margin-top: 1.5rem;
}

.before {
    color: #ef4444;
    font-weight: 600;
    text-decoration: line-through;
}

.arrow {
    color: #6b7280;
}

.after {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.2em;
}

/* Treatment Tags */
.treatment-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tag {
    padding: 0.6rem 1.5rem;
    background: rgba(146, 110, 204, 0.1);
    color: #926ecc;
    border-radius: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Family Savings */
.family-savings {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.05));
    border-radius: 1rem;
}

.family-savings .icon {
    font-size: 2.4rem;
}

.family-savings .text {
    font-size: 1.6rem;
    font-weight: 600;
    color: #22c55e;
}

/* Social Proof Section */
.social-proof-section {
    margin: 6rem 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 3rem;
}

.proof-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.proof-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.proof-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #926ecc 0%, #706d9c 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.proof-icon svg {
    width: 3rem;
    height: 3rem;
    fill: white;
}

.proof-content h4 {
    font-size: 2rem;
    color: #1a1545;
    margin-bottom: 0.8rem;
}

.proof-content p {
    font-size: 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Stories CTA */
.stories-cta {
    text-align: center;
    padding: 5rem;
    background: linear-gradient(135deg, #926ecc 0%, #706d9c 100%);
    border-radius: 3rem;
    position: relative;
    overflow: hidden;
}

.stories-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.cta-content h3 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
}

.stat strong {
    color: white;
    font-size: 1.8rem;
}

.divider {
    color: rgba(255, 255, 255, 0.3);
}

.stories-cta .btn {
    font-size: 2rem;
    padding: 2rem 4rem;
    background: white;
    color: #926ecc;
}

.stories-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Button Glow Effect */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-glow:hover::before {
    width: 300px;
    height: 300px;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .calculator-interface {
        grid-template-columns: 1fr;
    }
    
    .results-panel {
        margin-top: 3rem;
    }
    
    .testimonial-card.featured-story {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .value-calculator,
    .success-stories {
        padding: 6rem 0;
    }
    
    .section-title {
        font-size: 3.2rem;
    }
    
    .calculator-panel,
    .results-panel {
        padding: 3rem;
    }
    
    .treatment-selection {
        grid-template-columns: 1fr;
    }
    
    .nav-btn span {
        display: none;
    }
    
    .success-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .metric-value {
        font-size: 3rem;
    }
    
    .savings-number {
        font-size: 4rem;
    }
    
    .example-cards {
        grid-template-columns: 1fr;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2.8rem;
    }
    
    .calculator-panel,
    .results-panel {
        padding: 2rem;
    }
    
    .provider-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .success-metrics {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .stories-cta {
        padding: 3rem 2rem;
    }
    
    .stories-cta .btn {
        font-size: 1.8rem;
        padding: 1.5rem 3rem;
    }
}



/* ==========================================================================
   SECTION 11: FINAL CALL-TO-ACTION
   The ultimate conversion section with urgency and clear action paths
   ========================================================================== */

.final-cta-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #f8f6ff 0%, #fff 50%, #f8f6ff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.cta-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.urgency-ticker {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        #ef4444 20%,
        #f59e0b 40%,
        #22c55e 60%,
        #926ecc 80%,
        transparent
    );
    animation: tickerMove 20s linear infinite;
}

@keyframes tickerMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Pulse Rings */
.pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(146, 110, 204, 0.1);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    animation: pulseRing 4s ease-out infinite;
}

.ring-2 {
    animation: pulseRing 4s ease-out infinite 1.3s;
    width: 800px;
    height: 800px;
}

.ring-3 {
    animation: pulseRing 4s ease-out infinite 2.6s;
    width: 1000px;
    height: 1000px;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #1a1545 0%, #2d2a5a 100%);
    color: white;
    padding: 2rem;
    border-radius: 2rem;
    margin-bottom: 5rem;
    box-shadow: 0 10px 40px rgba(26, 21, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.urgency-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

/* Spots Remaining */
.spots-remaining {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spots-icon {
    font-size: 2.4rem;
    animation: fireFlicker 1s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% { transform: scale(1) rotate(-5deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.spots-text {
    font-size: 2rem;
    font-weight: 600;
}

.spots-count {
    color: #f59e0b;
    font-size: 2.8rem;
    font-weight: 700;
    animation: countPulse 2s ease-in-out infinite;
}

@keyframes countPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Countdown Timer */
.countdown-timer {
    text-align: center;
}

.timer-label {
    display: block;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.timer-display {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.time-unit {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.time-value {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.time-unit .time-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.separator {
    font-size: 2.4rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Main CTA Content */
.cta-main {
    position: relative;
    z-index: 1;
}

/* Final Plans Grid */
.final-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 3rem;
    margin: 5rem 0;
}

.final-plan-card {
    background: white;
    border-radius: 2rem;
    padding: 3.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.final-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Featured Plan */
.final-plan-card.featured {
    border-color: #926ecc;
    transform: scale(1.05);
    position: relative;
    overflow: hidden;
}

.featured-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(146, 110, 204, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.final-plan-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

/* Plan Highlight */
.plan-highlight {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #926ecc;
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(146, 110, 204, 0.3);
}

.plan-highlight.featured {
    background: linear-gradient(135deg, #926ecc 0%, #706d9c 100%);
}

/* Plan Content */
.plan-title {
    font-size: 2.4rem;
    color: #1a1545;
    margin: 2rem 0;
    text-align: center;
}

.plan-pricing {
    text-align: center;
    margin-bottom: 3rem;
}

.currency {
    font-size: 2.4rem;
    color: #6b7280;
    vertical-align: top;
}

.price {
    font-size: 5.6rem;
    font-weight: 700;
    color: #1a1545;
    line-height: 1;
}

.period {
    font-size: 1.8rem;
    color: #6b7280;
}

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

.plan-features li {
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    color: #4b5563;
    font-size: 1.6rem;
    line-height: 1.5;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
    font-size: 1.8rem;
}

.plan-features li strong {
    color: #1a1545;
}

.plan-savings {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(16, 185, 129, 0.05));
    border-radius: 1rem;
}

.save-tag {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #22c55e;
}

.vs-text {
    font-size: 1.4rem;
    color: #6b7280;
}

.plan-note {
    text-align: center;
    font-size: 1.4rem;
    color: #6b7280;
    margin-top: 1.5rem;
}

/* Alternative CTA */
.alternative-cta {
    margin: 6rem 0;
}

.divider-text {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.divider-text span {
    background: linear-gradient(180deg, #f8f6ff 0%, #fff 50%, #f8f6ff 100%);
    padding: 0 2rem;
    font-size: 1.8rem;
    color: #6b7280;
    position: relative;
}

.divider-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
    z-index: -1;
}

.consultation-option {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 2px dashed #926ecc;
    border-radius: 2rem;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.consult-content h3 {
    font-size: 2.4rem;
    color: #1a1545;
    margin-bottom: 1rem;
}

.consult-content p {
    font-size: 1.6rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Trust Section */
.final-trust-section {
    margin: 5rem 0;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.trust-item svg {
    width: 3rem;
    height: 3rem;
    fill: #926ecc;
    flex-shrink: 0;
}

.trust-item span {
    font-size: 1.6rem;
    font-weight: 600;
    color: #4b5563;
}

/* Risk-Free Banner */
.risk-free-banner {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 3rem 4rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.banner-content h4 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.8rem;
    line-height: 1.5;
    opacity: 0.95;
}

/* Contact Information */
.final-contact {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 1.5rem;
}

.final-contact h4 {
    font-size: 2.2rem;
    color: #1a1545;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: white;
    border-radius: 1rem;
    text-decoration: none;
    color: #4b5563;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: #926ecc;
}

.contact-method svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: #926ecc;
}

/* Final Urgency */
.final-urgency {
    text-align: center;
    margin-top: 4rem;
}

.urgency-text {
    font-size: 1.8rem;
    color: #1a1545;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(245, 158, 11, 0.05));
    padding: 2rem 3rem;
    border-radius: 1rem;
    display: inline-block;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.urgency-text .highlight {
    color: #ef4444;
    font-weight: 700;
}

/* Button Styles */
.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-glow:hover::before {
    width: 400px;
    height: 400px;
}

/* Free Consultation Button */
.free-consult {
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .urgency-content {
        justify-content: center;
        text-align: center;
    }
    
    .consultation-option {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 6rem 0;
    }
    
    .urgency-banner {
        padding: 1.5rem;
    }
    
    .timer-display {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-unit {
        min-width: 7rem;
        padding: 1rem;
    }
    
    .time-value {
        font-size: 2.4rem;
    }
    
    .spots-text {
        font-size: 1.6rem;
    }
    
    .spots-count {
        font-size: 2.2rem;
    }
    
    .final-plans-grid {
        grid-template-columns: 1fr;
    }
    
    .final-plan-card.featured {
        transform: scale(1);
    }
    
    .price {
        font-size: 4.5rem;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-options {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2.8rem;
    }
    
    .timer-display {
        gap: 0.5rem;
    }
    
    .separator {
        display: none;
    }
    
    .final-plan-card {
        padding: 2.5rem;
    }
    
    .risk-free-banner {
        padding: 2rem;
    }
    
    .banner-content h4 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1.6rem;
    }
    
    .urgency-text {
        font-size: 1.6rem;
        padding: 1.5rem 2rem;
    }
}