/* ==========================================================================
   M4ZIL For Power X - Premium E-Commerce Stylesheet
   Ultra-luxury dark mode single-product site
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
    /* Core palette */
    --black: #0B0B0F;
    --black-light: #141418;
    --black-lighter: #1A1A2E;
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #8B7332;
    --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8D48B 50%, #C9A84C 100%);
    --blue: #1E3A8A;
    --blue-light: #3B5BDB;
    --white: #FFFFFF;
    --off-white: #F5F0E8;
    --gray: #8A8A8A;
    --gray-light: #CCCCCC;
    --gray-dark: #444444;

    /* Semantic tokens */
    --bg-primary: var(--black);
    --bg-secondary: var(--black-light);
    --bg-tertiary: var(--black-lighter);
    --text-primary: var(--white);
    --text-secondary: var(--gray);
    --text-muted: var(--gray-dark);
    --accent: var(--gold);
    --accent-light: var(--gold-light);
    --accent-dark: var(--gold-dark);

    /* Spacing scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 60px;
    --space-3xl: 100px;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;

    /* Borders & Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 50px;
    --radius-circle: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.15);
    --shadow-gold-lg: 0 8px 50px rgba(201, 168, 76, 0.25);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index scale */
    --z-base: 1;
    --z-nav: 1000;
    --z-modal: 10000;
    --z-preloader: 9999;
}


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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
    color: inherit;
}

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

::selection {
    background-color: var(--gold);
    color: var(--black);
}


/* --------------------------------------------------------------------------
   3. Utility Classes
   -------------------------------------------------------------------------- */
.text-gold {
    color: var(--gold);
}

.section-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    font-size: var(--font-size-base);
}


/* --------------------------------------------------------------------------
   4. Section Layout
   -------------------------------------------------------------------------- */
.section {
    padding: var(--space-3xl) 0;
    position: relative;
    background-color: var(--bg-primary);
}

.section--dark {
    background-color: var(--bg-secondary);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-tag {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    padding-left: var(--space-md);
    border-left: 3px solid var(--gold);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, var(--font-size-4xl));
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-header .section-title {
    display: block;
}

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

.about-content .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: var(--space-md) 0 0;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray);
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}


/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gold-gradient);
    color: var(--black);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

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

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary i {
    transition: transform var(--transition-base);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* Extra-large CTA button (hero) */
.btn-primary--xl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 20px 48px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    background: var(--gold-gradient);
    color: var(--black);
    box-shadow: var(--shadow-gold-lg);
    letter-spacing: 0.5px;
}

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

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

.btn-primary--xl:hover {
    background: linear-gradient(135deg, #E8D48B 0%, #C9A84C 50%, #E8D48B 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 60px rgba(201, 168, 76, 0.35);
}

.btn-primary--xl:active {
    transform: translateY(0);
}

.btn-primary--xl i {
    transition: transform var(--transition-base);
}

.btn-primary--xl:hover i {
    transform: translateX(4px);
}

.btn-primary--xl .btn-price {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.85;
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid rgba(11, 11, 15, 0.2);
}


/* --------------------------------------------------------------------------
   6. Preloader
   -------------------------------------------------------------------------- */
#preloader {
    position: fixed;
    inset: 0;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 8px;
    text-transform: uppercase;
    animation: fadeIn 0.8s ease forwards;
}

.preloader-logo span {
    color: var(--gold);
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--gray-dark);
    border-radius: 2px;
    margin: var(--space-lg) auto 0;
    overflow: hidden;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 2px;
    animation: progress 1.8s ease forwards;
}


