:root {
    --primary: #8b5cf6;
    --secondary: #ec4899;
    --accent: #f3e8ff;
    --success: #10b981;
    --warning: #f59e0b;
}

* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    scroll-behavior: smooth;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtle-gradient {
    background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
}

.trust-badge {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.primary-button {
    background: var(--primary);
    transition: all 0.3s ease;
}

.primary-button:hover {
    background: #7c3aed;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.hero-cta-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

.price-psychology {
    position: relative;
}

.price-strike {
    position: relative;
    opacity: 0.6;
}

.price-strike::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    background: #ef4444;
    transform: rotate(-5deg);
}

.urgency-blink {
    animation: urgencyBlink 1.5s infinite;
}

@keyframes urgencyBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

.price-per-day {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: bold;
    display: inline-block;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.feature-card {
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease-in-out;
    background: white;
}

.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.12);
    background: linear-gradient(to bottom right, white 0%, rgba(243, 232, 255, 0.4) 100%);
}
 .feature-card:hover .feature-icon {
    transform: scale(1.1);
}
.feature-icon {
    transition: transform 0.3s ease-in-out;
}

.stat-number {
    font-variant-numeric: tabular-nums;
}

.testimonial-card {
    background: white;
    border: 1px solid #e5e7eb; 
    border-radius: 1rem; 
    padding: 1.5rem; 
    margin-bottom: 1.5rem; 
}

@media (min-width: 640px) { 
    .testimonial-card {
        padding: 2rem; 
    }
}

.testimonial-grid > .testimonial-card {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) { 
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem; 
    }
    .testimonial-grid > .testimonial-card {
        margin-bottom: 0;
    }
    .testimonial-card.main-testimonial {
        grid-column: span 2 / span 2;
        margin-bottom: 1.5rem;
    }
}

.pricing-card-glow:hover {
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.3), 0 0 15px rgba(236, 72, 153, 0.2);
}

.pricing-cta-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transition: all 0.3s ease;
}

.pricing-cta-button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.emotional-hook {
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
    border: 2px solid #f59e0b;
    animation: gentlePulse 3s infinite;
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.value-highlight {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
}

/* Trust Thermometer Animation */
.trust-meter {
    animation: fillMeter 2s ease-out forwards;
}

@keyframes fillMeter {
    from { width: 0%; }
    to { width: 95%; }
}

/* Shield Icon Pulse */
.shield-pulse {
    animation: shieldPulse 3s infinite;
}

@keyframes shieldPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Doctor Cards */
.doctor-card {
    background: white;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}
