@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
    /* Luxurious Color Palette */
    --gold-primary: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #B8860B;
    --gold-shimmer: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 25%, #D4AF37 50%, #B8860B 75%, #D4AF37 100%);
    
    --navy-deep: #0A0F1C;
    --navy-rich: #1A1F2E;
    --navy-medium: #2A3042;
    
    --champagne: #F7F3E9;
    --pearl: #FEFDFB;
    --ivory: #FFFFF0;
    
    --text-dark: #1A1F2E;
    --text-muted: #5A6070;
    --text-light: rgba(255, 255, 255, 0.9);
    
    /* Glass Effects */
    --glass-white: rgba(255, 255, 255, 0.25);
    --glass-white-heavy: rgba(255, 255, 255, 0.85);
    --glass-dark: rgba(10, 15, 28, 0.85);
    --glass-gold: rgba(212, 175, 55, 0.1);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    /* Spacing & Sizing */
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 100px;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
    --shadow-glow: 0 0 60px rgba(212, 175, 55, 0.2);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--navy-deep);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(30, 35, 50, 1) 0%, var(--navy-deep) 100%);
    z-index: -1;
    animation: ambientGlow 15s ease-in-out infinite alternate;
}

@keyframes ambientGlow {
    0% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Luxurious Grain Texture Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 600;
}

h1 { 
    font-size: clamp(3rem, 8vw, 5.5rem); 
    letter-spacing: -2px;
}

h2 { 
    font-size: clamp(2rem, 4vw, 3.2rem); 
    letter-spacing: -1px;
}

h3 { 
    font-size: clamp(1.25rem, 2vw, 1.75rem); 
}

p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

strong { 
    font-weight: 600; 
}

/* Accent Text */
.accent-text {
    background: var(--gold-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

/* Luxurious Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gold-shimmer);
    background-size: 200% auto;
    color: var(--navy-deep);
    padding: 20px 48px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    animation: shimmer 2s linear infinite;
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Header / Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    background: rgba(10, 15, 28, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--pearl);
    letter-spacing: 0;
    position: relative;
}

.brand-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.brand-logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Elegant Animated Orbs */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.hero::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: -5s;
}

.hero::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.95); }
    75% { transform: translate(20px, 20px) scale(1.05); }
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.badge {
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    color: var(--gold-primary);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.hero-title {
    color: var(--pearl);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
    max-width: 700px;
    margin: 0 auto 4rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-details {
    background: var(--glass-dark);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    padding: 3rem 4rem;
    border-radius: var(--radius-lg);
    max-width: 850px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 
        var(--shadow-heavy),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.hero-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.5;
}

.hero-details p {
    margin: 0;
    color: var(--text-light);
    font-size: 1.35rem;
    line-height: 1.8;
    font-weight: 300;
}

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

/* Sections */
section {
    padding: 140px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--pearl);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-primary);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Intro Section */
.intro {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-rich) 100%);
    text-align: center;
}

.intro .section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--pearl);
    margin-bottom: 1.5rem;
}

.intro .section-title::after {
    display: none;
}

.large-text {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    color: var(--gold-light);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    font-family: var(--font-heading);
}

/* Criteria Section */
.criteria {
    background: var(--champagne);
    position: relative;
    overflow: hidden;
}

.criteria::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.criteria .section-title {
    color: var(--navy-deep);
}

.criteria .section-title::after {
    background: var(--navy-deep);
}

.check-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
}

.check-list li {
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    position: relative;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--pearl);
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.check-list li:hover {
    transform: translateX(8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-medium);
}

.check-list li::before {
    content: '✦';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-size: 1.2rem;
}

/* Masterclass Card Section */
.masterclass {
    background: 
        linear-gradient(180deg, var(--navy-rich) 0%, var(--navy-deep) 100%);
}

.masterclass.alt-bg {
    background: 
        radial-gradient(ellipse at 0% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--navy-rich) 0%, var(--navy-deep) 100%);
}

