/* Base & Resets */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-main: #14080B;
    --bg-soft: #1E0D13;
    --bg-card: rgba(255, 241, 235, 0.03);
    --border-light: rgba(212, 175, 55, 0.2);
    
    --text-main: #F9F1EB;
    --text-muted: #D1BBAA;
    
    --accent-primary: #D4AF37; /* Metallic Gold */
    --accent-hover: #E8CA6B;
    --accent-secondary: #8C213A; /* Rich Burgundy */
    --accent-tertiary: #C68181; /* Soft Rose */
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.5px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-15 { margin-top: 15px; } .mt-20 { margin-top: 20px; } .mt-30 { margin-top: 30px; } .mt-40 { margin-top: 40px; }
.w-100 { width: 100%; }
.text-muted { color: var(--text-muted); }
.bg-soft { background-color: var(--bg-soft); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 36px; border-radius: 4px;
    font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
    letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent; position: relative; overflow: hidden;
}
.btn-sm { padding: 12px 28px; font-size: 0.85rem; }
.btn-large { padding: 20px 56px; font-size: 1rem; }

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #C39922 100%);
    color: #14080B;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #E8CA6B 0%, #D4AF37 100%);
}

/* Nav */
.navbar {
    padding: 24px 0; position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(20, 8, 11, 0.8); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05); transition: all 0.3s ease;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 700; color: #FAF8F5; margin-left: 1.5vw; }

/* Hero */
.hero { position: relative; padding: 200px 0 140px; min-height: 95vh; display: flex; align-items: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden; }
.hero-bg::before {
    content: ''; position: absolute; top: -20%; left: -10%; width: 50%; height: 60%;
    background: radial-gradient(circle, rgba(140, 33, 58, 0.15) 0%, rgba(20, 8, 11, 0) 70%);
    filter: blur(60px); z-index: 0;
}
.hero-bg::after {
    content: ''; position: absolute; bottom: -20%; right: -10%; width: 60%; height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(20, 8, 11, 0) 70%);
    filter: blur(80px); z-index: 0;
}

.hero-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.badge {
    display: inline-block; padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-primary); border-radius: 30px; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px;
}
.hero h1 { font-size: 4.5rem; font-weight: 500; margin-bottom: 30px; color: var(--text-main); line-height: 1.1; }
.hero h1 i { font-style: italic; color: var(--accent-primary); font-weight: 400; }

.hero .subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 45px; max-width: 90%; font-weight: 300; line-height: 1.8; }
.hero-ctas { display: flex; gap: 20px; margin-bottom: 30px; align-items: center; }
.trust-line { font-size: 0.95rem; color: var(--text-muted); display: flex; align-items: center; gap: 12px; font-weight: 300; }
.trust-line i { color: var(--accent-primary); }

.hero-image-wrapper { position: relative; border-radius: 4px; overflow: visible; z-index: 5; }
.hero-image-wrapper::before {
    content: ''; position: absolute; inset: -2px; border-radius: 6px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), rgba(20, 8, 11, 0) 50%, rgba(140, 33, 58, 0.3));
    z-index: -1;
}
.hero-image {
    width: 100%; height: auto; border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5); object-fit: cover; aspect-ratio: 4/5;
    border: 1px solid rgba(255,255,255,0.1);
}

