/* ============================================
   CSS Variables & Reset - Retro Edition
   ============================================ */

:root {
    /* Retro Gold Color Palette - 1970s Classic */
    --vintage-black: #1a0f0a;
    --sepia-dark: #2d2414;
    --gold-primary: #d4af37;
    --gold-dark: #b8860b;
    --gold-light: #f4d03f;
    --gold-bright: #ffd700;
    --gold-aged: #c9a961;
    --cream: #f5e6d3;
    --brown: #8b6f47;
    --tan: #d4b896;
    --ivory: #fffff0;
    
    /* Neutral Colors */
    --dark: #2a1f15;
    --dark-gray: #3d2f22;
    --gray: #8b7355;
    --light-gray: #d4c4b0;
    --white: #faf5f0;
    
    /* Typography */
    --font-primary: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-heading: 'Playfair Display', 'Cinzel', serif;
    --font-accent: 'Special Elite', monospace;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--cream);
    background-color: var(--vintage-black);
    overflow-x: hidden;
    position: relative;
}

/* TV Scan Lines Effect */
.tv-scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: overlay;
}

.tv-flicker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 9999;
    animation: flicker 0.15s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.98; }
}

/* Film Grain */
.film-grain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.vintage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(139, 69, 19, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cream);
    letter-spacing: 2px;
}

h1 { font-size: clamp(2.5rem, 7vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); }

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.accent-text {
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(244, 208, 63, 0.5);
}

/* ============================================
   Preloader - Retro Style
   ============================================ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--vintage-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.retro-loader {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.retro-logo {
    position: relative;
    width: 120px;
    height: 120px;
    animation: logoFloat 3s ease-in-out infinite;
}

.retro-crown {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 50px;
}

.crown-top {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 30px solid var(--gold-primary);
    position: relative;
    animation: crownGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
}

.crown-base {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: var(--gold-primary);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.retro-wreath {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

.wreath-left,
.wreath-right {
    position: absolute;
    width: 50px;
    height: 80px;
    border: 4px solid var(--gold-primary);
    border-radius: 50% 0 50% 0;
    animation: wreathPulse 2.5s ease-in-out infinite;
}

.wreath-left {
    left: 0;
    border-right: none;
}

.wreath-right {
    right: 0;
    border-left: none;
}

.retro-wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    animation: wheelRotate 4s linear infinite;
}

.wheel-outer {
    width: 80px;
    height: 80px;
    border: 4px solid var(--gold-primary);
    border-radius: 50%;
    position: relative;
}

.wheel-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid var(--gold-light);
    border-radius: 50%;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gold-primary);
    border-radius: 50%;
}

.preloader-text {
    display: flex;
    gap: 4px;
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--gold-light);
}

.text-letter {
    display: inline-block;
    color: var(--gold-light);
    animation: letterWave 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.6);
}

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

.loading-bar {
    width: 300px;
    height: 6px;
    background: rgba(139, 69, 19, 0.3);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--brown);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    background-size: 200% 100%;
    border-radius: 3px;
    width: 0%;
    animation: progressFill 2s ease-in-out infinite, shimmer 2s linear infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

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

@keyframes crownGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8)); }
    50% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 1)); }
}

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

@keyframes wheelRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes letterWave {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-8px); opacity: 0.8; }
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

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

/* ============================================
   Hero Section - Retro
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
    border-bottom: 3px solid var(--brown);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--vintage-black) 0%, var(--sepia-dark) 50%, var(--vintage-black) 100%);
}

.music-notes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.note {
    position: absolute;
    font-size: 3rem;
    color: var(--gold-primary);
    opacity: 0.2;
    animation: floatNote 15s infinite ease-in-out;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

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

@keyframes floatNote {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.2; }
    50% { transform: translate(30px, -50px) rotate(90deg); opacity: 0.3; }
}

.retro-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.steering-wheel {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 120px;
    height: 120px;
    border: 4px solid var(--gold-primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: rotateWheel 20s linear infinite;
}

.steering-wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 3px solid var(--gold-light);
    border-radius: 50%;
}

.steering-wheel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gold-primary);
    border-radius: 50%;
}

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

.vinyl-record {
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--vintage-black) 0%, var(--vintage-black) 30%, var(--dark) 30%, var(--dark) 100%);
    border: 3px solid var(--gold-primary);
    opacity: 0.15;
    animation: spinRecord 8s linear infinite;
}

.vinyl-record::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gold-primary);
    border-radius: 50%;
}

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

.hero-content {
    max-width: 1200px;
    width: 100%;
    padding: var(--spacing-md);
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-md);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.hero-title {
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.title-line {
    display: inline-block;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation: slideInFromLeft 1s ease-out 0.3s forwards;
}

.title-line:nth-child(2) {
    animation: slideInFromLeft 1s ease-out 0.6s forwards;
}

.title-line:nth-child(3) {
    /* Typewriter effect will handle this */
    opacity: 1;
    transform: translateX(0);
}