/* --------------------------------------------------------------------------
   7. Navbar
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(11, 11, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: var(--z-nav);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
}

.logo-accent {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: color var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--gold);
}

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

.nav-link--cta {
    padding: 8px 24px;
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-pill);
    color: var(--gold);
    font-weight: 600;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--gold);
    color: var(--black);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    z-index: var(--z-nav);
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 6px 16px;
    border: 1.5px solid var(--gray-dark);
    border-radius: var(--radius-pill);
    color: var(--gray-light);
    letter-spacing: 1px;
    transition: all var(--transition-base);
}

.lang-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: var(--z-nav);
    gap: 6px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* --------------------------------------------------------------------------
   8. Hero (Product-Centric Centered Layout)
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(30, 58, 138, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

/* Animated light rays emanating from center */
.hero-rays {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-rays::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(201, 168, 76, 0.03) 10deg,
        transparent 20deg,
        transparent 40deg,
        rgba(201, 168, 76, 0.04) 50deg,
        transparent 60deg,
        transparent 80deg,
        rgba(201, 168, 76, 0.03) 90deg,
        transparent 100deg,
        transparent 120deg,
        rgba(201, 168, 76, 0.04) 130deg,
        transparent 140deg,
        transparent 160deg,
        rgba(201, 168, 76, 0.03) 170deg,
        transparent 180deg,
        transparent 200deg,
        rgba(201, 168, 76, 0.04) 210deg,
        transparent 220deg,
        transparent 240deg,
        rgba(201, 168, 76, 0.03) 250deg,
        transparent 260deg,
        transparent 280deg,
        rgba(201, 168, 76, 0.04) 290deg,
        transparent 300deg,
        transparent 320deg,
        rgba(201, 168, 76, 0.03) 330deg,
        transparent 340deg,
        transparent 360deg
    );
    animation: rayRotate 60s linear infinite;
    opacity: 0.6;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px var(--space-lg) 60px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Centered hero layout */
.hero-container--centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 120px var(--space-lg) 60px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

/* Top text area (badge + title above product) */
.hero-top-text {
    text-align: center;
    margin-bottom: var(--space-lg);
}

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

.hero-badge,
.hero-title,
.hero-subtitle,
.hero-cta-group,
.hero-trust {
    opacity: 0;
    transform: translateY(30px);
}

.hero-bottle {
    opacity: 0;
    transform: scale(0.85);
}

body.loaded .hero-badge {
    animation: slideUp 0.8s ease forwards;
    animation-delay: 0s;
}

body.loaded .hero-title {
    animation: slideUp 0.9s ease forwards;
    animation-delay: 0.15s;
}

body.loaded .hero-subtitle {
    animation: slideUp 0.7s ease forwards;
    animation-delay: 0.35s;
}

body.loaded .hero-cta-group {
    animation: slideUp 0.7s ease forwards;
    animation-delay: 0.5s;
}

body.loaded .hero-trust {
    animation: slideUp 0.6s ease forwards;
    animation-delay: 0.65s;
}

body.loaded .hero-bottle {
    animation: zoomIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.3s;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 20px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-pill);
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    background: rgba(201, 168, 76, 0.05);
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray);
    max-width: 500px;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

/* Centered hero CTA group */
.hero-container--centered .hero-cta-group {
    justify-content: center;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* Centered hero trust */
.hero-container--centered .hero-trust {
    justify-content: center;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--gray);
}

.hero-trust-item i {
    color: var(--gold);
    font-size: 0.7rem;
}

.hero-product {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product showcase area (THE STAR) */
.hero-product-showcase {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: var(--radius-circle);
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, rgba(201, 168, 76, 0.05) 40%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: 1;
}

/* Rotating dashed ring around product */
.hero-glow-ring {
    position: absolute;
    width: 550px;
    height: 550px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--radius-circle);
    border: 2px dashed rgba(201, 168, 76, 0.25);
    animation: spin 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.hero-glow-ring--2 {
    width: 650px;
    height: 650px;
    border-color: rgba(201, 168, 76, 0.12);
    border-width: 1.5px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.hero-bottle-wrapper {
    position: relative;
    z-index: 2;
}

.hero-bottle {
    max-width: 500px;
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(201, 168, 76, 0.25)) drop-shadow(0 0 80px rgba(201, 168, 76, 0.1));
    animation: float 6s ease-in-out infinite;
}

/* Floating badges around product */
.hero-float-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(11, 11, 15, 0.85);
    border: 1.5px solid rgba(201, 168, 76, 0.4);
    border-radius: var(--radius-pill);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
    animation: floatBadge 3s ease-in-out infinite;
}

.hero-float-badge i {
    font-size: 0.7rem;
}

.hero-float-badge--1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.hero-float-badge--2 {
    top: 10%;
    right: 5%;
    animation-delay: 0.8s;
}

.hero-float-badge--3 {
    bottom: 20%;
    right: 8%;
    animation-delay: 1.5s;
}

