/* ============================================
   CSS Variables & Reset
   ============================================ */

:root {
    /* Brand Colors - Gold Gradient Theme */
    --midnight-black: #0a0a0a;
    --cadillac-chrome: #c0c0c0;
    --gold-primary: #d4af37;
    --gold-secondary: #f4d03f;
    --gold-dark: #b8941f;
    --gold-light: #f9e79f;
    --warm-amber: #d4af37;
    --street-lights: #f4d03f;
    
    /* Neutral Colors */
    --dark: #1a1a1a;
    --dark-gray: #2d2d2d;
    --gray: #666666;
    --light-gray: #e5e5e5;
    --white: #ffffff;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Bebas Neue', 'Oswald', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px 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: 16px;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--midnight-black);
    overflow-x: hidden;
}

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

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

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

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

.accent-text {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Preloader
   ============================================ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--midnight-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    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;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.car-mic-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.classic-car {
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 60px;
    animation: carZoom 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.car-body {
    position: absolute;
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    border-radius: 8px 8px 4px 4px;
    top: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.car-body::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 15%;
    width: 70%;
    height: 25px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    border-radius: 12px 12px 4px 4px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.car-window {
    position: absolute;
    top: 12px;
    left: 20%;
    width: 60%;
    height: 18px;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 8px 8px 2px 2px;
    border: 2px solid var(--gold-primary);
}

.car-wheel {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--midnight-black);
    border: 3px solid var(--gold-primary);
    border-radius: 50%;
    bottom: -5px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.wheel-front {
    left: 15px;
}

.wheel-back {
    right: 15px;
}

.car-grille {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 25px;
    height: 30px;
    background: linear-gradient(90deg, var(--gold-primary) 0%, transparent 100%);
    border-radius: 4px 0 0 4px;
}

.car-grille::before,
.car-grille::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--gold-secondary);
    left: 8px;
}

.car-grille::after {
    left: 16px;
}

.car-headlight {
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, var(--gold-light) 0%, var(--gold-primary) 100%);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(249, 231, 159, 0.8);
}

.microphone {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 80px;
    animation: micZoom 2s ease-in-out infinite;
    animation-delay: 0.3s;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.mic-body {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    border-radius: 8px 8px 4px 4px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.mic-grille {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border: 3px solid var(--midnight-black);
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(10, 10, 10, 0.9) 0%, transparent 50%),
        repeating-conic-gradient(from 0deg, var(--midnight-black) 0deg 10deg, transparent 10deg 20deg);
}

.mic-grille::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--midnight-black);
    border-radius: 50%;
}

.mic-stand {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 30px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

@keyframes carZoom {
    0% {
        left: -200px;
        transform: translateY(-50%) scale(0.8);
        opacity: 0.7;
    }
    50% {
        left: calc(50% - 60px);
        transform: translateY(-50%) scale(1.2);
        opacity: 1;
    }
    100% {
        left: calc(100% + 200px);
        transform: translateY(-50%) scale(0.8);
        opacity: 0.7;
    }
}

@keyframes micZoom {
    0% {
        right: -150px;
        transform: translateY(-50%) scale(0.8);
        opacity: 0.7;
    }
    50% {
        right: calc(50% - 20px);
        transform: translateY(-50%) scale(1.2);
        opacity: 1;
    }
    100% {
        right: calc(100% + 150px);
        transform: translateY(-50%) scale(0.8);
        opacity: 0.7;
    }
}

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

/* ============================================
   Hero Section
   ============================================ */

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

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;
}

.grain-overlay {
    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.05'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

/* Music & Cadillac Animations */
.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.3;
    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;
    animation-duration: 12s;
}