.card {
    background: var(--glass-dark);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border-radius: var(--radius-xl);
    padding: 5rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 
        var(--shadow-heavy),
        var(--shadow-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.card h3 {
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.card h2 {
    color: var(--pearl);
    margin-bottom: 2rem;
}

.card > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.meta-grid {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.meta-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 3px;
}

.meta-item .value {
    font-size: 1.5rem;
    color: var(--pearl);
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Takeaways Section */
.takeaways {
    background: var(--champagne);
    position: relative;
}

.takeaways::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.takeaways .section-title {
    color: var(--navy-deep);
}

.takeaways .section-title::after {
    background: var(--gold-primary);
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.grid-item {
    background: var(--pearl);
    padding: 3rem;
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.grid-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--gold-primary);
}

.grid-item:hover::before {
    transform: scaleY(1);
}

.grid-item h3 {
    color: var(--navy-deep);
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.grid-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-primary);
}

.grid-item p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.bullet-list {
    list-style: none;
    margin: 1.5rem 0;
}

.bullet-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.bullet-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 600;
}

.highlight-text {
    color: var(--navy-deep);
    font-weight: 500;
    font-style: italic;
    background: linear-gradient(transparent 60%, rgba(212, 175, 55, 0.2) 60%);
    display: inline;
}

/* Networking Section */
.networking {
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-rich) 50%, var(--navy-deep) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.networking::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.networking h2 {
    color: var(--pearl);
    margin-bottom: 1.5rem;
}

.networking p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.2rem;
}

.pill-cloud {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 3rem 0;
}

.pill {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

.pill:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.impact-text {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    margin-top: 3rem;
}

/* Difference Section */
.difference {
    background: var(--champagne);
}

.difference .section-title {
    color: var(--navy-deep);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.split-content {
    background: var(--pearl);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-soft);
}

.split-content h3 {
    color: var(--navy-deep);
    margin-bottom: 2rem;
    font-size: 1.6rem;
    position: relative;
    padding-bottom: 1rem;
}

.split-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold-primary);
}

.star-list {
    list-style: none;
}

.star-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.star-list li:last-child {
    border-bottom: none;
}

.star-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

.check-list-simple {
    list-style: none;
    margin: 1rem 0;
}

.check-list-simple li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-muted);
}

.check-list-simple li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.note {
    color: var(--gold-dark);
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
}

/* Speakers & Blogs Section */
.speakers-blogs {
    background: linear-gradient(180deg, var(--navy-rich) 0%, var(--navy-deep) 100%);
    position: relative;
}

.speakers-blogs .section-title {
    color: var(--pearl);
}

.speaker-card {
    background: var(--glass-dark);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.speaker-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.speaker-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    background-size: cover;
    background-position: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 
        0 0 0 3px var(--navy-deep),
        0 0 0 5px var(--gold-primary);
}

.speaker-card h3 {
    color: var(--pearl);
    margin-bottom: 0.5rem;
}

.speaker-card .meta-item {
    margin-bottom: 1rem;
}

.speaker-card .meta-item .label {
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.speaker-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.blogs-section {
    margin-top: 8rem;
    padding-top: 6rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.blog-card {
    background: var(--glass-dark);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-glow);
}

.blog-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--pearl);
}

.blog-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.blog-card a {
    color: var(--gold-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.blog-card a:hover {
    gap: 12px;
    color: var(--gold-light);
}

/* Footer */
.footer {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        var(--navy-deep);
    color: var(--pearl);
    padding: 120px 0 80px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    text-align: left;
}

.investment-block,
.details-block,
.cta-block {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.investment-block:hover,
.details-block:hover,
.cta-block:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.footer h3 {
    color: var(--gold-primary);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price {
    color: var(--gold-primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin: 1rem 0 1.5rem;
    font-family: var(--font-heading);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.footer .small {
    font-size: 0.875rem;
    opacity: 0.5;
    font-style: italic;
}

.cta-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-block p {
    margin-bottom: 2rem;
}

.final-word {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.final-word p {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--pearl);
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1.5;
}

.final-word strong {
    color: var(--gold-primary);
}

/* Scroll animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    section {
        padding: 100px 0;
    }
    
    .split-layout {
        gap: 3rem;
    }
    
    .card {
        padding: 3.5rem;
    }
}

@media (max-width: 768px) {
    h1 { 
        font-size: 2.8rem; 
        letter-spacing: -1px;
    }
    
    h2 { font-size: 2rem; }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-details {
        padding: 2rem 1.5rem;
    }
    
    .hero-details p {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-wrap: wrap;
    }
    
    section {
        padding: 80px 0;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .meta-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .card {
        padding: 2.5rem 1.5rem;
    }
    
    .btn-primary {
        padding: 16px 36px;
        font-size: 0.85rem;
    }
    
    .pill-cloud {
        gap: 10px;
    }
    
    .pill {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .investment-block,
    .details-block,
    .cta-block {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-badges {
        gap: 8px;
    }
    
    .badge {
        padding: 8px 16px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .grid-item,
    .split-content {
        padding: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}