/* Typewriter Effect */
.typewriter-text {
    position: relative;
    display: inline-block;
    opacity: 1 !important;
    transform: translateX(0) !important;
    min-width: 0.5em; /* Ensure space for cursor */
}

.typewriter-text::after {
    content: '|';
    position: absolute;
    right: -8px;
    color: var(--gold-light);
    animation: blinkCursor 1s infinite;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.8);
}

.typewriter-text.typing-complete::after {
    animation: blinkCursor 1s infinite;
    opacity: 1;
}

@keyframes blinkCursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--tan);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 3px solid var(--gold-primary);
    border-bottom: 3px solid var(--gold-primary);
    transform: rotate(45deg);
}

/* ============================================
   Buttons - Retro Style
   ============================================ */

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--ivory);
    border-color: var(--gold-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    border-color: var(--gold-light);
}

.btn-primary:hover::before {
    left: 100%;
}

.pricing-card .btn {
    position: relative;
    z-index: 10;
    margin-top: var(--spacing-md);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover .btn {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: var(--tan);
    position: relative;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-primary);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-outline span {
    position: relative;
    z-index: 1;
}

.btn-outline:hover {
    border-color: var(--gold-primary);
    color: var(--ivory);
    transform: translateY(-3px);
}

.btn-outline:hover::before {
    left: 0;
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.1rem;
}

/* ============================================
   Section Styles
   ============================================ */

section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-label {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-accent);
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--tan);
    font-style: italic;
}

/* ============================================
   About Section
   ============================================ */

.about {
    background: var(--sepia-dark);
    position: relative;
    border-top: 2px solid var(--brown);
    border-bottom: 2px solid var(--brown);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--brown);
    align-self: start;
    height: calc(100vh - 200px);
    max-height: 800px;
}

.cadillac-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform 0.1s ease-out;
    filter: sepia(20%) contrast(1.1);
    will-change: transform;
    transform-origin: top center;
    object-fit: cover;
    object-position: top;
    position: relative;
}

.about-image:hover .cadillac-image {
    transform: scale(1.05);
    filter: sepia(10%) contrast(1.2);
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-image {
        order: -1;
        position: relative !important;
        top: auto !important;
        height: auto !important;
        max-height: none !important;
    }
    
    .cadillac-image {
        transform: none !important;
        height: auto !important;
    }
}

.lead-text {
    font-size: 1.3rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.3);
}