/* Floating price badge */
.hero-price-float {
    position: absolute;
    bottom: 15%;
    left: 5%;
    z-index: 3;
    padding: 14px 22px;
    background: rgba(11, 11, 15, 0.9);
    border: 1.5px solid rgba(201, 168, 76, 0.5);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
}

.hero-price-old {
    font-size: var(--font-size-sm);
    color: var(--gray);
    text-decoration: line-through;
    display: block;
    margin-bottom: 2px;
}

.hero-price-now {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.hero-price-save {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: rgba(220, 53, 69, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(220, 53, 69, 0.3);
    margin-top: 4px;
}

/* Bottom area (subtitle + CTA + trust) */
.hero-bottom {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-bottom .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-bottom .hero-cta-group {
    justify-content: center;
}

.hero-bottom .hero-trust {
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}


/* --------------------------------------------------------------------------
   9. Marquee Bar
   -------------------------------------------------------------------------- */
.marquee-bar {
    background: var(--gold-gradient);
    overflow: hidden;
    padding: 12px 0;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: 2px;
    flex-shrink: 0;
}

.marquee-dot {
    color: var(--black);
    font-size: 0.5rem;
    margin: 0 20px;
    opacity: 0.6;
    flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   9b. Process / Video Section
   -------------------------------------------------------------------------- */
.process-video-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.process-video-bg {
    position: absolute;
    inset: 0;
}

.process-video-bg video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.process-yt-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.process-yt-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180%;
    height: 180%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.process-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 11, 15, 0.5), rgba(11, 11, 15, 0.8));
}

.process-video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 24px;
}

.process-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
}

.process-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: var(--space-md) auto 0;
    border-radius: 2px;
}

.process-text {
    color: #8A8A8A;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: var(--font-size-base);
}

.process-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

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

.process-stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #C9A84C;
    line-height: 1.2;
}

.process-stat-label {
    font-size: 0.875rem;
    color: #8A8A8A;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: var(--space-xs);
}

.process-product-float {
    position: absolute;
    right: 3%;
    bottom: -30px;
    z-index: 1;
}

.process-product-float img {
    max-width: 160px;
    opacity: 0.35;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}


/* --------------------------------------------------------------------------
   10. About Section
   -------------------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: var(--space-md);
}

.about-content .section-title {
    margin-bottom: var(--space-lg);
}

.about-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding-left: var(--space-md);
    border-left: 3px solid var(--gold);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--gray);
    margin-top: var(--space-xs);
}

.about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: var(--radius-circle);
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: 1;
}

.about-image img {
    max-width: 380px;
    width: 100%;
    position: relative;
    z-index: 2;
    animation: float 7s ease-in-out infinite;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5));
}


/* --------------------------------------------------------------------------
   11. Benefits Section
   -------------------------------------------------------------------------- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.benefit-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(201, 168, 76, 0.08);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.section--dark .benefit-card {
    background: var(--bg-tertiary);
}

.benefit-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-circle);
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: var(--font-size-xl);
    color: var(--black);
}

.benefit-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.benefit-desc {
    font-size: var(--font-size-sm);
    color: var(--gray);
    line-height: 1.7;
}

.benefit-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(201, 168, 76, 0.03) 45%,
        rgba(201, 168, 76, 0.08) 50%,
        rgba(201, 168, 76, 0.03) 55%,
        transparent 60%
    );
    transform: translateX(-100%) rotate(0deg);
    transition: none;
    pointer-events: none;
}

.benefit-card:hover .benefit-shine {
    transform: translateX(100%) rotate(0deg);
    transition: transform 0.8s ease;
}


/* --------------------------------------------------------------------------
   11b. Doctors Section
   -------------------------------------------------------------------------- */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.doctor-card {
    background: var(--bg-tertiary);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-top: 3px solid #C9A84C;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
}

/* Inline Video Embed */
.doctor-video-inline {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.doctor-video-thumb {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.doctor-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.doctor-video-thumb:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.doctor-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.doctor-video-thumb:hover .doctor-play-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.doctor-play-overlay i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.9);
    color: #0B0B0F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    padding-left: 4px;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.doctor-video-thumb:hover .doctor-play-overlay i {
    transform: scale(1.15);
    background: #C9A84C;
}