.floating-card {
    position: absolute; bottom: 50px; left: -50px;
    background: rgba(20, 8, 11, 0.75); backdrop-filter: blur(15px);
    border: 1px solid var(--border-light); padding: 24px 35px; border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4); display: flex; align-items: center; gap: 20px;
    animation: float 8s ease-in-out infinite; z-index: 10;
}
.color-swatches { display: flex; }
.swatch {
    width: 35px; height: 35px; border-radius: 50%; border: 2px solid #14080B;
    margin-left: -15px; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.swatch:first-child { margin-left: 0; }
.s1 { background: var(--accent-primary); }
.s2 { background: var(--accent-secondary); }
.s3 { background: var(--accent-tertiary); }
.floating-card span { font-size: 1rem; font-weight: 500; font-family: var(--font-heading); letter-spacing: 0.5px; }

@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

/* Sections */
section { padding: 140px 0; position: relative; z-index: 5; }
.section-title { font-size: 3.5rem; margin-bottom: 24px; text-align: center; }
.section-desc { font-size: 1.25rem; color: var(--text-muted); font-weight: 300; max-width: 650px; margin: 0 auto; text-align: center; line-height: 1.8; }

/* How It Works */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 80px; }
.step-card {
    background: var(--bg-card); border: 1px solid rgba(255,255,255,0.03); 
    padding: 50px 30px; text-align: center; border-radius: 8px;
    transition: all 0.4s ease; backdrop-filter: blur(10px);
}
.step-card:hover {
    border-color: var(--border-light); transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 241, 235, 0.05);
}
.step-icon {
    width: 70px; height: 70px; margin: 0 auto 30px;
    background: rgba(212, 175, 55, 0.05); border: 1px solid var(--border-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--accent-primary);
}
.step-card h3 { margin-bottom: 16px; font-size: 1.6rem; font-family: var(--font-heading); color: var(--text-main); }
.step-card p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; font-weight: 300; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 80px; }
.feature-card {
    background: var(--bg-card); border: 1px solid rgba(255,255,255,0.03);
    padding: 45px; border-radius: 8px; transition: all 0.4s ease; position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0; transition: opacity 0.4s ease;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { border-color: var(--border-light); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
.f-icon { color: var(--accent-primary); font-size: 1.8rem; margin-bottom: 24px; text-shadow: 0 0 20px rgba(212,175,55,0.4); }
.feature-card h4 { margin-bottom: 16px; font-size: 1.4rem; letter-spacing: 0.5px; }
.feature-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; font-weight: 300; }

/* Benefits Section */
.benefits-container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.benefits-list { margin-top: 50px; display: flex; flex-direction: column; gap: 35px; }
.benefits-list li { display: flex; gap: 24px; align-items: flex-start; }
.benefits-list i {
    color: var(--accent-primary); font-size: 1.2rem; margin-top: 6px;
    background: rgba(212,175,55,0.1); padding: 10px; border-radius: 50%;
}
.benefits-list strong { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 10px; color: var(--text-main); display: block; font-weight: 500;}
.benefits-list span { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; font-weight: 300; }
.benefits-image { position: relative; border-radius: 4px; padding: 10px; border: 1px solid var(--border-light); background: var(--bg-soft); }
.b-img {
    width: 100%; border-radius: 2px; box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    aspect-ratio: 4/5; object-fit: cover; position: relative; z-index: 2;
}

/* Diff */
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 80px; }
.diff-item {
    display: flex; gap: 30px; background: var(--bg-card); padding: 40px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.03); transition: all 0.3s ease;
}
.diff-item:hover { border-color: var(--border-light); }
.d-icon {
    flex-shrink: 0; width: 60px; height: 60px;
    background: rgba(140, 33, 58, 0.15); color: var(--text-main);
    border-radius: 50%; border: 1px solid rgba(140, 33, 58, 0.5);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.diff-item h4 { font-size: 1.5rem; margin-bottom: 12px; font-family: var(--font-heading); }
.diff-item p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; font-weight: 300; }

/* Sample Report */
.mockup-scroll {
    display: flex; gap: 50px; overflow-x: auto; padding: 60px 20px; margin-top: 30px;
    scrollbar-width: none; -ms-overflow-style: none; justify-content: center;
}
.mockup-scroll::-webkit-scrollbar { display: none; }
.mockup-item { flex: 0 0 320px; position: relative; }
.mockup-item img {
    width: 100%; border-radius: 4px; box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); border: 1px solid rgba(255,255,255,0.1); 
    aspect-ratio: 3/4; object-fit: cover;
}
.mockup-item:hover img { transform: translateY(-15px); border-color: var(--border-light); }
.mockup-item .caption { text-align: center; margin-top: 24px; font-family: var(--font-heading); font-size: 1.2rem; color: var(--accent-primary); letter-spacing: 0.5px;}

