/* ===================================
   BODYVACUUM - LUXURY E-COMMERCE
   Premium Design for Women 30-55
   =================================== */

:root {
    /* Luxury Color Palette */
    --luxury-black: #1a1614;
    --luxury-gold: #d4a896;
    --luxury-gold-dark: #b88977;
    --luxury-cream: #f8f4f1;
    --luxury-beige: #e8ddd7;
    --luxury-brown: #6d5d52;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #fdfcfb;
    --light-gray: #f5f3f0;
    --text-primary: #2d2520;
    --text-secondary: #5a4f47;
    --text-muted: #998f86;
    
    /* Accent */
    --accent-green: #6a8e7f;
    --accent-red: #c47b6f;
    
    /* Typography */
    --font-display: 'Crimson Pro', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
    --space-xxxl: 8rem;
    
    /* Shadows */
    --shadow-subtle: 0 2px 12px rgba(26, 22, 20, 0.06);
    --shadow-soft: 0 4px 24px rgba(26, 22, 20, 0.08);
    --shadow-medium: 0 8px 32px rgba(26, 22, 20, 0.12);
    --shadow-strong: 0 16px 48px rgba(26, 22, 20, 0.16);
    
    /* Transitions */
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    color: var(--luxury-black);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container,
    .container-narrow {
        padding: 0 var(--space-lg);
    }
}

/* ===== LUXURY PROMO BAR ===== */
.luxury-promo {
    background: var(--luxury-black);
    color: var(--white);
    padding: var(--space-xs) 0;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.promo-slider {
    display: flex;
    animation: slidePromo 15s linear infinite;
}

.promo-slide {
    flex-shrink: 0;
    padding: 0 var(--space-lg);
    white-space: nowrap;
}

@keyframes slidePromo {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* ===== NAVIGATION ===== */
.luxury-nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 221, 215, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--luxury-black);
    text-decoration: none;
}

.nav-links {
    display: none;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--luxury-gold-dark);
}

.btn-nav-cta {
    padding: 0.75rem 1.75rem;
    background: var(--luxury-black);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-smooth);
}