.doctor-video-inline iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.doctor-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.doctor-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.doctor-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A84C, #E8D48B);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doctor-avatar i {
    font-size: 1.35rem;
    color: #0B0B0F;
}

.doctor-meta {
    flex: 1;
}

.doctor-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

.doctor-specialty {
    font-size: 0.875rem;
    color: #8A8A8A;
    margin-top: 2px;
}

.doctor-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #4CAF50;
    margin-top: 6px;
    font-weight: 500;
}

.doctor-verified-badge i {
    font-size: 0.7rem;
}

.doctor-quote-block {
    position: relative;
    margin-bottom: 20px;
    padding-left: 24px;
    flex: 1;
}

.doctor-quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.5rem;
    color: rgba(201, 168, 76, 0.3);
}

.doctor-quote-text {
    font-size: 0.9375rem;
    color: #CCCCCC;
    line-height: 1.8;
    font-style: italic;
}

.doctor-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.doctor-location {
    font-size: 0.8125rem;
    color: #8A8A8A;
    display: flex;
    align-items: center;
    gap: 6px;
}

.doctor-location i {
    color: #C9A84C;
    font-size: 0.75rem;
}

/* doctor-video-btn removed — videos are now inline */


/* --------------------------------------------------------------------------
   12. Ingredients Section
   -------------------------------------------------------------------------- */
.ingredients-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ingredient-main {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.ingredient-circle {
    width: 150px;
    height: 150px;
    position: relative;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredient-circle-inner {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-circle);
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.ingredient-circle-inner i {
    font-size: var(--font-size-3xl);
    color: var(--black);
}

.ingredient-circle-ring {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-circle);
    border: 2px dashed rgba(201, 168, 76, 0.3);
    animation: spin 20s linear infinite;
}

.ingredient-main-name {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.ingredient-main-desc {
    font-size: var(--font-size-base);
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.ingredients-list {
    display: flex;
    gap: var(--space-lg);
    width: 100%;
    max-width: 900px;
}

.ingredient-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(201, 168, 76, 0.08);
    transition: all var(--transition-base);
}

.ingredient-item:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-2px);
}

.ingredient-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-md);
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredient-item-icon i {
    font-size: var(--font-size-lg);
    color: var(--gold);
}

.ingredient-item-info h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.ingredient-item-info p {
    font-size: var(--font-size-sm);
    color: var(--gray);
    line-height: 1.6;
}

.cert-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
    padding: var(--space-md) var(--space-lg);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-pill);
    background: rgba(201, 168, 76, 0.05);
}

.cert-badge i {
    font-size: var(--font-size-xl);
    color: var(--gold);
}

.cert-badge p {
    font-size: var(--font-size-sm);
    color: var(--gold);
    font-weight: 500;
}


/* --------------------------------------------------------------------------
   13. Why Choose / Features Grid
   -------------------------------------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-item {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: rgba(201, 168, 76, 0.03);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-circle);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    transition: all var(--transition-base);
}

.feature-icon i {
    font-size: var(--font-size-lg);
    color: var(--gold);
    transition: all var(--transition-base);
}

.feature-item:hover .feature-icon {
    background: var(--gold);
    transform: scale(1.1);
}

.feature-item:hover .feature-icon i {
    color: var(--black);
}

.feature-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.feature-desc {
    font-size: var(--font-size-sm);
    color: var(--gray);
    line-height: 1.6;
}


/* --------------------------------------------------------------------------
   14. Testimonials
   -------------------------------------------------------------------------- */
.testimonials-slider {
    padding-bottom: 60px;
}

.testimonial-card {
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-top: 3px solid var(--gold);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-lg);
}

.testimonial-stars i {
    color: var(--gold);
    font-size: var(--font-size-sm);
}

.testimonial-text {
    font-size: var(--font-size-base);
    font-style: italic;
    color: var(--gray-light);
    line-height: 1.8;
    flex: 1;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-circle);
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--black);
    flex-shrink: 0;
}

.testimonial-name {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--white);
}

.testimonial-location {
    font-size: var(--font-size-sm);
    color: var(--gray);
}

/* Swiper customization */
.testimonials-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-dark);
    opacity: 1;
    transition: all var(--transition-base);
}

.testimonials-slider .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}