.about p {
    color: var(--tan);
    margin-bottom: var(--spacing-md);
    line-height: 1.9;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    background: rgba(139, 69, 19, 0.1);
    border-radius: var(--radius-md);
    border: 2px solid var(--brown);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--cream);
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--tan);
    margin: 0;
    font-size: 1rem;
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing {
    background: var(--vintage-black);
    position: relative;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Left Visual Panel */
.pricing-visual-panel {
    position: fixed;
    left: -400px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    background: rgba(45, 31, 20, 0.95);
    border: 3px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    box-shadow: 
        10px 0 40px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(212, 175, 55, 0.4);
    z-index: 999;
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                opacity 0.3s ease,
                transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.pricing-visual-panel.active {
    left: 20px;
    opacity: 1;
    pointer-events: all;
    transform: translateY(-50%);
}

.pricing-visual-panel.sliding-out {
    left: -400px;
    opacity: 0;
    transform: translateY(-50%) scale(0.95);
}

.pricing-visual-panel.sliding-in {
    animation: slideInLeftPanel 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes slideInLeftPanel {
    0% {
        left: -400px;
        opacity: 0;
        transform: translateY(-50%) scale(0.95);
    }
    100% {
        left: 20px;
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

.visual-panel-content {
    padding: var(--spacing-lg);
    text-align: center;
}

.tier-visual-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    border: 4px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.4),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.tier-visual-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation: rotateGlow 3s linear infinite;
}

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

.tier-visual-icon.vip::after { content: '🎵'; }
.tier-visual-icon.silver::after { content: '🎤'; }
.tier-visual-icon.platinum::after { content: '💎'; }
.tier-visual-icon.diamond::after { content: '👑'; }

.tier-stats {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.tier-stats-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    color: var(--tan);
    font-size: 0.9rem;
}

.tier-stats-item strong {
    color: var(--gold-light);
    font-family: var(--font-accent);
}

.tier-highlight {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-left: 4px solid var(--gold-primary);
    border-radius: var(--radius-md);
    color: var(--cream);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Detail Panel */
.pricing-detail-panel {
    position: fixed;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    background: rgba(45, 31, 20, 0.98);
    border: 3px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    box-shadow: 
        -10px 0 40px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(212, 175, 55, 0.4);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                opacity 0.3s ease,
                transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.pricing-detail-panel.active {
    right: 20px;
    opacity: 1;
    pointer-events: all;
    transform: translateY(-50%);
}

.pricing-detail-panel.sliding-out {
    right: -400px;
    opacity: 0;
    transform: translateY(-50%) scale(0.95);
}

.pricing-detail-panel.sliding-in {
    animation: slideInPanel 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes slideInPanel {
    0% {
        right: -400px;
        opacity: 0;
        transform: translateY(-50%) scale(0.95);
    }
    100% {
        right: 20px;
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

.detail-panel-content {
    padding: var(--spacing-lg);
    position: relative;
}

.detail-panel-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.detail-panel-close:hover {
    background: var(--gold-primary);
    color: var(--vintage-black);
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.detail-tier-name {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.detail-description {
    color: var(--cream);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.detail-benefits {
    color: var(--tan);
}

.detail-benefits h4 {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-accent);
}

.detail-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-benefits li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--tan);
    line-height: 1.6;
}

.detail-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Vertical timeline line */
.pricing-grid::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, 
        var(--gold-primary) 0%, 
        var(--gold-primary) 20%,
        var(--brown) 20%,
        var(--brown) 40%,
        var(--gold-primary) 40%,
        var(--gold-primary) 60%,
        var(--brown) 60%,
        var(--brown) 80%,
        var(--gold-light) 80%,
        var(--gold-light) 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    z-index: 0;
}

.pricing-card.exclusive {
    max-width: 100%;
    border-left-width: 10px;
    border-left-color: var(--gold-light);
    border-color: var(--gold-light);
    background: rgba(244, 208, 63, 0.2);
    box-shadow: 
        0 0 40px rgba(244, 208, 63, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.pricing-card.exclusive::before {
    background: var(--gold-light);
    width: 32px;
    height: 32px;
    box-shadow: 
        0 0 0 4px var(--brown),
        0 0 25px rgba(244, 208, 63, 1);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 0 0 4px var(--brown),
            0 0 25px rgba(244, 208, 63, 1);
    }
    50% {
        box-shadow: 
            0 0 0 6px var(--brown),
            0 0 35px rgba(244, 208, 63, 1.2);
    }
}

.pricing-card {
    background: rgba(45, 31, 20, 0.8);
    border: 3px solid var(--brown);
    border-left: 6px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: visible;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: cardFadeIn 0.6s ease-out forwards;
    margin-left: 60px;
}

/* Timeline marker */
.pricing-card::before {
    content: '';
    position: absolute;
    left: -75px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--gold-primary);
    border: 4px solid var(--vintage-black);
    border-radius: 50%;
    box-shadow: 
        0 0 0 3px var(--brown),
        0 0 15px rgba(212, 175, 55, 0.6);
    z-index: 2;
    transition: all 0.4s ease;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    
    transition: left 0.6s ease;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateX(10px) translateY(-5px);
    border-left-color: var(--gold-light);
    border-color: var(--gold-primary);
    box-shadow: 
        0 12px 40px rgba(212, 175, 55, 0.5),
        0 0 60px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(45, 31, 20, 0.95);
}

.pricing-card:hover::before {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 
        0 0 0 4px var(--brown),
        0 0 25px rgba(212, 175, 55, 0.9);
}

.pricing-card:hover::after {
    left: 100%;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pricing-card.featured {
    border-color: var(--gold-primary);
    border-width: 4px;
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.4),
        0 0 60px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: featuredPulse 3s ease-in-out infinite, cardFadeIn 0.6s ease-out forwards;
}

.pricing-card.featured:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 
        0 15px 50px rgba(212, 175, 55, 0.6),
        0 0 80px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.pricing-card.featured:hover::before {
    transform: translateY(-50%) scale(1.25);
    box-shadow: 
        0 0 0 5px var(--brown),
        0 0 30px rgba(244, 208, 63, 1);
}

@keyframes featuredPulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(212, 175, 55, 0.4),
            0 0 60px rgba(212, 175, 55, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(212, 175, 55, 0.6),
            0 0 80px rgba(212, 175, 55, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
}

.pricing-card.exclusive {
    max-width: 100%;
    border-left-width: 10px;
    border-left-color: var(--gold-light);
    border-color: var(--gold-light);
    background: rgba(244, 208, 63, 0.2);
    box-shadow: 
        0 0 40px rgba(244, 208, 63, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    animation: exclusiveGlow 4s ease-in-out infinite, cardFadeIn 0.6s ease-out forwards;
}

.pricing-card.exclusive::before {
    background: var(--gold-light);
    width: 32px;
    height: 32px;
    box-shadow: 
        0 0 0 4px var(--brown),
        0 0 25px rgba(244, 208, 63, 1);
    animation: pulseGlow 2s ease-in-out infinite;
}

.pricing-card.exclusive:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 
        0 15px 50px rgba(244, 208, 63, 0.6),
        0 0 90px rgba(244, 208, 63, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.pricing-card.exclusive:hover::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 
        0 0 0 6px var(--brown),
        0 0 35px rgba(244, 208, 63, 1.3);
}

/* Ripple effect for pricing cards */
.pricing-card .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes rippleEffect {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

.pricing-card.exclusive:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 15px 50px rgba(244, 208, 63, 0.6),
        0 0 90px rgba(244, 208, 63, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

@keyframes exclusiveGlow {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(244, 208, 63, 0.4),
            0 0 70px rgba(244, 208, 63, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(244, 208, 63, 0.6),
            0 0 90px rgba(244, 208, 63, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
}

.pricing-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    background: rgba(139, 69, 19, 0.3);
    color: var(--tan);
    border: 1px solid var(--brown);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pricing-card:hover .pricing-badge::before {
    left: 100%;
}

.pricing-badge.popular {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--ivory);
    border-color: var(--gold-primary);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
    animation: badgeShine 2s ease-in-out infinite;
}

.pricing-card:hover .pricing-badge.popular {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

.pricing-badge.exclusive {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    color: var(--vintage-black);
    border-color: var(--gold-light);
    box-shadow: 0 2px 10px rgba(244, 208, 63, 0.4);
    animation: badgeShine 2s ease-in-out infinite;
}

.pricing-card:hover .pricing-badge.exclusive {
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.6);
    transform: scale(1.05);
}

@keyframes badgeShine {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 2px 15px rgba(212, 175, 55, 0.6);
    }
}

.pricing-tier {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--cream);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: inline-block;
}

.pricing-card:hover .pricing-tier {
    color: var(--gold-light);
    text-shadow: 
        0 0 10px rgba(244, 208, 63, 0.5),
        0 0 20px rgba(244, 208, 63, 0.3);
    transform: scale(1.05);
    letter-spacing: 4px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding: var(--spacing-sm) 0;
}

.currency {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-right: 6px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.pricing-card:hover .currency {
    color: var(--gold-light);
    transform: scale(1.2) translateY(-2px);
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.6);
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--cream);
    font-family: var(--font-heading);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--tan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card:hover .amount {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
    text-shadow: none;
    filter: drop-shadow(0 0 15px rgba(244, 208, 63, 0.6));
}

.includes-note {
    font-size: 0.85rem;
    color: var(--tan);
    margin-bottom: var(--spacing-sm);
    font-style: italic;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold-primary);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover .includes-note {
    color: var(--cream);
    background: rgba(212, 175, 55, 0.2);
    border-left-color: var(--gold-light);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.pricing-features li {
    padding: var(--spacing-xs) 0;
    color: var(--tan);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: var(--spacing-md);
    opacity: 0;
    transform: translateX(-10px);
    animation: featureSlideIn 0.5s ease-out forwards;
}

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

@keyframes featureSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 900;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.pricing-card:hover .pricing-features li {
    color: var(--cream);
    transform: translateX(5px);
    padding-left: calc(var(--spacing-md) + 5px);
}

.pricing-card:hover .pricing-features li::before {
    color: var(--gold-light);
    transform: scale(1.2);
    text-shadow: 0 0 8px rgba(244, 208, 63, 0.8);
    filter: drop-shadow(0 0 5px rgba(244, 208, 63, 0.6));
}

.feature-note {
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--vintage-black) 0%, var(--sepia-dark) 50%, var(--vintage-black) 100%);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    position: relative;
    border-top: 2px solid var(--brown);
}

.cta-content h2 {
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

.cta-content p {
    color: var(--tan);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--vintage-black);
    border-top: 3px solid var(--brown);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    color: var(--cream);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.footer-section h4 {
    font-size: 1rem;
}

.footer-section p {
    color: var(--tan);
    line-height: 1.7;
    margin-bottom: var(--spacing-xs);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--tan);
    transition: var(--transition-base);
}

.footer-section ul li a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 8px rgba(244, 208, 63, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--brown);
}

.footer-bottom p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   Confirmation Page
   ============================================ */

.confirmation-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
    border-bottom: 3px solid var(--brown);
}

.confirmation-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--vintage-black) 0%, var(--sepia-dark) 50%, var(--vintage-black) 100%);
}

.confirmation-content {
    max-width: 800px;
    width: 100%;
    padding: var(--spacing-md);
    text-align: center;
    z-index: 2;
    position: relative;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-lg);
    animation: scaleIn 0.6s ease;
}

.success-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.confirmation-title {
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.confirmation-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--tan);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
    font-style: italic;
}

.membership-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(212, 175, 55, 0.2);
    border: 3px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.badge-label {
    font-size: 0.75rem;
    color: var(--tan);
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge-tier {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-light);
    font-family: var(--font-heading);
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(244, 208, 63, 0.6);
}

.next-steps {
    background: var(--sepia-dark);
    border-top: 2px solid var(--brown);
    border-bottom: 2px solid var(--brown);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.step-card {
    background: rgba(139, 69, 19, 0.1);
    border: 2px solid var(--brown);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    opacity: 0.4;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.step-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--cream);
}

.step-card p {
    color: var(--tan);
    line-height: 1.7;
}

.membership-benefits {
    background: var(--vintage-black);
}

.benefits-list {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    padding: var(--spacing-md);
    background: rgba(139, 69, 19, 0.1);
    border-left: 4px solid var(--gold-primary);
    border-radius: var(--radius-md);
    border: 2px solid var(--brown);
    border-left-width: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.benefit-item h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--cream);
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--tan);
    margin: 0;
    font-size: 0.95rem;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   Animations
   ============================================ */

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

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
    .pricing-grid {
        max-width: 100%;
    }
    
    .pricing-card {
        margin-left: 50px;
    }
    
    .pricing-grid::before {
        left: 20px;
    }
    
    .pricing-card::before {
        left: -60px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-2xl: 4rem;
    }

    section {
        padding: var(--spacing-xl) 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Disable sticky image on tablet */
    .about-image {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        max-height: none !important;
    }
    
    .cadillac-image {
        transform: none !important;
        height: auto !important;
    }
    
    /* Hide visual panel on tablets - show only detail panel */
    .pricing-visual-panel {
        display: none;
    }
    
    .pricing-detail-panel {
        width: calc(100% - 40px);
        max-width: 500px;
    }
    
    /* Disable hover panels on touch devices - use click instead */
    .pricing-card {
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
    }
    
    /* Disable sticky image on mobile */
    .about-image {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        max-height: none !important;
    }
    
    .cadillac-image {
        transform: none !important;
        height: auto !important;
    }

    .pricing-card {
        padding: var(--spacing-md);
        margin-left: 40px;
    }
    
    .pricing-grid::before {
        left: 15px;
    }
    
    .pricing-card::before {
        left: -55px;
        width: 20px;
        height: 20px;
    }
    
    /* Mobile-optimized detail panel */
    .pricing-detail-panel {
        width: calc(100% - 20px);
        right: -100%;
        max-width: none;
        top: auto;
        bottom: 20px;
        transform: none;
        max-height: 70vh;
        overflow-y: auto;
        position: fixed;
    }
    
    .pricing-detail-panel.active {
        right: 10px;
        transform: none;
    }
    
    .pricing-detail-panel.sliding-out {
        right: -100%;
        transform: none;
    }
    
    @keyframes slideInPanel {
        0% {
            right: -100%;
            opacity: 0;
            transform: none;
        }
        100% {
            right: 10px;
            opacity: 1;
            transform: none;
        }
    }
    
    .pricing-visual-panel {
        display: none;
    }
    
    .detail-panel-content {
        padding: var(--spacing-md);
    }
    
    .detail-tier-name {
        font-size: 1.5rem;
    }
    
    .detail-description {
        font-size: 0.9rem;
    }
    
    .detail-benefits li {
        font-size: 0.85rem;
        padding: var(--spacing-xs) 0;
    }
    
    .tier-visual-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .tier-stats {
        padding: var(--spacing-sm);
    }
    
    .tier-stats-item {
        font-size: 0.8rem;
    }
    
    .tier-highlight {
        font-size: 0.85rem;
        padding: var(--spacing-sm);
    }
}

/* ============================================
   Accessibility
   ============================================ */

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

:focus-visible {
    outline: 3px solid var(--gold-primary);
    outline-offset: 2px;
}