.note-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.note-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.note-4 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.note-5 {
    bottom: 15%;
    right: 25%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.note-6 {
    top: 70%;
    left: 5%;
    animation-delay: 5s;
    animation-duration: 17s;
}

@keyframes floatNote {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translate(30px, -50px) rotate(90deg) scale(1.2);
        opacity: 0.4;
    }
    50% {
        transform: translate(-20px, -100px) rotate(180deg) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translate(-40px, -50px) rotate(270deg) scale(1.1);
        opacity: 0.35;
    }
}

.sound-waves {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: flex-end;
    z-index: 1;
    pointer-events: none;
}

.wave {
    width: 4px;
    background: linear-gradient(to top, var(--gold-primary), var(--gold-secondary));
    border-radius: 2px;
    animation: wavePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.wave-1 {
    height: 20px;
    animation-delay: 0s;
}

.wave-2 {
    height: 40px;
    animation-delay: 0.2s;
}

.wave-3 {
    height: 60px;
    animation-delay: 0.4s;
}

.wave-4 {
    height: 30px;
    animation-delay: 0.6s;
}

@keyframes wavePulse {
    0%, 100% {
        transform: scaleY(0.5);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

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

.steering-wheel {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 120px;
    height: 120px;
    border: 4px solid var(--gold-primary);
    border-radius: 50%;
    opacity: 0.15;
    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-secondary);
    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%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

@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(--midnight-black) 0%, var(--midnight-black) 30%, var(--dark) 30%, var(--dark) 100%);
    border: 3px solid var(--gold-primary);
    opacity: 0.2;
    animation: spinRecord 8s linear infinite;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.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%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.vinyl-record::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
}

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

.road-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 1;
    pointer-events: none;
}

.road-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-primary) 50%, transparent 100%);
    opacity: 0.3;
    animation: roadMove 3s linear infinite;
}

.road-line:nth-child(1) {
    bottom: 30%;
    animation-delay: 0s;
}

.road-line:nth-child(2) {
    bottom: 50%;
    animation-delay: 1s;
}

.road-line:nth-child(3) {
    bottom: 70%;
    animation-delay: 2s;
}

@keyframes roadMove {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

.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.15);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-xl);
    color: var(--gold-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#typewriter-text {
    display: inline-block;
    color: var(--white);
    white-space: pre-line;
}

.typewriter-cursor {
    display: inline-block;
    color: var(--gold-primary);
    font-weight: 300;
    animation: blink 1s infinite;
    margin-left: 4px;
}

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

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

.title-line:nth-child(1) {
    animation: slideInFromLeft 1s ease-out 0.3s forwards, titlePulse 3s ease-in-out 1.5s infinite;
}

.title-line:nth-child(2) {
    animation: slideInFromLeft 1s ease-out 0.6s forwards, titlePulse 3s ease-in-out 1.8s infinite;
}

.title-line:nth-child(3) {
    animation: slideInFromLeft 1s ease-out 0.9s forwards, titlePulse 3s ease-in-out 2.1s infinite;
}

.title-line::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    animation: revealText 1.2s ease-out forwards;
}

.title-line.accent-text::before {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 50%, var(--gold-light) 100%);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.title-line:nth-child(1)::before {
    animation-delay: 0.5s;
}

.title-line:nth-child(2)::before {
    animation-delay: 0.8s;
}

.title-line:nth-child(3)::before {
    animation-delay: 1.1s;
}

.title-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    animation: shimmerText 2s ease-in-out infinite;
}

.title-line:nth-child(1)::after {
    animation-delay: 1.5s;
}

.title-line:nth-child(2)::after {
    animation-delay: 1.8s;
}

.title-line:nth-child(3)::after {
    animation-delay: 2.1s;
}

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

@keyframes revealText {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes shimmerText {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}


@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(212, 175, 55, 0);
    }
    50% {
        transform: scale(1.02);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--cadillac-chrome);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease;
    line-height: 1.8;
}

.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
   ============================================ */

