/* ==========================================================================
   PRIME META MOON LANDING PAGE - CSS DESIGN SYSTEM
   ========================================================================== */

/* --- Custom Variables & Tokens --- */
:root {
    /* Color Palette */
    --color-bg-primary: #050505;
    --color-bg-radial: #0c0d10;
    --color-bg-secondary: #0d0d0d;
    --color-bg-tertiary: #141414;
    
    --color-text-primary: #ffffff;
    --color-text-secondary: #a3a3a3;
    --color-text-muted: #666666;
    
    --color-accent-white: #ffffff;
    --color-accent-silver: #d9d9d9;
    --color-accent-silver-dark: #8a8a8a;
    
    /* Glares & Glows */
    --glow-soft-white: rgba(255, 255, 255, 0.08);
    --glow-intense-white: rgba(255, 255, 255, 0.2);
    --glow-bottle-behind: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(5,5,5,0) 70%);
    
    /* Fonts */
    --font-headings: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Tokens */
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Document Defaults & Resets --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    position: relative;
    background-color: var(--color-bg-primary);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
}

/* --- Dynamic Background Canvas & Layering --- */
#space-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

/* All main content sections should sit above the canvas */
header, section, footer {
    position: relative;
    z-index: 2;
}

/* --- Reusable Components (Glassmorphism & Buttons) --- */

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-medium), 
                border-color var(--transition-medium), 
                box-shadow var(--transition-medium),
                background var(--transition-medium);
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 50px -10px rgba(255, 255, 255, 0.04);
}

/* Card Glow Effect (Hover overlay) */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.05), transparent 40%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glass-card:hover .card-glow {
    opacity: 1;
}

/* Glass Reflection Slide effect */
.benefit-card-reflection {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 30%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.03) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s ease;
    z-index: 1;
}

.glass-card:hover .benefit-card-reflection {
    left: 150%;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-family: var(--font-headings);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.75rem;
}

.btn-primary {
    background-color: var(--color-accent-white);
    color: #000000;
    border: 1px solid var(--color-accent-white);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent-white);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    border-color: var(--color-accent-white);
    background-color: rgba(255, 255, 255, 0.03);
}

.btn-block {
    width: 100%;
}

/* Button glow pulse class */
.btn-glow {
    position: relative;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity var(--transition-fast);
}
.btn-glow:hover::after {
    opacity: 1;
}

/* --- Section Typography & Containers --- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent-silver-dark);
    margin-bottom: 1rem;
}

.section-tag.text-center {
    display: block;
    text-align: center;
}

.section-title {
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--color-accent-white);
    margin-bottom: 1.5rem;
}

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

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

.section-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

.title-underline {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-white), transparent);
    margin-top: 1rem;
}

.text-glow {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.icon-inline {
    margin-left: 0.5rem;
    width: 1rem;
    height: 1rem;
    vertical-align: middle;
}

/* ==========================================================================
   LAYOUT SECTIONS
   ========================================================================== */

/* --- Sticky Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition-medium);
    z-index: 100;
    will-change: transform, opacity;
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-accent-white);
    display: flex;
    flex-direction: column;
    line-height: 0.95;
}

.logo span {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--color-accent-silver-dark);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-accent-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-white);
    transition: width var(--transition-medium);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger mobile button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-accent-white);
    transition: all var(--transition-medium);
}

/* --- SECTION 1 • HERO --- */
.hero-section {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 55%, var(--color-bg-radial) 0%, var(--color-bg-primary) 65%);
}

.hero-glow-layer {
    position: absolute;
    width: 60vw;
    height: 60vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1.3fr 1.1fr 1fr;
    align-items: center;
    gap: 2rem;
    z-index: 2;
}

/* Hero Content (Left) */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (min-width: 769px) {
    .hero-content {
        margin-left: -3rem;
    }
}

.hero-title {
    font-family: var(--font-headings);
    font-size: clamp(3.2rem, 5.5vw, 5.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 1.2rem;
}

/* Hero Product (Center) */
.hero-product-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.product-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    pointer-events: none;
}

.product-image-container {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-background-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    display: block;
    mix-blend-mode: lighten;
    background-color: #000000;
}

.hero-bottle-img {
    height: 70vh;
    min-height: 480px;
    max-height: 650px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.9));
    transition: transform var(--transition-fast);
    mix-blend-mode: lighten;
}

.hero-spacer-column {
    height: 100%;
    width: 100%;
    display: block;
}

/* Product Preloader */
.product-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 1000;
    background: #000000;
}

.loader-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(255, 255, 255, 0.06);
    border-top: 3px solid var(--color-accent-white);
    border-radius: 50%;
    animation: loader-spin 1s linear infinite;
}

.loader-text {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent-white);
}

@keyframes loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Fact Cards (Right) */
.hero-fact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-fact-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
}

.fact-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fact-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent-white);
}