/* --------------------------------------------------------------------------
   15. Order Section
   -------------------------------------------------------------------------- */
.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.order-product {
    position: sticky;
    top: 120px;
}

.order-product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.order-product-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: var(--radius-circle);
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(30px);
    z-index: 1;
}

.order-product-image img {
    max-width: 300px;
    width: 100%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
}

.order-product-info {
    text-align: center;
}

.order-product-name {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.order-product-desc {
    font-size: var(--font-size-sm);
    color: var(--gray);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.order-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.price-current {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--gold);
}

.price-old {
    font-size: var(--font-size-lg);
    color: var(--gray);
    text-decoration: line-through;
}

.price-badge {
    font-size: var(--font-size-xs);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: rgba(220, 53, 69, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.order-quantity {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.qty-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    color: var(--gold);
    background: transparent;
    transition: all var(--transition-base);
    cursor: pointer;
}

.qty-btn:hover {
    background: rgba(201, 168, 76, 0.15);
}

.qty-input {
    width: 60px;
    height: 44px;
    text-align: center;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--gold);
    background: transparent;
    border-left: 1px solid rgba(201, 168, 76, 0.15);
    border-right: 1px solid rgba(201, 168, 76, 0.15);
}

/* Remove number input spinners */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input[type="number"] {
    -moz-appearance: textfield;
}

.order-features {
    text-align: left;
    margin-top: var(--space-lg);
}

.order-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: var(--font-size-sm);
    color: var(--gray);
}

.order-features li i {
    color: var(--gold);
    font-size: var(--font-size-sm);
}

/* Order Form */
.order-form-container {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid rgba(201, 168, 76, 0.08);
}

.form-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.form-title i {
    color: var(--gold);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--gray-light);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-tertiary);
    color: var(--white);
    border: 1.5px solid rgba(201, 168, 76, 0.08);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-tertiary);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.form-row {
    display: flex;
    gap: var(--space-md);
}

.form-row .form-group {
    flex: 1;
}

/* Order Summary */
.order-summary {
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding-top: var(--space-lg);
    margin-top: var(--space-md);
    margin-bottom: var(--space-lg);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    font-size: var(--font-size-sm);
    color: var(--gray);
}

.summary-total {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--white);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    margin-top: var(--space-sm);
}

.summary-total span:last-child {
    color: var(--gold);
}

/* Custom Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--gold);
    margin-top: 2px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: var(--font-size-sm);
    color: var(--gray);
    cursor: pointer;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Order Button */
.btn-order {
    width: 100%;
    padding: 18px 32px;
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
}

.btn-order .btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.btn-loading {
    display: none;
}

.btn-order.loading .btn-text {
    display: none;
}

.btn-order.loading .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    font-size: var(--font-size-xs);
    color: var(--gray);
}

.payment-trust i {
    color: var(--gray);
}


/* --------------------------------------------------------------------------
   16. Success Modal
   -------------------------------------------------------------------------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-spring);
    z-index: 2;
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    margin-bottom: var(--space-lg);
}

.modal-icon i {
    font-size: 4rem;
    color: var(--gold);
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.modal-content p {
    font-size: var(--font-size-base);
    color: var(--gray);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.modal-order-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: var(--font-size-sm);
}

.modal-order-number span {
    color: var(--gray);
}

.modal-order-number strong {
    color: var(--gold);
    font-size: var(--font-size-base);
    letter-spacing: 1px;
}


/* --------------------------------------------------------------------------
   17. FAQ Section
   -------------------------------------------------------------------------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    margin-bottom: var(--space-xs);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--white);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-base);
    gap: var(--space-md);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    font-size: var(--font-size-sm);
    color: var(--gold);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    font-size: var(--font-size-sm);
    color: var(--gray);
    line-height: 1.8;
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}


/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: var(--space-2xl) 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-logo span {
    color: var(--gold);
}

.footer-desc {
    font-size: var(--font-size-sm);
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 300px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-circle);
    border: 1.5px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: var(--font-size-sm);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer-links ul li {
    margin-bottom: var(--space-sm);
}

.footer-links ul li a {
    font-size: var(--font-size-sm);
    color: var(--gray);
    transition: color var(--transition-base);
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-sm);
    color: var(--gray);
}

.footer-contact ul li i {
    color: var(--gold);
    font-size: var(--font-size-sm);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    font-size: var(--font-size-xs);
    color: var(--gray);
    flex-wrap: wrap;
    gap: var(--space-md);
}

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

.footer-legal a {
    color: var(--gray);
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-legal a + a::before {
    content: '|';
    margin-right: var(--space-sm);
    color: var(--gray-dark);
}


/* --------------------------------------------------------------------------
   19. Back to Top
   -------------------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-circle);
    background: var(--gold-gradient);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-gold);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}


/* --------------------------------------------------------------------------
   20. Keyframe Animations
   -------------------------------------------------------------------------- */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.25;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes progress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

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

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
}