.btn-nav-cta:hover {
    background: var(--luxury-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* ===== HERO LUXURY ===== */
.hero-luxury {
    padding: var(--space-xxl) 0 var(--space-xxxl);
    background: linear-gradient(135deg, var(--off-white) 0%, var(--luxury-cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero-luxury::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(212, 168, 150, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-xxl);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--luxury-gold-dark);
    margin-bottom: var(--space-md);
}

.hero-title {
    margin-bottom: var(--space-md);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 600px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.benefit-pill {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.625rem 1.25rem;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-subtle);
}

.pill-icon {
    font-size: 1.125rem;
}

.hero-cta-group {
    margin-bottom: var(--space-lg);
}

.btn-luxury-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 2.75rem;
    background: var(--luxury-black);
    color: var(--white);
    border-radius: 60px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-smooth);
    gap: 0.25rem;
}

.btn-luxury-primary:hover {
    background: var(--luxury-gold-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.btn-price {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-badge {
    font-size: 1rem;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(232, 221, 215, 0.5);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--luxury-gold-dark);
    display: block;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(232, 221, 215, 0.5);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeIn 1s ease 0.3s both;
}

.product-spotlight {
    position: relative;
    animation: floatProduct 8s ease-in-out infinite;
}

.spotlight-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(212, 168, 150, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.product-hero {
    position: relative;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(26, 22, 20, 0.15));
    z-index: 1;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 0.875rem 1.5rem;
    border-radius: 60px;
    box-shadow: var(--shadow-strong);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    z-index: 2;
}

.badge-luxury-1 {
    top: 15%;
    right: 5%;
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-luxury-2 {
    bottom: 25%;
    left: -5%;
    animation: floatBadge 5s ease-in-out infinite 1s;
}

.badge-luxury-3 {
    top: 50%;
    right: -5%;
    animation: floatBadge 4.5s ease-in-out infinite 0.5s;
}

.badge-icon {
    font-size: 1.125rem;
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
    padding: var(--space-lg) 0;
    background: var(--luxury-black);
    color: var(--white);
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.urgency-icon {
    font-size: 1.75rem;
    animation: pulse 2s ease-in-out infinite;
}

.urgency-text {
    font-size: 1rem;
    font-weight: 500;
}

.stock-visual {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.stock-bar {
    width: 150px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
}

.stock-fill {
    height: 100%;
    background: var(--accent-red);
    border-radius: 50px;
    animation: fillBar 2s ease;
}

.stock-label {
    font-size: 0.8125rem;
    opacity: 0.8;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: var(--space-xxxl) 0;
    background: var(--off-white);
}

.section-intro {
    text-align: center;
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-lead {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    padding: var(--space-xxxl) 0;
    background: var(--white);
}

.solution-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xxl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--luxury-gold-dark);
    margin-bottom: var(--space-sm);
}

.section-title-center {
    margin-bottom: var(--space-md);
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .solution-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.solution-card {
    padding: var(--space-xl) var(--space-lg);
    background: var(--luxury-cream);
    border-radius: 16px;
    position: relative;
    transition: all var(--transition-smooth);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.solution-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(26, 22, 20, 0.05);
}

.solution-icon {
    font-size: 2.75rem;
    margin-bottom: var(--space-md);
    display: block;
}

.solution-card h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
}

.solution-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* ===== BENEFITS SHOWCASE ===== */
.benefits-showcase {
    padding: var(--space-xxxl) 0;
    background: var(--off-white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

@media (min-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.visual-frame {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.visual-frame svg {
    width: 100%;
    height: auto;
    display: block;
}

.content-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--luxury-gold-dark);
    margin-bottom: var(--space-sm);
}

.showcase-content h2 {
    margin-bottom: var(--space-md);
}

.showcase-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.showcase-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.list-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.list-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.list-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.list-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== TRANSFORMATION SECTION ===== */
.transformation-section {
    padding: var(--space-xxxl) 0;
    background: var(--white);
}

.transformation-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.transformation-gallery {
    max-width: 1000px;
    margin: 0 auto var(--space-xxl);
}

.transformation-card {
    background: var(--luxury-cream);
    border-radius: 24px;
    padding: var(--space-xl);
    box-shadow: var(--shadow-soft);
}

.transformation-images {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-md);
    align-items: center;
    margin-bottom: var(--space-lg);
}

.transform-image {
    position: relative;
}

.image-label {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 0.5rem 1rem;
    background: rgba(26, 22, 20, 0.85);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    z-index: 10;
}

.transform-image svg {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-subtle);
}

.transform-divider {
    font-size: 2rem;
    color: var(--luxury-gold-dark);
    font-weight: 300;
}

.transformation-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.stat-badge {
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-subtle);
}

.transformation-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

.results-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .results-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.result-stat-card {
    padding: var(--space-xl);
    background: var(--luxury-cream);
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-smooth);
}

.result-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.result-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--luxury-gold-dark);
    display: block;
    margin-bottom: var(--space-xs);
}

.result-stat-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-luxury {
    padding: var(--space-xxxl) 0;
    background: var(--off-white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    padding: var(--space-xl);
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card.featured {
    background: var(--luxury-cream);
    box-shadow: var(--shadow-soft);
}

@media (min-width: 1024px) {
    .testimonial-card.featured {
        grid-column: 1 / -1;
    }
}

.testimonial-stars {
    color: #f4a261;
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.testimonial-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(232, 221, 215, 0.5);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--luxury-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-meta {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ===== PURCHASE SECTION ===== */
.purchase-section {
    padding: var(--space-xxxl) 0;
    background: linear-gradient(135deg, var(--luxury-cream) 0%, var(--luxury-beige) 100%);
}

.purchase-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.purchase-content {
    background: var(--white);
    padding: var(--space-xxl);
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
}

.purchase-title {
    text-align: center;
    margin-bottom: var(--space-md);
}

.purchase-lead {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.purchase-product {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-lg);
    background: var(--luxury-cream);
    border-radius: 16px;
    margin-bottom: var(--space-lg);
}

.product-image-small {
    width: 120px;
    flex-shrink: 0;
}

.product-image-small img {
    width: 100%;
    height: auto;
}

.product-details h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.product-includes {
    list-style: none;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.product-includes li {
    padding: 0.25rem 0;
}

.price-box {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--luxury-cream);
    border-radius: 16px;
    margin-bottom: var(--space-lg);
}

.price-original {
    font-size: 0.9375rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: var(--space-xs);
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.price-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--luxury-gold-dark);
}

.price-save {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-green);
}

.purchase-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
    .purchase-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item-purchase {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
}

.benefit-icon-purchase {
    width: 24px;
    height: 24px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.875rem;
}

.btn-purchase-primary {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--luxury-black);
    color: var(--white);
    border: none;
    border-radius: 60px;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-medium);
    margin-bottom: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.btn-purchase-primary:hover {
    background: var(--luxury-gold-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.btn-text {
    font-size: 1.25rem;
}

.btn-subtext {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
}

.trust-badges-purchase {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.guarantee-box {
    padding: var(--space-lg);
    background: var(--luxury-cream);
    border-radius: 16px;
    border-left: 4px solid var(--accent-green);
}

.guarantee-box h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.guarantee-box p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== FINAL URGENCY ===== */
.final-urgency {
    padding: var(--space-xxxl) 0;
    background: var(--luxury-black);
    color: var(--white);
}

.urgency-final-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.urgency-icon-large {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    animation: pulse 2s ease-in-out infinite;
}

.urgency-final-box h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.urgency-final-box p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
}

.countdown-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--luxury-gold);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-md) var(--space-lg);
    border-radius: 12px;
    min-width: 80px;
}

.countdown-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-xs);
    opacity: 0.7;
}

.countdown-divider {
    font-size: 2rem;
    opacity: 0.5;
}

.btn-final-cta {
    display: inline-flex;
    padding: 1.5rem 3rem;
    background: var(--luxury-gold);
    color: var(--luxury-black);
    border-radius: 60px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-strong);
}

.btn-final-cta:hover {
    background: var(--luxury-gold-dark);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(212, 168, 150, 0.4);
}

/* ===== FOOTER ===== */
.luxury-footer {
    padding: var(--space-xxxl) 0 var(--space-xl);
    background: var(--off-white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xxl);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1.5fr 2fr;
    }
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--luxury-black);
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link-luxury {
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.social-link-luxury:hover {
    color: var(--luxury-gold-dark);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--luxury-black);
}

.footer-col a {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--luxury-gold-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(232, 221, 215, 0.5);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.payment-methods {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes fillBar {
    from { width: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .hero-luxury {
        padding: var(--space-xl) 0 var(--space-xxl);
    }
    
    .floating-badge {
        display: none;
    }
    
    .hero-social-proof {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .proof-divider {
        display: none;
    }
    
    .transformation-images {
        grid-template-columns: 1fr;
    }
    
    .transform-divider {
        transform: rotate(90deg);
    }
    
    .countdown-visual {
        flex-wrap: wrap;
    }
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}

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