:root {
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --violet: #8e44ad;
    --violet-light: #e8daef;
    --zen-gray: #f8f9fa;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: var(--zen-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Utilities */
.text-gold { color: var(--gold) !important; }
.bg-gold { background-color: var(--gold) !important; }
.text-violet { color: var(--violet) !important; }

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #fdfbf7 0%, #fff 100%);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 4px solid white;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Pulse Button */
.btn-pulse {
    background-color: var(--gold);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: pulse-gold 2s infinite;
    transition: transform 0.3s;
}

.btn-pulse:hover {
    transform: scale(1.05);
    color: white;
    background-color: var(--gold-hover);
}

@keyframes pulse-gold {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Urgency Bar */
.urgency-bar {
    background-color: #2c3e50;
    color: white;
    padding: 15px 0;
    font-size: 0.95rem;
}

.timer-box {
    background: var(--gold);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-family: monospace;
}

/* Cards & Glassmorphism */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Instructor Section */
.instructor-img {
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--violet-light);
}

/* Accordion */
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.accordion-button:not(.collapsed) {
    background-color: var(--violet-light);
    color: var(--violet);
    font-weight: bold;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

/* Bonuses */
.bonus-card {
    border: 1px dashed var(--gold);
    background: #fffcf5;
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
    height: 100%;
}

.badge-free {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--violet);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Certification */
.cert-section {
    background-color: white;
    border-top: 5px solid var(--gold);
}

/* Pricing */
.price-table {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.price-header {
    background: var(--text-dark);
    color: white;
    padding: 2rem;
}

.price-tag {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    line-height: 1;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1.5rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    height: 100%;
    border-left: 4px solid var(--gold);
}

/* Footer */
footer {
    background: #1a252f;
    color: #bdc3c7;
    padding: 4rem 0 2rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Social Proof Notification */
#social-proof {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: all 0.5s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.social-proof-hidden {
    transform: translateY(150%);
    opacity: 0;
}

.social-proof-visible {
    transform: translateY(0);
    opacity: 1;
}

.social-proof-img {
    width: 35px;
    height: 35px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.x-small {
    font-size: 0.75rem;
}