/* Pricing */
.pricing-comparison { display: flex; gap: 40px; max-width: 1000px; margin: 80px auto 0; }
.price-card {
    flex: 1; background: var(--bg-card); backdrop-filter: blur(10px);
    border-radius: 8px; padding: 60px 50px; position: relative; border: 1px solid rgba(255,255,255,0.05);
}
.old-way { opacity: 0.6; margin-top: 30px; margin-bottom: 30px; }
.bettrhue-way {
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid var(--border-light); transform: scale(1.05); z-index: 2;
    background: linear-gradient(180deg, rgba(20,8,11,0.9) 0%, rgba(140,33,58,0.1) 100%);
}
.popular-badge {
    position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37 0%, #C39922 100%); color: #14080B; 
    padding: 8px 24px; border-radius: 30px; box-shadow: 0 10px 20px rgba(212,175,55,0.3);
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
}
.card-header { font-size: 1rem; color: var(--accent-primary); margin-bottom: 15px; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 2px; font-weight: 500;}
.price-amount { font-family: var(--font-heading); font-size: 4rem; font-weight: 400; color: var(--text-main); margin-bottom: 40px; line-height: 1; }
.price-features li { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; color: var(--text-main); font-size: 1.05rem; font-weight: 300;}
.old-way .price-features i { color: #8C213A; font-size: 1.2rem; }
.bettrhue-way .price-features i { color: var(--accent-primary); font-size: 1.2rem; }

/* FAQ */
.faq-container { max-width: 800px; }
.accordion { margin-top: 60px; }
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
.accordion-btn {
    width: 100%; text-align: left; padding: 30px 0; background: none; border: none;
    font-family: var(--font-heading); font-size: 1.4rem; font-weight: 400; color: var(--text-main);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center; letter-spacing: 0.5px;
}
.accordion-btn i { color: var(--accent-primary); transition: transform 0.4s ease; font-size: 1.1rem;}
.accordion-item.active .accordion-btn i { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.accordion-content p { padding-bottom: 30px; color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; font-weight: 300;}

/* Final CTA */
.final-cta {
    background: linear-gradient(0deg, var(--bg-soft) 0%, var(--bg-main) 100%); 
    padding: 160px 0; text-align: center; position: relative; border-top: 1px solid rgba(255,255,255,0.03);
}
.final-cta h2 { font-size: 4rem; max-width: 900px; margin: 0 auto 40px; line-height: 1.1; }

/* Footer */
.footer { background: var(--bg-soft); padding: 100px 0 40px; border-top: 1px solid rgba(255,255,255,0.03); }
.footer-top { display: flex; justify-content: space-between; margin-bottom: 80px; }
.footer-brand p { color: var(--text-muted); max-width: 350px; font-size: 1rem; margin-top: 20px; font-weight: 300; line-height: 1.7;}
.footer-links { display: flex; gap: 100px; }
.link-group h4 { color: var(--text-main); margin-bottom: 24px; font-size: 0.9rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 2px; font-weight: 600;}
.link-group a { display: block; color: var(--text-muted); margin-bottom: 16px; transition: color 0.3s ease; font-size: 1rem; font-weight: 300;}
.link-group a:hover { color: var(--accent-primary); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 0.9rem; font-weight: 300;
}

/* Animations */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; } .delay-2 { transition-delay: 0.4s; } .delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .hero-container, .benefits-container { grid-template-columns: 1fr; gap: 80px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-comparison { flex-direction: column; max-width: 600px; }
    .bettrhue-way { transform: none; margin-top: 0; }
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; max-width: 500px; margin: 60px auto 0; }
    .diff-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
    .hero-ctas { flex-direction: column; }
    .footer-top { flex-direction: column; gap: 60px; }
    .section-title { font-size: 3rem; }
}

@media (max-width: 576px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero { padding: 160px 0 80px; }
}

/* --- Light Section Specifics --- */
.light-section {
    background-color: #FAF8F5; /* Warm cream */
    color: #14080B;
}
.light-section .section-title, 
.light-section .section-desc, 
.light-section h4 {
    color: #14080B;
}
.light-section p {
    color: #4A3C38;
}
.light-section .feature-card {
    background: #FFFFFF;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.light-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.light-section .feature-card::before {
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

/* Ensure buttons pop */
.btn-primary {
    font-size: 1.05rem;
    padding: 20px 40px;
    font-weight: 600;
}


/* --- AWWWARDS CREATIVE STYLE OVERHAUL --- */
.awwwards-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5vw;
    background: #14080B;
}

.hero-typography { position: absolute; top: 50%; left: 5vw; transform: translateY(-50%); z-index: 5; pointer-events: none; }

.line-mask {
    overflow: hidden;
    line-height: 1.05;
}

.huge-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 9vw, 14rem);
    text-transform: uppercase;
    color: #FAF8F5;
    margin: 0;
    line-height: 0.9;
    letter-spacing: -0.02em;
    transform: translateY(100%); /* Hidden initially for GSAP reveal */
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(250, 248, 245, 0.4);
}

.italic-gold {
    font-style: italic;
    color: #D4AF37;
    text-transform: none;
    font-size: clamp(3rem, 8vw, 12rem);
    -webkit-text-stroke: 0px;
}

