/* ===================================
   AskMichaelPaul.com - Main Stylesheet
   Mystical Psychic Medium Website
   =================================== */

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - High Conversion Theme */
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-red: #ff3366;
    --accent-red-dark: #cc0033;
    --accent-purple: #7c3aed;
    --accent-purple-dark: #5b21b6;
    --accent-pink: #ec4899;
    --accent-pink-dark: #be185d;
    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;
    --gold: #fbbf24;
    --success-green: #10b981;
    --urgent-orange: #f97316;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f3f4f6;
    --gray: #e5e7eb;
    --text-dark: #111827;
    --text-medium: #374151;
    --text-light: #6b7280;
    --bg-light: #fafafa;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 20px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--accent-red);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(90deg, var(--white), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    padding: 10px 25px;
    border-radius: 25px;
    color: var(--white);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* === HERO SECTION === */
.hero-animated {
    position: relative;
    background: #000000;
    padding: 150px 20px 100px;
    overflow: hidden;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Video Overlay for better text readability */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 20;
}

.hero-icon-wrapper {
    display: inline-block;
    margin-bottom: 30px;
}

.hero-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid var(--gold);
    box-shadow: 
        0 0 30px rgba(251, 191, 36, 0.6),
        0 0 60px rgba(251, 191, 36, 0.4),
        0 0 90px rgba(251, 191, 36, 0.2);
    animation: float 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
    object-fit: cover;
}

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

@keyframes pulse {
    0%, 100% { 
        box-shadow: 
            0 0 30px rgba(251, 191, 36, 0.6),
            0 0 60px rgba(251, 191, 36, 0.4),
            0 0 90px rgba(251, 191, 36, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 50px rgba(251, 191, 36, 0.8),
            0 0 80px rgba(251, 191, 36, 0.6),
            0 0 120px rgba(251, 191, 36, 0.3);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
    color: var(--white);
    text-shadow: 
        2px 2px 8px rgba(0,0,0,0.8),
        0 0 20px rgba(0,0,0,0.6);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: #e8e8e8;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    text-shadow: 
        1px 1px 6px rgba(0,0,0,0.8),
        0 0 15px rgba(0,0,0,0.5);
}

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

.hero-cta {
    display: inline-block;
    background: var(--accent-red);
    color: var(--white);
    padding: 22px 55px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(255, 51, 102, 0.5);
    transition: all var(--transition-fast);
    animation: fadeInUp 1s ease-out 0.4s backwards;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 3px solid var(--accent-red-dark);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left var(--transition-medium);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 51, 102, 0.6);
}

.hero-value-prop {
    max-width: 700px;
    margin: 30px auto 40px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--white);
    margin: 0;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.hero-cta-subtext {
    margin-top: 15px;
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.value-stack-header {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold);
    text-align: center;
    margin: 20px 0 15px;
    text-transform: uppercase;
}

.policy-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    text-align: center;
    font-weight: 400;
    font-style: italic;
}

.session-value {
    font-size: 15px;
    color: var(--gold);
    font-weight: 700;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cancellation-notice {
    font-size: 10px;
    color: var(--text-light);
    margin-top: 10px;
    text-align: center;
    font-style: italic;
    opacity: 0.6;
    line-height: 1.4;
}

.session-popular .cancellation-notice {
    color: rgba(255, 255, 255, 0.6);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 13px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* Floating Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatParticle 20s infinite;
    pointer-events: none;
    z-index: 15;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translate(100vw, -100vh) rotate(360deg);
        opacity: 0;
    }
}

.particle:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 60px; height: 60px; left: 30%; animation-delay: 4s; }
.particle:nth-child(3) { width: 100px; height: 100px; left: 50%; animation-delay: 8s; }
.particle:nth-child(4) { width: 70px; height: 70px; left: 70%; animation-delay: 12s; }
.particle:nth-child(5) { width: 90px; height: 90px; left: 85%; animation-delay: 16s; }

/* === HOW IT WORKS SECTION === */
.how-it-works {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-purple));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 22px;
    color: var(--text-medium);
    font-style: italic;
}

.steps-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-dark), var(--accent-pink), var(--accent-purple));
    background-size: 400% 400%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.step-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.4s ease;
    position: relative;
}

.step-card:hover .step-number {
    transform: rotate(360deg) scale(1.1);
}

.step-number::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 24px;
    animation: sparkle 1.5s ease-in-out infinite;
}

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

.step-card[data-step="2"] .step-number {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-pink-dark) 100%);
}

.step-card[data-step="3"] .step-number {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
}

.step-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    transition: color var(--transition-fast);
}