@keyframes rayRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

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


/* --------------------------------------------------------------------------
   21. Scroll Animations (data-animate)
   -------------------------------------------------------------------------- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: none;
}

[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
}

[data-animate="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
}

[data-animate="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
}

[data-animate="fade-up"].animated,
[data-animate="fade-right"].animated,
[data-animate="fade-left"].animated,
[data-animate="zoom-in"].animated {
    opacity: 1;
    transform: none;
}


/* --------------------------------------------------------------------------
   22. RTL Support
   -------------------------------------------------------------------------- */
[dir="rtl"] {
    direction: rtl;
}

/* Section tag border flip */
[dir="rtl"] .section-tag {
    border-left: none;
    border-right: 3px solid var(--gold);
    padding-left: 0;
    padding-right: var(--space-md);
}

/* About title underline for RTL */
[dir="rtl"] .about-content .section-title::after {
    margin-left: auto;
    margin-right: 0;
}

/* Stat items border flip */
[dir="rtl"] .stat-item {
    border-left: none;
    border-right: 3px solid var(--gold);
    padding-left: 0;
    padding-right: var(--space-md);
}

/* Nav & Hero Layout */
[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-cta-group .btn-primary i {
    transform: scaleX(-1);
}

[dir="rtl"] .hero-cta-group .btn-primary:hover i {
    transform: scaleX(-1) translateX(4px);
}

/* Marquee direction */
[dir="rtl"] .marquee-track {
    animation-direction: reverse;
}

/* FAQ question text align */
[dir="rtl"] .faq-question {
    text-align: right;
}

/* Back to top positioning */
[dir="rtl"] .back-to-top {
    right: auto;
    left: 30px;
}

/* Form select arrow position */
[dir="rtl"] .form-group select {
    background-position: left 16px center;
    padding-right: 16px;
    padding-left: 40px;
}

/* Order features list */
[dir="rtl"] .order-features {
    text-align: right;
}

/* Footer legal separators */
[dir="rtl"] .footer-legal a + a::before {
    margin-right: 0;
    margin-left: var(--space-sm);
}

/* Animate direction flips */
[dir="rtl"] [data-animate="fade-right"] {
    transform: translateX(30px);
}

[dir="rtl"] [data-animate="fade-left"] {
    transform: translateX(-30px);
}

[dir="rtl"] [data-animate="fade-right"].animated,
[dir="rtl"] [data-animate="fade-left"].animated {
    transform: none;
}

/* Footer contact items */
[dir="rtl"] .footer-contact ul li {
    flex-direction: row-reverse;
    text-align: right;
}

/* Nav toggle for mobile RTL */
[dir="rtl"] .nav-actions {
    flex-direction: row-reverse;
}

/* Order features icon alignment */
[dir="rtl"] .order-features li {
    flex-direction: row-reverse;
}

/* Ingredient items */
[dir="rtl"] .ingredient-item {
    flex-direction: row-reverse;
    text-align: right;
}

/* Testimonial author */
[dir="rtl"] .testimonial-author {
    flex-direction: row-reverse;
    text-align: right;
}

/* Hero trust items */
[dir="rtl"] .hero-trust-item {
    flex-direction: row-reverse;
}

/* Form checkbox */
[dir="rtl"] .form-checkbox {
    flex-direction: row-reverse;
}

/* Form title icon */
[dir="rtl"] .form-title {
    flex-direction: row-reverse;
}

/* Modal order number */
[dir="rtl"] .modal-order-number {
    flex-direction: row-reverse;
}

/* Cert badge */
[dir="rtl"] .cert-badge {
    flex-direction: row-reverse;
}

/* Payment trust */
[dir="rtl"] .payment-trust {
    flex-direction: row-reverse;
}

/* Hero badge */
[dir="rtl"] .hero-badge {
    flex-direction: row-reverse;
}

/* RTL: Hero float badges - mirror positions */
[dir="rtl"] .hero-float-badge--1 {
    left: auto;
    right: 5%;
}

[dir="rtl"] .hero-float-badge--2 {
    right: auto;
    left: 5%;
}

[dir="rtl"] .hero-float-badge--3 {
    right: auto;
    left: 8%;
}

/* RTL: Hero price float - flip from left to right */
[dir="rtl"] .hero-price-float {
    left: auto;
    right: 5%;
}

/* RTL: Doctor card header */
[dir="rtl"] .doctor-card-header {
    flex-direction: row-reverse;
    text-align: right;
}

/* RTL: Doctor quote block */
[dir="rtl"] .doctor-quote-block {
    padding-left: 0;
    padding-right: 24px;
}

[dir="rtl"] .doctor-quote-icon {
    left: auto;
    right: 0;
}

/* RTL: Doctor footer */
[dir="rtl"] .doctor-footer {
    flex-direction: row-reverse;
}

/* RTL: Doctor location */
[dir="rtl"] .doctor-location {
    flex-direction: row-reverse;
}

/* RTL: Process product float */
[dir="rtl"] .process-product-float {
    right: auto;
    left: 5%;
}

/* RTL: btn-primary--xl icon */
[dir="rtl"] .btn-primary--xl i {
    transform: scaleX(-1);
}

[dir="rtl"] .btn-primary--xl:hover i {
    transform: scaleX(-1) translateX(4px);
}

/* RTL: btn-primary--xl price separator */
[dir="rtl"] .btn-primary--xl .btn-price {
    margin-left: 0;
    margin-right: 8px;
    padding-left: 0;
    padding-right: 8px;
    border-left: none;
    border-right: 1px solid rgba(11, 11, 15, 0.2);
}


/* --------------------------------------------------------------------------
   23. Responsive - Tablet (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: var(--space-xl);
    }

    /* Navbar */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        background: rgba(11, 11, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-xl);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        z-index: calc(var(--z-nav) - 1);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: var(--font-size-2xl);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link--cta {
        font-size: var(--font-size-lg);
    }

    /* RTL nav menu */
    [dir="rtl"] .nav-menu {
        flex-direction: column;
    }

    /* Hero */
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        order: 1;
    }

    .hero-product {
        order: 0;
        margin-bottom: var(--space-xl);
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-bottle {
        max-width: 380px;
    }

    .hero-glow {
        width: 400px;
        height: 400px;
    }

    .hero-glow-ring {
        width: 450px;
        height: 450px;
    }

    .hero-glow-ring--2 {
        width: 550px;
        height: 550px;
    }

    .hero-float-badge {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .about-content .section-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        max-width: 300px;
    }

    .about-stats {
        justify-content: center;
    }

    /* Benefits & Features */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Doctors */
    .doctors-grid {
        grid-template-columns: 1fr;
    }

    /* Process/Video */
    .process-stats {
        gap: 30px;
    }

    /* Ingredients */
    .ingredients-list {
        flex-direction: column;
        align-items: center;
    }

    .ingredient-item {
        max-width: 500px;
        width: 100%;
    }

    /* Order */
    .order-grid {
        grid-template-columns: 1fr;
    }

    .order-product {
        position: static;
    }

    .order-product-image img {
        max-width: 250px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-desc {
        max-width: 100%;
    }
}


/* --------------------------------------------------------------------------
   24. Responsive - Mobile (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --space-3xl: 70px;
    }

    .section-container {
        padding: 0 var(--space-md);
    }

    .section-subtitle {
        font-size: var(--font-size-base);
    }

    /* Hero */
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .hero-bottle {
        max-width: 300px;
    }

    .hero-glow {
        width: 350px;
        height: 350px;
    }

    .hero-glow-ring {
        width: 400px;
        height: 400px;
    }

    .hero-glow-ring--2 {
        width: 480px;
        height: 480px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-price-float {
        position: relative;
        bottom: auto;
        left: auto;
        display: inline-block;
        margin-top: var(--space-md);
    }

    .btn-primary--xl {
        font-size: 1rem;
        padding: 16px 32px;
    }

    /* Doctors */
    .doctors-grid {
        grid-template-columns: 1fr;
    }

    /* Process/Video */
    .process-video-section {
        min-height: 500px;
    }

    .process-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .process-product-float {
        display: none;
    }

    /* Benefits & Features */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    /* About stats */
    .about-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    /* Ingredients */
    .ingredient-circle {
        width: 120px;
        height: 120px;
    }

    .ingredient-circle-inner {
        width: 80px;
        height: 80px;
    }

    .ingredient-circle-inner i {
        font-size: var(--font-size-2xl);
    }

    /* Order form */
    .order-form-container {
        padding: var(--space-lg);
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .order-product-image img {
        max-width: 200px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }

    .footer-legal {
        justify-content: center;
    }

    /* Testimonials */
    .testimonial-card {
        padding: var(--space-lg);
    }

    /* FAQ */
    .faq-question {
        font-size: var(--font-size-sm);
        padding: var(--space-md) 0;
    }
}


/* --------------------------------------------------------------------------
   25. Responsive - Small Mobile (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    :root {
        --space-3xl: 60px;
    }

    .section-container {
        padding: 0 var(--space-md);
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }

    .hero-container {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    .hero-bottle {
        max-width: 250px;
    }

    .hero-glow {
        width: 280px;
        height: 280px;
    }

    .hero-glow-ring {
        display: none;
    }

    .hero-glow-ring--2 {
        display: none;
    }

    .benefit-card {
        padding: var(--space-lg);
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon i {
        font-size: var(--font-size-base);
    }

    .order-price .price-current {
        font-size: var(--font-size-2xl);
    }

    .order-price .price-old {
        font-size: var(--font-size-base);
    }

    .btn {
        padding: 12px 24px;
        font-size: var(--font-size-sm);
    }

    .btn-order {
        padding: 16px 24px;
        font-size: var(--font-size-base);
    }

    .nav-link--cta {
        padding: 6px 18px;
        font-size: var(--font-size-sm);
    }

    .marquee-item {
        font-size: var(--font-size-xs);
        letter-spacing: 1px;
    }

    .marquee-dot {
        margin: 0 12px;
    }

    .stat-number {
        font-size: var(--font-size-2xl);
    }

    .modal-content {
        padding: 32px var(--space-lg);
    }

    .modal-icon i {
        font-size: 3rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 20px;
        right: 20px;
    }

    [dir="rtl"] .back-to-top {
        right: auto;
        left: 20px;
    }

    /* About image on small screens */
    .about-image img {
        max-width: 240px;
    }

    .about-image-glow {
        width: 250px;
        height: 250px;
    }

    /* Process stats */
    .process-stat-num {
        font-size: 2rem;
    }

    /* Doctor card */
    .doctor-card {
        padding: 24px;
    }

    /* btn-primary--xl small mobile */
    .btn-primary--xl {
        font-size: 0.9375rem;
        padding: 14px 28px;
    }
}


/* --------------------------------------------------------------------------
   26. Print Styles
   -------------------------------------------------------------------------- */
@media print {
    .navbar,
    .back-to-top,
    .hero-particles,
    .hero-glow,
    .hero-glow-ring,
    .hero-rays,
    .preloader,
    .hero-scroll,
    .marquee-bar,
    .process-video-bg {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .section {
        padding: 30px 0;
    }
}


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

    html {
        scroll-behavior: auto;
    }

    .hero-bottle {
        animation: none;
    }

    .about-image img {
        animation: none;
    }

    .marquee-track {
        animation: none;
    }

    .ingredient-circle-ring {
        animation: none;
    }

    .hero-glow-ring {
        animation: none;
    }

    .hero-rays::before {
        animation: none;
    }

    .hero-float-badge {
        animation: none;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-modal.active {
    visibility: visible;
    opacity: 1;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    transform: scale(0.85) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .video-modal-content {
    transform: scale(1) translateY(0);
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(201, 168, 76, 0.5);
    background: rgba(11, 11, 15, 0.8);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.video-modal-close:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.video-modal-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.video-modal-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        top: -44px;
        right: 4px;
    }

    .process-yt-wrap iframe {
        width: 300%;
        height: 300%;
    }
}