.hero-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.gallery-item {
    position: absolute;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    opacity: 0; /* Hidden initially for GSAP reveal */
    filter: brightness(0.8) contrast(1.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3); /* For GSAP zoom out */
}

/* Asymmetrical Layout for the Images */
.item-1 { top: 12%; right: 5%; width: 22vw; height: 50vh; z-index: 2; }
.item-2 { bottom: 10%; right: 30%; width: 18vw; height: 28vh; z-index: 3; }
.item-3 { top: 5%; left: 45%; width: 14vw; height: 22vh; z-index: 1; }

.hero-bottom { position: absolute; bottom: 8vh; left: 8vw; width: 80vw; display: flex; justify-content: flex-start; align-items: center; gap: 40px; z-index: 10; }

.hero-desc {
    max-width: 350px;
    font-size: 1rem;
    line-height: 1.6;
    color: #EAE0D5;
    margin-bottom: 20px;
}

.magnetic-btn {
    width: 140px;
    height: 140px;
    background: #D4AF37;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #14080B;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s;
    cursor: pointer;
}
.magnetic-btn:hover {
    background: #FAF8F5;
}

@media (max-width: 768px) {
    .hero-bottom { position: absolute; bottom: 8vh; left: 8vw; width: 80vw; display: flex; justify-content: flex-start; align-items: center; gap: 40px; z-index: 10; }
    .item-1 { top: 12%; right: 5%; width: 22vw; height: 50vh; z-index: 2; }
    .item-2 { bottom: 10%; right: 30%; width: 18vw; height: 28vh; z-index: 3; }
    .item-3 { top: 5%; left: 45%; width: 14vw; height: 22vh; z-index: 1; }
    .magnetic-btn { width: 120px; height: 120px; align-self: flex-end; }
}

.gallery-item.item-3 { background: transparent !important; box-shadow: none !important; overflow: visible !important; top: -5% !important; right: -2% !important; left: auto !important; width: 28vw !important; height: auto !important; z-index: 1 !important; }

.gallery-item.item-1 { display: none !important; }

.gallery-item.item-2 { bottom: 5% !important; right: 8% !important; left: auto !important; width: 20vw !important; height: 40vh !important; z-index: 3 !important; border-radius: 12px !important; overflow: hidden !important; box-shadow: 0 20px 50px rgba(0,0,0,0.6) !important; }

.hero-bottom { position: absolute; bottom: 8vh; left: 8vw; width: 80vw; display: flex; justify-content: flex-start; align-items: center; gap: 40px; z-index: 10; }


.magnetic-btn {
    width: 160px !important;
    height: 160px !important;
}
.magnetic-btn .btn-text {
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    line-height: 1.4 !important;
}


/* =============================================
   TESTIMONIALS
   ============================================= */
.test-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.test-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 45px;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.test-card:hover { border-color: var(--border-light); }

.stars {
    color: var(--accent-primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.review-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 300;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-profile strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-main);
}

.client-profile span {
    font-size: 0.8rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212,175,55,0.1);
    border: 1px solid var(--border-light);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    flex-shrink: 0;
}

/* =============================================
   EXPERT / ELENA SECTION
   ============================================= */
.expert-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: center;
}

.expert-image {
    width: 300px;
    flex-shrink: 0;
}

.e-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 8px;
    object-fit: cover;
    object-position: top center;
    aspect-ratio: 3/4;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid var(--border-light);
}

.expert-name {
    font-size: 0.82rem;
    color: var(--accent-primary);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 28px;
    margin-top: 6px;
}

.expert-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 20px;
    font-weight: 300;
}

.signature {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 2.8rem;
    color: var(--accent-primary);
    margin-top: 30px;
    line-height: 1;
}

/* =============================================
   EMAIL CAPTURE SECTION
   ============================================= */
.email-capture {
    padding: 120px 0;
    background: linear-gradient(135deg,
        rgba(140,33,58,0.12) 0%,
        rgba(20,8,11,0) 50%,
        rgba(212,175,55,0.06) 100%);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    position: relative;
}

.capture-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.capture-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--accent-primary);
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.capture-title {
    font-size: 3rem;
    margin-bottom: 16px;
    text-align: left;
    line-height: 1.1;
}

.capture-content > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.75;
    font-weight: 300;
    text-align: left;
}

.capture-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.capture-form input[type="email"] {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 18px 22px;
    border-radius: 4px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
}

.capture-form input[type="email"]:focus {
    border-color: var(--accent-primary);
}