.step-card:hover .step-title {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-description {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    transition: color var(--transition-fast);
}

.step-card:hover .step-description {
    color: var(--text-dark);
}

.step-icon {
    font-size: 48px;
    margin-top: 20px;
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.step-card:hover .step-icon {
    opacity: 1;
    transform: scale(1.2);
}

/* === VIDEO SECTION === */
.video-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--gray) 100%);
    position: relative;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    background: #000;
}

.video-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--accent-red), var(--accent-purple), var(--accent-blue), var(--accent-pink));
    background-size: 400% 400%;
    border-radius: 20px;
    z-index: -1;
    animation: videoGlow 4s ease infinite;
    opacity: 0.7;
}

@keyframes videoGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.video-badge {
    position: absolute;
    top: -20px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    z-index: 10;
    animation: bounce 2s infinite;
}

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

/* === VIP SECTION === */
.vip-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.vip-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vip-card-wrapper {
    max-width: 550px;
    margin: 50px auto;
    position: relative;
    z-index: 1;
}

.vip-card {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-dark) 100%);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.5);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast);
    border: 4px solid var(--accent-purple-dark);
}

.vip-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.6);
}

.vip-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: shimmer 5s ease infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30%, -30%); }
}

.vip-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    animation: fadeInDown 1s ease;
}

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

.vip-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.vip-price {
    margin: 30px 0;
}

.price-amount {
    font-size: 56px;
    font-weight: 700;
}

.price-period {
    font-size: 22px;
    opacity: 0.9;
}

.vip-note {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.benefits-list {
    text-align: left;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    opacity: 0;
    animation: slideInLeft 0.5s ease forwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }
.benefit-item:nth-child(5) { animation-delay: 0.5s; }
.benefit-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-icon {
    font-size: 22px;
    margin-right: 12px;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 16px;
    line-height: 1.5;
}

.benefit-text strong {
    font-weight: 700;
}

.vip-cta {
    display: block;
    background: var(--white);
    color: var(--accent-purple);
    padding: 20px 45px;
    font-size: 17px;
    font-weight: 900;
    border-radius: 8px;
    margin-top: 30px;
    transition: all var(--transition-fast);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 3px solid var(--accent-purple-dark);
}

.vip-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.vip-cta:hover::before {
    width: 300px;
    height: 300px;
}

.vip-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

/* === SESSIONS SECTION - 3D FLIP CARDS === */
.sessions-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.sessions-grid {
    max-width: 1100px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.session-card-3d {
    perspective: 1000px;
    height: 650px;
}

.session-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform var(--transition-slow);
    transform-style: preserve-3d;
}

.session-card-3d:hover .session-card-inner {
    transform: rotateY(180deg);
}

.session-front,
.session-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    padding: 45px 35px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.session-front {
    background: var(--white);
    border: 3px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.session-back {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-dark) 100%);
    color: var(--white);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.session-popular {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
    color: var(--white);
    border: none;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.4);
}

.session-header {
    text-align: center;
}

.session-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--urgent-orange);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.6);
    animation: wiggle 1s ease infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #ea580c;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.session-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.session-price {
    font-size: 52px;
    font-weight: 700;
    color: var(--accent-red);
    margin: 20px 0;
}

.session-popular .session-price {
    color: var(--white);
}

.session-desc {
    font-size: 17px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.session-features {
    margin: 25px 0;
    padding: 25px 0;
    border-top: 2px solid rgba(224, 224, 224, 0.5);
    border-bottom: 2px solid rgba(224, 224, 224, 0.5);
}

/* Session Description Styling */
.session-description {
    margin: 25px 0;
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 4px solid var(--accent-red);
}

.session-popular .session-description {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--gold);
}

.session-description .desc-text {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
}

.session-description .desc-text:last-child {
    margin-bottom: 0;
}

.session-description .desc-text strong {
    color: var(--accent-red);
    font-weight: 700;
}

.session-popular .session-description .desc-text strong {
    color: var(--gold);
}

.session-popular .session-features {
    border-color: rgba(255,255,255,0.3);
}

.feature {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.feature::before {
    content: '✓';
    margin-right: 10px;
    color: var(--accent-red);
    font-weight: 700;
    font-size: 18px;
}

.session-popular .feature::before {
    color: var(--gold);
}

.session-cta {
    display: block;
    background: var(--accent-red);
    color: var(--white);
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: all var(--transition-fast);
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 3px solid var(--accent-red-dark);
}

.session-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
}

.session-popular .session-cta {
    background: var(--white);
    color: var(--accent-red);
}

.session-note {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--urgent-orange);
}

.flip-hint {
    font-size: 48px;
    margin-bottom: 20px;
    animation: rotateIcon 2s linear infinite;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.back-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.back-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--white);
    overflow: hidden;
}