.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: none;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 50%, var(--gold-dark) 100%);
    color: var(--midnight-black);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gold-primary);
    font-weight: 800;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--cadillac-chrome);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    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(--midnight-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

.pricing-card .btn {
    width: 100%;
    margin-top: var(--spacing-md);
    position: relative;
    z-index: 2;
}

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

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

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

.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.15);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.about {
    background: var(--dark);
    position: relative;
}

.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);
    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;
    will-change: transform;
    transform-origin: top center;
    object-fit: cover;
    object-position: top;
    position: relative;
}

.about-image:hover .cadillac-image {
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-image {
        order: -1;
    }
}

.lead-text {
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about p {
    color: var(--cadillac-chrome);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-size: 1.05rem;
}

.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(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(192, 192, 192, 0.1);
}

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

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

.feature-item p {
    color: var(--cadillac-chrome);
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(192, 192, 192, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition-base);
    position: relative;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--warm-amber);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card.featured {
    border-color: var(--gold-primary);
    border-width: 3px;
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    animation: featuredPulse 3s ease-in-out infinite;
}

.pricing-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    color: var(--midnight-black);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.pricing-card.exclusive {
    border-color: var(--gold-secondary);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 40px rgba(244, 208, 63, 0.3);
    animation: exclusiveGlow 4s ease-in-out infinite;
}

.pricing-card.exclusive::after {
    content: 'EXCLUSIVE';
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-light) 100%);
    color: var(--midnight-black);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.5);
}

@keyframes featuredPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), 0 0 0 8px rgba(212, 175, 55, 0);
    }
}

@keyframes exclusiveGlow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(244, 208, 63, 0.3), 0 0 60px rgba(244, 208, 63, 0.1);
    }
    50% {
        box-shadow: 0 0 50px rgba(244, 208, 63, 0.5), 0 0 80px rgba(244, 208, 63, 0.2);
    }
}

.pricing-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    background: rgba(192, 192, 192, 0.2);
    color: var(--cadillac-chrome);
}

.pricing-badge.popular {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    color: var(--midnight-black);
    font-weight: 800;
}

.pricing-badge.exclusive {
    background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-light) 100%);
    color: var(--midnight-black);
    font-weight: 800;
}

.pricing-tier {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    transition: var(--transition-base);
    position: relative;
}

.pricing-card:hover .pricing-tier {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

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

.currency {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 4px;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    font-family: var(--font-heading);
    transition: var(--transition-base);
    display: inline-block;
}

.pricing-card:hover .amount {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}

.includes-note {
    font-size: 0.85rem;
    color: var(--cadillac-chrome);
    margin-bottom: var(--spacing-sm);
    font-style: italic;
}

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

.pricing-features li {
    padding: var(--spacing-xs) 0;
    color: var(--cadillac-chrome);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: var(--transition-base);
    position: relative;
    padding-left: var(--spacing-md);
    opacity: 0.9;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 900;
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.pricing-card:hover .pricing-features li {
    color: var(--white);
    opacity: 1;
    transform: translateX(5px);
}

.pricing-card:hover .pricing-features li::before {
    color: var(--gold-secondary);
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

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

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

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

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

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

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

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

.confirmation-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--midnight-black) 0%, #1a0a0a 50%, var(--midnight-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%;
}

.confirmation-title {
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.confirmation-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--cadillac-chrome);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.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.15);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

.badge-tier {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.next-steps {
    background: var(--dark);
}

.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(255, 255, 255, 0.03);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-base);
}

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

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    opacity: 0.4;
}

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

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

.membership-benefits {
    background: var(--midnight-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(255, 255, 255, 0.03);
    border-left: 3px solid var(--gold-primary);
    border-radius: var(--radius-md);
}

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

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

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

.footer {
    background: var(--midnight-black);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    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(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

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

.footer-section p {
    color: var(--cadillac-chrome);
    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(--cadillac-chrome);
    transition: var(--transition-base);
}

.footer-section ul li a:hover {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

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

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

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
    }

    .pricing-card {
        padding: var(--spacing-md);
    }
}

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

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

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