.capture-form input::placeholder {
    color: rgba(209,187,170,0.5);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: rgba(209,187,170,0.4);
    text-align: center;
    margin: 0;
}

/* =============================================
   EXIT INTENT POPUP
   ============================================= */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.popup-card {
    background: #1A0C10;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 60px 50px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 50px 100px rgba(0,0,0,0.9);
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.popup-overlay.active .popup-card {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(209,187,170,0.4);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
    font-family: sans-serif;
}

.popup-close:hover { color: var(--text-main); }

.popup-card h3 {
    font-size: 2.4rem;
    margin: 16px 0 14px;
    line-height: 1.1;
}

.popup-card > p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 300;
}

.popup-disclaimer {
    font-size: 0.78rem !important;
    color: rgba(209,187,170,0.35) !important;
    margin-top: 14px !important;
    margin-bottom: 0 !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .expert-container { grid-template-columns: 1fr; gap: 50px; }
    .expert-image { width: 100%; max-width: 280px; }
    .capture-inner { grid-template-columns: 1fr; gap: 50px; }
    .capture-title { font-size: 2.4rem; }
    .test-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .popup-card { padding: 40px 30px; }
    .popup-card h3 { font-size: 2rem; }
    .expert-image { max-width: 220px; margin: 0 auto; }
}


/* =============================================
   UPGRADED HERO CTA CLUSTER
   ============================================= */
.cta-cluster {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.magnetic-btn {
    width: 180px;
    height: 180px;
    background: #D4AF37;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #14080B;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1.5px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    animation: pulse-glow 2.5s ease-in-out infinite;
}

.magnetic-btn:hover {
    background: #FAF8F5;
    animation: none;
    box-shadow: 0 0 0 8px rgba(212,175,55,0.2), 0 20px 50px rgba(212,175,55,0.5) !important;
}

@keyframes pulse-glow {
    0%   { box-shadow: 0 0 0 0 rgba(212,175,55,0.5), 0 15px 40px rgba(212,175,55,0.25); }
    50%  { box-shadow: 0 0 0 16px rgba(212,175,55,0), 0 20px 50px rgba(212,175,55,0.4); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5), 0 15px 40px rgba(212,175,55,0.25); }
}

.cta-trust {
    text-align: center;
}