.fact-info h3 {
    font-family: var(--font-headings);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.fact-info p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* --- SECTION 2 • ABOUT --- */
.about-section {
    background-color: var(--color-bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 5rem;
    align-items: center;
}

/* Left Image Box */
.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    height: 600px;
}

.about-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.about-image-container {
    width: 100%;
    height: 100%;
}

.about-bottle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.about-image-wrapper:hover .about-bottle-img {
    transform: scale(1.04);
}

/* Right Features */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-card {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: var(--color-accent-white);
}

.feature-card h3 {
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* --- SECTION 3 • BENEFITS / SERVICES --- */
.benefits-section {
    background-color: var(--color-bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent-white);
}

.benefit-card h3 {
    font-family: var(--font-headings);
    font-size: 1.35rem;
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Statistics Section */
.stats-container {
    margin-top: 4rem;
    padding: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    align-items: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number-wrapper {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-accent-white);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.stat-number {
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
    color: var(--color-accent-silver-dark);
    margin-left: 2px;
}

.stat-label {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.border-left-silver {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- SECTION 4 • CONTACT / CTA --- */
.contact-section {
    background-color: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-bg-glow {
    position: absolute;
    width: 50vw;
    height: 50vw;
    right: -10%;
    bottom: -10%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Contact Info */
.contact-info-container {
    display: flex;
    flex-direction: column;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.contact-detail-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon i {
    width: 20px;
    height: 20px;
    color: var(--color-accent-white);
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
}

.detail-value {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-accent-white);
    transition: color var(--transition-fast);
}

a.detail-value:hover {
    color: var(--color-text-secondary);
}

/* Social icons */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.social-icon-btn i,
.social-svg {
    width: 18px;
    height: 18px;
    color: var(--color-text-secondary);
    fill: none;
    stroke: currentColor;
    transition: color var(--transition-medium), fill var(--transition-medium);
}

.social-svg.brand-x {
    fill: currentColor;
    stroke: none;
}

.social-icon-btn:hover {
    background: var(--color-accent-white);
    border-color: var(--color-accent-white);
    transform: translateY(-3px);
}

.social-icon-btn:hover i,
.social-icon-btn:hover .social-svg {
    color: #000000;
}

/* Right Luxury Form */
.contact-form-container {
    position: relative;
}

.contact-form {
    padding: 3rem;
}

.form-title {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 1.8rem;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-accent-white);
    transition: border-color var(--transition-fast);
    z-index: 1;
    position: relative;
}

.form-group textarea {
    resize: none;
}

/* Select element adjustment for custom arrow */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
}

/* Label placement and transitions */
.form-group label {
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: var(--color-text-muted);
    transition: all var(--transition-medium);
    pointer-events: none;
    z-index: 0;
}

/* Form floating labels mechanism */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -1rem;
    font-size: 0.75rem;
    color: var(--color-accent-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group select ~ .select-label {
    top: 0.8rem;
}

/* Underline glowing highlight */
.input-focus-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-white);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: width var(--transition-medium);
    z-index: 2;
}

.form-group input:focus ~ .input-focus-line,
.form-group textarea:focus ~ .input-focus-line,
.form-group select:focus ~ .input-focus-line {
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: transparent;
}

/* Select option styling */
.form-group select option {
    background-color: var(--color-bg-tertiary);
    color: var(--color-accent-white);
}

.btn-submit {
    margin-top: 1rem;
    gap: 0.5rem;
}

.btn-icon {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-medium);
}

.btn-submit:hover .btn-icon {
    transform: translate(2px, -2px);
}

/* Success Card */
.success-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
    z-index: 10;
}

.success-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.success-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-accent-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.success-icon {
    width: 32px;
    height: 32px;
    color: var(--color-accent-white);
}

.success-card h3 {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.success-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    max-width: 320px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--color-bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-tagline {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    max-width: 300px;
    line-height: 1.5;
}

.footer-links-group h4 {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--color-accent-white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-meta-badges {
    display: flex;
    gap: 0.8rem;
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.badge-separator {
    color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Large screens and Desktops (default layout) */

/* Table Layouts (Tablet / Small Laptop) */
@media screen and (max-width: 1024px) {
    .section-container {
        padding: 4rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    /* Hero layout change */
    .hero-section {
        padding-top: calc(var(--header-height) + 1rem);
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-product-wrapper {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
    
    .hero-content {
        grid-column: 1;
        grid-row: 1;
    }
    
    .hero-fact-cards {
        grid-column: 1;
        grid-row: 2;
    }
    
    .hero-bottle-img {
        height: 55vh;
        min-height: 380px;
    }
    
    /* About layout adjustments */
    .about-grid {
        gap: 3rem;
    }
    
    .about-image-wrapper {
        height: 480px;
    }
    
    /* Benefits adjustments */
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    
    .benefit-card {
        padding: 2rem 1.2rem;
    }
    
    /* Stats grid */
    .stats-container {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-item:nth-child(2n+1) {
        border-left: none;
    }
    
    /* Contact adjustments */
    .contact-layout {
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Mobile Viewports (Phones / Small Tablets) */
@media screen and (max-width: 768px) {
    /* Header menu mobile dropdown style */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform var(--transition-medium), opacity var(--transition-medium);
        pointer-events: none;
        z-index: 99;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    /* Hamburger animation states */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero mobile restructure */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content, .hero-product-wrapper, .hero-fact-cards {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2rem auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-bottle-img {
        height: 45vh;
        min-height: 320px;
    }
    
    /* About Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-image-wrapper {
        height: 320px;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Benefits Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        border-left: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 1.5rem;
    }
    
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    /* Contact Mobile */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Small devices (very small phone screens) */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* --- Lenis Smooth Scrolling Optimization --- */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}