.testimonials-track {
    overflow: hidden;
    margin-top: 50px;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.testimonials-slider:hover {
    animation-play-state: paused;
}

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

.testimonial-card {
    min-width: 400px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--accent-red);
}

.stars {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
}

.star {
    display: inline-block;
    animation: starPop 0.5s ease;
}

.star:nth-child(1) { animation-delay: 0.1s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.3s; }
.star:nth-child(4) { animation-delay: 0.4s; }
.star:nth-child(5) { animation-delay: 0.5s; }

@keyframes starPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.testimonial-text {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 60px;
    color: var(--accent-red);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 700;
}

/* === ABOUT SECTION === */
.about-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
}

.about-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    margin: 0 auto;
}

.about-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.overlay-stat {
    text-align: center;
}

.overlay-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-red);
}

.overlay-label {
    font-size: 12px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding: 20px 0;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-subtitle {
    font-size: 22px;
    color: var(--accent-red);
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 20px;
}

.about-highlights {
    margin: 35px 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.highlight-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.highlight-text strong {
    font-size: 18px;
    color: var(--white);
}

.highlight-text span {
    font-size: 14px;
    color: #ccc;
}

.about-cta {
    display: inline-block;
    background: var(--accent-red);
    color: var(--white);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--transition-fast);
    margin-top: 20px;
}

.about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
}

/* === URGENCY BAR === */
.urgency-bar {
    background: linear-gradient(135deg, var(--urgent-orange), #dc2626);
    padding: 20px;
    text-align: center;
    border-top: 4px solid #991b1b;
    border-bottom: 4px solid #991b1b;
}

.urgency-text {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.urgency-text strong {
    font-weight: 900;
    text-transform: uppercase;
}

/* === FORM SECTION === */
.form-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-wrapper {
    margin-top: 50px;
}

.ghl-embed-note {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    border: 3px dashed var(--accent-red);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.embed-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.ghl-embed-note h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.ghl-embed-note p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.embed-instructions {
    text-align: left;
    max-width: 500px;
    margin: 20px auto;
    padding-left: 20px;
}

.embed-instructions li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.embed-tip {
    font-weight: 600;
    color: var(--accent-red);
}

/* Placeholder Form Styles */
.question-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-text {
    font-size: 15px;
    color: var(--text-medium);
}

.form-submit {
    width: 100%;
    background: var(--accent-red);
    color: var(--white);
    padding: 22px;
    font-size: 18px;
    font-weight: 900;
    border: 3px solid var(--accent-red-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-top: 20px;
    line-height: 1.6;
}

/* === FOOTER === */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-red);
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 22px;
}

.footer-tagline {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-red);
    transform: translateY(-5px);
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #ccc;
}

.footer-contact svg {
    fill: var(--accent-red);
    flex-shrink: 0;
}

.footer-contact a {
    color: #ccc;
}

.footer-contact a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #888;
}

.footer-copyright {
    margin-bottom: 15px;
}

.footer-copyright p {
    margin: 5px 0;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.footer-copyright p:first-child {
    font-weight: 500;
}

.footer-legal {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #888;
}

.footer-legal a:hover {
    color: var(--accent-red);
}

/* === BACK TO TOP BUTTON === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.6);
}

/* === RESPONSIVE DESIGN === */

/* Tablets */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .about-title {
        font-size: 38px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 30px 20px;
        gap: 20px;
        transition: left var(--transition-fast);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-animated {
        padding: 120px 20px 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        padding: 16px 35px;
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sessions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .session-card-3d {
        height: auto;
        min-height: 600px;
    }
    
    .session-card-3d:hover .session-card-inner {
        transform: none;
    }
    
    .session-popular {
        transform: scale(1);
    }
    
    .testimonial-card {
        min-width: 300px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-image-overlay {
        position: static;
        transform: none;
        margin-top: 20px;
        justify-content: center;
    }
    
    .vip-card {
        padding: 40px 30px;
    }
    
    .vip-title {
        font-size: 32px;
    }
    
    .price-amount {
        font-size: 48px;
    }
    
    .question-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 5px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .urgency-text {
        font-size: 15px;
    }
    
    .hero-value-prop {
        padding: 15px 20px;
    }
    
    .value-text {
        font-size: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-icon {
        width: 100px;
        height: 100px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .session-card-3d {
        min-height: 550px;
    }
    
    .session-front,
    .session-back {
        padding: 30px 25px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    .particle {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-animated {
        background: white;
        color: black;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-dark: #000000;
        --text-dark: #000000;
        --white: #ffffff;
    }
    
    .nav-link::after,
    .section-title::after {
        background: currentColor;
    }
}