.cta-stars {
    font-size: 0.85rem;
    color: var(--accent-primary);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.cta-stars span {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 4px;
}

.cta-price {
    font-size: 0.78rem;
    color: rgba(209,187,170,0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* =============================================
   LOGO — COLOR PALETTE GRADIENT
   ============================================= */
.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(
        110deg,
        #C97B7B 0%,
        #D4956A 22%,
        #D4AF37 44%,
        #7BB89A 66%,
        #9B84C4 88%,
        #C97B7B 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    animation: logo-shimmer 6s linear infinite;
}

@keyframes logo-shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* =============================================
   SIMPLIFIED HERO BOTTOM
   ============================================= */
.hero-bottom {
    position: absolute;
    bottom: 6vh;
    left: 5vw;
    right: 5vw;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    z-index: 10;
}

.cta-cluster {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-price {
    font-size: 0.75rem;
    color: rgba(209,187,170,0.55);
    letter-spacing: 0.5px;
    text-align: center;
    margin: 0;
    white-space: nowrap;
}

/* Push hero text up so CTA does not overlap Palette. */
.hero-typography {
    top: 36% !important;
    transform: translateY(-50%) !important;
}

.hero-bottom {
    bottom: 4vh !important;
}

/* Center CTA horizontally so it clears Palette text */
.hero-bottom {
    position: absolute !important;
    bottom: 5vh !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 10 !important;
    width: auto !important;
}


/* =============================================
   DEFINITIVE FIX: LOGO GRADIENT
   ============================================= */
.navbar .logo,
.footer-brand .logo,
.logo {
    font-family: var(--font-heading) !important;
    font-size: 2rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.5px !important;
    background: linear-gradient(
        110deg,
        #C97B7B 0%,
        #D4956A 22%,
        #D4AF37 44%,
        #7BB89A 66%,
        #9B84C4 88%,
        #C97B7B 100%
    ) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: logo-shimmer 6s linear infinite !important;
    color: transparent !important;
}

@keyframes logo-shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* =============================================
   DEFINITIVE FIX: HERO CTA — CENTERED, NO OVERLAP
   ============================================= */
.hero-bottom {
    position: absolute !important;
    bottom: 5vh !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    transform: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 10 !important;
    pointer-events: auto !important;
}


/* =============================================
   MOBILE OVERHAUL — max-width: 768px
   ============================================= */
@media (max-width: 768px) {

    /* --- Navbar --- */
    .navbar { padding: 12px 0 !important; }
    .nav-container { padding: 0 16px !important; }
    .navbar .btn-sm {
        padding: 9px 14px !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.5px !important;
    }

    /* --- Hero Typography --- */
    .huge-text {
        font-size: clamp(2.4rem, 10vw, 4.5rem) !important;
        line-height: 1.0 !important;
    }
    .italic-gold {
        font-size: clamp(2rem, 9vw, 4rem) !important;
    }

    /* Push text up toward top of screen */
    .hero-typography {
        top: 18% !important;
        left: 4vw !important;
        transform: none !important;
    }

    /* --- Gallery Images --- */
    /* Keep only the main portrait, hide the others */
    .gallery-item.item-1 {
        width: 42vw !important;
        height: 32vh !important;
        top: auto !important;
        bottom: 18vh !important;
        right: 3% !important;
        left: auto !important;
    }
    .gallery-item.item-2 { display: none !important; }
    .gallery-item.item-3 { display: none !important; }

    /* --- CTA --- */
    .magnetic-btn {
        width: 130px !important;
        height: 130px !important;
        font-size: 0.85rem !important;
    }

    .hero-bottom {
        bottom: 3vh !important;
        left: 0 !important;
        right: 0 !important;
        justify-content: flex-start !important;
        padding-left: 4vw !important;
    }

    .cta-price {
        font-size: 0.68rem !important;
        white-space: normal !important;
        max-width: 140px !important;
        text-align: center !important;
    }

    /* --- Sections --- */
    section { padding: 80px 0 !important; }
    .section-title { font-size: 2.2rem !important; }

    /* --- Benefits / Pain Section --- */
    .benefits-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .benefits-image { display: none !important; }

    /* --- Steps --- */
    .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 40px !important;
    }

    /* --- Features --- */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-top: 40px !important;
    }

    /* --- Pricing --- */
    .pricing-comparison {
        flex-direction: column !important;
        max-width: 100% !important;
        gap: 20px !important;
    }
    .bettrhue-way { transform: none !important; }

    /* --- Expert --- */
    .expert-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    .expert-image {
        width: 200px !important;
        margin: 0 auto !important;
    }

    /* --- Email Capture --- */
    .capture-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .capture-title { font-size: 2rem !important; }

    /* --- Footer --- */
    .footer-top {
        flex-direction: column !important;
        gap: 40px !important;
    }
    .footer-links {
        flex-direction: column !important;
        gap: 30px !important;
    }

    /* --- Popup --- */
    .popup-card {
        padding: 40px 24px !important;
        margin: 16px !important;
    }
    .popup-card h3 { font-size: 1.8rem !important; }
}

@media (max-width: 768px) {
    .gallery-item.item-1 {
        display: block !important;
        opacity: 1 !important;
        width: 48vw !important;
        height: 38vh !important;
        top: 28% !important;
        bottom: auto !important;
        right: 2% !important;
        left: auto !important;
        z-index: 2 !important;
        border-radius: 10px !important;
        overflow: hidden !important;
    }
    .gallery-item.item-1 img {
        transform: scale(1) !important;
    }
}


/* =============================================
   CORMORANT GARAMOND DISPLAY TUNING
   — lighter weight lets the thin strokes sing
   ============================================= */

/* Hero root variable */
:root {
    --font-heading: 'Cormorant Garamond', serif !important;
}

.huge-text {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    font-size: clamp(4.5rem, 10vw, 15rem) !important;
    letter-spacing: -0.01em !important;
    line-height: 0.88 !important;
}

.outline-text {
    -webkit-text-stroke: 1.5px rgba(250, 248, 245, 0.35) !important;
    color: transparent !important;
}

.italic-gold {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    font-size: clamp(3.5rem, 9vw, 13rem) !important;
    color: #D4AF37 !important;
}

/* Section headings — heavier weight for readability at smaller sizes */
.section-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 500 !important;
    letter-spacing: -0.02em !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif !important;
}

/* Logo — small caps variant for premium feel */
.navbar .logo {
    font-family: 'Cormorant SC', serif !important;
    font-weight: 500 !important;
    font-size: 1.6rem !important;
    letter-spacing: 1px !important;
}

/* Step cards, feature cards */
.step-card h3, .feature-card h4, .diff-item h4 {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
}

@media (max-width: 768px) {
    .huge-text {
        font-size: clamp(3rem, 12vw, 6rem) !important;
    }
    .italic-gold {
        font-size: clamp(2.5rem, 11vw, 5rem) !important;
    }
}


/* =============================================
   HERO TEXT EFFECTS — Luxury Masked Reveal
   ============================================= */

/* The mask container — CRITICAL: overflow hidden hides chars until they slide in */
.line-mask {
    overflow: hidden;
    display: block;
    line-height: 1 !important;
    padding-bottom: 0.08em; /* prevents descender clipping */
}

/* Each split character */
.char {
    display: inline-block;
    transform: translateY(110%) rotate(3deg);
    opacity: 0;
    animation: charUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
}

@keyframes charUp {
    to {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
}

/* Space character between words */
.char-space {
    display: inline-block;
    width: 0.3em;
}

/* =============================================
   LINE 2 — "YOUR PERFECT" wipe-in reveal
   ============================================= */
.line-wipe {
    overflow: hidden;
    display: block;
}

.wipe-inner {
    display: block;
    clip-path: inset(0 100% 0 0);
    animation: wipeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
    will-change: clip-path;
}

@keyframes wipeIn {
    to { clip-path: inset(0 0% 0 0); }
}

/* =============================================
   LINE 3 — "Palette." animated color spectrum
   ============================================= */
.palette-text {
    display: block;
    overflow: hidden;
}

.palette-inner {
    display: inline-block;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400;
    font-size: clamp(3.5rem, 9vw, 13rem) !important;
    line-height: 0.9;

    /* The color spectrum lives INSIDE the letters */
    background: linear-gradient(
        90deg,
        #C97B7B 0%,
        #D4956A 12%,
        #D4B86A 22%,
        #C9C46A 32%,
        #8EC97B 42%,
        #7BB8B0 52%,
        #7B8EC9 62%,
        #9B7BC9 72%,
        #C97BA8 82%,
        #C97B7B 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Slide in + color cycle */
    transform: translateY(110%);
    animation:
        charUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards,
        spectrumShift 5s linear 1.9s infinite;
    will-change: transform, background-position;
}

@keyframes spectrumShift {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* =============================================
   HERO TYPOGRAPHY — Mouse parallax layers
   ============================================= */
.hero-typography {
    transform-style: preserve-3d;
    perspective: 800px;
}

.huge-text {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    font-size: clamp(4.5rem, 10vw, 15rem) !important;
    letter-spacing: -0.01em !important;
    line-height: 0.88 !important;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.outline-text.glow-outline {
    -webkit-text-stroke: 1px rgba(250, 248, 245, 0.25) !important;
    color: transparent !important;
}

/* =============================================
   SUBTLE GLOW BEHIND THE TEXT
   ============================================= */
.hero-typography::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 768px) {
    .palette-inner {
        font-size: clamp(2.5rem, 11vw, 5rem) !important;
    }
    .huge-text {
        font-size: clamp(3rem, 12vw, 6rem) !important;
    }
}

/* Fix YOUR PERFECT visibility + enhance overall impact */
.outline-text.glow-outline {
    -webkit-text-stroke: 2px rgba(212, 175, 55, 0.55) !important;
    color: transparent !important;
    text-shadow: none !important;
    filter: drop-shadow(0 0 30px rgba(212,175,55,0.15)) !important;
}

/* Make DISCOVER bolder and more dramatic */
#discoverText, #line1 .huge-text {
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-shadow: 0 0 80px rgba(255,255,255,0.08) !important;
}

/* Palette inner — ensure it is large and visible */
.palette-inner {
    font-size: clamp(4rem, 10vw, 14rem) !important;
    font-weight: 300 !important;
    letter-spacing: -0.02em !important;
}


/* =============================================
   HERO V2 — Full-bleed editorial image
   ============================================= */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background image — fills the screen */
.hero-v2-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
    z-index: 0;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero-v2-bg.loaded {
    transform: scale(1);
}

/* Gradient overlay — dark on left for text legibility, transparent on right */
.hero-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(14, 6, 9, 0.92) 0%,
        rgba(14, 6, 9, 0.75) 40%,
        rgba(14, 6, 9, 0.35) 65%,
        rgba(14, 6, 9, 0.1)  100%
    );
    z-index: 1;
}

/* Content sits on top */
.hero-v2-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 160px 6vw 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Typography block */
.hero-v2-text {
    max-width: 800px;
}

.v2-line-mask {
    overflow: hidden;
    line-height: 1;
    padding-bottom: 0.06em;
    display: block;
}

.v2-line {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(4rem, 9vw, 10rem);
    line-height: 0.95;
    color: #FAF8F5;
    letter-spacing: -0.02em;

    /* Slide-up reveal */
    transform: translateY(110%);
    animation: v2SlideUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.v2-line-1 { animation-delay: 0.1s; }
.v2-line-2 {
    font-style: italic;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.65);
    font-size: clamp(3rem, 7.5vw, 8.5rem);
    animation-delay: 0.3s;
}
.v2-line-3 { animation-delay: 0.55s; }

/* "Palette." — living color spectrum inside the letters */
.v2-palette {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(
        90deg,
        #C97B7B 0%,
        #D4956A 15%,
        #D4C46A 30%,
        #8EC97B 45%,
        #7BBDC9 60%,
        #8B7BC9 75%,
        #C97BA8 88%,
        #C97B7B 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation:
        v2SlideUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards,
        v2SpectrumMove 5s linear 1.65s infinite;
}

@keyframes v2SlideUp {
    to { transform: translateY(0); }
}

@keyframes v2SpectrumMove {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Subtitle + CTA block */
.hero-v2-sub {
    max-width: 500px;
}

.hero-v2-sub p {
    font-size: 1.1rem;
    color: rgba(250, 248, 245, 0.6);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 32px;
}

/* Clean pill CTA button */
.v2-cta-btn {
    display: inline-flex;
    align-items: center;
    background: #D4AF37;
    color: #14080B;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    padding: 18px 36px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(212,175,55,0.3);
    margin-bottom: 20px;
}

.v2-cta-btn:hover {
    background: #E8CA6B;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(212,175,55,0.45);
}

.v2-trust {
    font-size: 0.78rem;
    color: rgba(250, 248, 245, 0.4);
    letter-spacing: 0.3px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-v2-content { padding: 130px 5vw 80px; }
    .v2-line { font-size: clamp(3rem, 13vw, 5rem); }
    .v2-line-2 { font-size: clamp(2.2rem, 11vw, 4.2rem); }
    .hero-v2-overlay {
        background: linear-gradient(
            180deg,
            rgba(14, 6, 9, 0.85) 0%,
            rgba(14, 6, 9, 0.7) 60%,
            rgba(14, 6, 9, 0.5) 100%
        );
    }
}

/* EMERGENCY VISIBILITY FIX */
header.hero-v2 {
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
    background: #14080B !important;
}
.hero-v2-bg {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center 20% !important;
    z-index: 0 !important;
}
.hero-v2-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(105deg, rgba(14,6,9,0.92) 0%, rgba(14,6,9,0.4) 60%, rgba(14,6,9,0.1) 100%) !important;
    z-index: 1 !important;
}
.hero-v2-content {
    position: relative !important;
    z-index: 2 !important;
    padding: 160px 6vw 80px !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
}
.v2-line-mask { overflow: visible !important; display: block !important; }
.v2-line {
    display: block !important;
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
    font-family: "Cormorant Garamond", serif !important;
    font-weight: 400 !important;
    color: #FAF8F5 !important;
    line-height: 0.95 !important;
    letter-spacing: -0.02em !important;
    font-size: clamp(4rem, 9vw, 10rem) !important;
}
.v2-line-2 {
    font-style: italic !important;
    color: rgba(250,248,245,0.55) !important;
    font-size: clamp(3rem, 7.5vw, 8.5rem) !important;
}
.v2-palette {
    font-style: italic !important;
    background: linear-gradient(90deg,#C97B7B 0%,#D4956A 15%,#D4C46A 30%,#8EC97B 45%,#7BBDC9 60%,#8B7BC9 75%,#C97BA8 88%,#C97B7B 100%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: v2SpectrumMove 5s linear infinite !important;
    transform: none !important;
    opacity: 1 !important;
}
@keyframes v2SpectrumMove {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.hero-v2-sub { opacity: 1 !important; transform: none !important; max-width: 500px; }
.hero-v2-sub p { color: rgba(250,248,245,0.65) !important; font-size: 1.1rem !important; margin-bottom: 28px !important; font-weight: 300 !important; line-height: 1.75 !important; }
.v2-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    background: #D4AF37 !important;
    color: #14080B !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    padding: 18px 36px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    margin-bottom: 16px !important;
}
.v2-trust { font-size: 0.78rem !important; color: rgba(250,248,245,0.4) !important; }
