/* ============================================
   AURENYX™ — Premium Smartwatch Landing Page
   Design System & Styles
   ============================================ */

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

/* CSS Custom Properties */
:root {
    /* Brand Colors */
    --aurenyx-gold: #C9A84C;
    --aurenyx-gold-light: #E8D48B;
    --aurenyx-gold-dark: #A07E2E;
    --aurenyx-cyan: #00D4FF;
    --aurenyx-cyan-dark: #0099CC;
    --aurenyx-cyan-glow: rgba(0, 212, 255, 0.3);

    /* Backgrounds */
    --bg-primary: #0A0A0F;
    --bg-secondary: #111118;
    --bg-tertiary: #16161F;
    --bg-card: rgba(22, 22, 31, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);
    --bg-light: #F8F7F4;
    --bg-light-card: #FFFFFF;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.45);
    --text-dark: #1A1A2E;
    --text-dark-secondary: #4A4A6A;

    /* Borders */
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(201, 168, 76, 0.3);

    /* Spacing */
    --section-padding: clamp(60px, 10vw, 120px);
    --container-width: 1280px;
    --container-narrow: 960px;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Transitions */
    --ease-premium: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-glow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
    --shadow-glow-cyan: 0 0 40px rgba(0, 212, 255, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-smooth);
}

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

/* ============ SCROLL PROGRESS BAR ============ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--aurenyx-cyan), var(--aurenyx-gold));
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ============ CONTAINER ============ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: var(--container-narrow);
}

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
    background: linear-gradient(90deg, var(--aurenyx-gold-dark), var(--aurenyx-gold), var(--aurenyx-gold-dark));
    padding: 10px 20px;
    text-align: center;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

.announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.announcement-bar__text {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--bg-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.announcement-bar__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-primary);
    color: var(--aurenyx-gold);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Promotional content label */
.promo-label {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 6px 20px;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-glass);
}

/* ============ TICKER BAR ============ */
.ticker-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
    padding: 12px 0;
    position: relative;
}

.ticker-bar__track {
    display: flex;
    animation: ticker-scroll 40s linear infinite;
    width: max-content;
}

.ticker-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.ticker-bar__item span.ticker-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--aurenyx-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

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

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-smooth);
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 10px 0;
}

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

.nav__logo {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--aurenyx-gold-light), var(--aurenyx-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--aurenyx-gold);
    transition: width 0.3s var(--ease-smooth);
}

.nav__links a:hover {
    color: var(--text-primary);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--aurenyx-gold), var(--aurenyx-gold-dark));
    color: var(--bg-primary) !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.nav__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav__mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease-smooth);
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
                var(--bg-primary);
}

.hero__bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.hero__bg-glow--cyan {
    top: 20%;
    left: -10%;
    background: var(--aurenyx-cyan);
    animation: glow-pulse 6s ease-in-out infinite alternate;
}

.hero__bg-glow--gold {
    bottom: 10%;
    right: -10%;
    background: var(--aurenyx-gold);
    animation: glow-pulse 8s ease-in-out infinite alternate-reverse;
}

@keyframes glow-pulse {
    0% { opacity: 0.1; transform: scale(1); }
    100% { opacity: 0.2; transform: scale(1.1); }
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {
    opacity: 0;
    transform: translateY(40px);
    animation: hero-reveal 1s var(--ease-premium) 0.3s forwards;
}

@keyframes hero-reveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-glass);
    border: 1px solid var(--border-gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--aurenyx-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero__badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--aurenyx-gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero__title .gradient-text {
    background: linear-gradient(135deg, var(--aurenyx-gold-light), var(--aurenyx-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
    max-width: 520px;
}

.hero__micro {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-tertiary);
}

.hero__trust-item svg {
    width: 16px;
    height: 16px;
    fill: var(--aurenyx-gold);
    flex-shrink: 0;
}

.hero__disclaimer {
    margin-top: 24px;
    font-size: 11px;
    color: var(--text-tertiary);
    max-width: 500px;
    line-height: 1.6;
    padding: 10px 16px;
    border-left: 2px solid var(--border-gold);
    background: var(--bg-glass);
    border-radius: 0 8px 8px 0;
}

/* Hero Product Image */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: hero-visual-reveal 1.2s var(--ease-premium) 0.6s forwards;
}

@keyframes hero-visual-reveal {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__product-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero__product-img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    animation: product-float 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

@keyframes product-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero__product-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
    animation: glow-rotate 10s linear infinite;
    border-radius: 50%;
}

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

/* Rotating highlight ring */
.hero__product-ring {
    position: absolute;
    inset: 5%;
    border: 2px solid transparent;
    border-top-color: var(--aurenyx-gold);
    border-right-color: var(--aurenyx-cyan);
    border-radius: 50%;
    z-index: 3;
    animation: ring-rotate 8s linear infinite;
    opacity: 0.3;
}

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

.hero__discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FF4444, #CC0000);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    z-index: 10;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

.hero__discount-badge .amount {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.hero__discount-badge .label {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s;
}

.btn--primary {
    background: linear-gradient(135deg, var(--aurenyx-gold), var(--aurenyx-gold-dark));
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn--primary::before {
    background: linear-gradient(135deg, var(--aurenyx-gold-light), var(--aurenyx-gold));
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.5);
}

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

.btn--secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: var(--bg-glass-hover);
    border-color: var(--aurenyx-gold);
    transform: translateY(-2px);
}

.btn--glow {
    animation: btn-glow 3s ease-in-out infinite;
}

@keyframes btn-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3); }
    50% { box-shadow: 0 4px 40px rgba(201, 168, 76, 0.6), 0 0 60px rgba(201, 168, 76, 0.2); }
}

.btn--large {
    padding: 20px 48px;
    font-size: 16px;
}

.btn--dark {
    background: var(--bg-primary);
    color: var(--aurenyx-gold);
    border: 1px solid var(--border-gold);
}

.btn--dark:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

/* ============ SECTION COMMON ============ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

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

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

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

.section--gradient {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section__overline {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--aurenyx-gold);
    margin-bottom: 16px;
    display: block;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section__subtitle {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section--light .section__subtitle {
    color: var(--text-dark-secondary);
}

/* ============ SCROLL REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-premium);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--left {
    transform: translateX(-60px);
}

.reveal--left.visible {
    transform: translateX(0);
}

.reveal--right {
    transform: translateX(60px);
}

.reveal--right.visible {
    transform: translateX(0);
}

.reveal--scale {
    transform: scale(0.9);
}

.reveal--scale.visible {
    transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============ VALUE PROPOSITION ============ */
.value-prop__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.value-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--aurenyx-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-glow-gold);
    background: var(--bg-glass-hover);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(0, 212, 255, 0.1));
    border: 1px solid var(--border-gold);
    font-size: 28px;
}

.value-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.value-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.value-detail__img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

.value-detail__img img {
    width: 100%;
    transition: transform 0.6s var(--ease-smooth);
}

.value-detail__img:hover img {
    transform: scale(1.03);
}

.value-detail__content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.value-detail__content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ============ LIFESTYLE SECTION ============ */
.lifestyle__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lifestyle__text h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.lifestyle__text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.lifestyle__text .highlight {
    color: var(--aurenyx-gold);
    font-weight: 500;
}

.lifestyle__img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    position: relative;
}

.lifestyle__img img {
    width: 100%;
    transition: transform 0.6s var(--ease-smooth);
}

.lifestyle__img:hover img {
    transform: scale(1.02);
}

/* Image shimmer */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* ============ FEATURE GRID ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s var(--ease-smooth);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--aurenyx-cyan), var(--aurenyx-gold));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-smooth);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--bg-glass-hover);
    box-shadow: var(--shadow-card);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card__icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============ DEEP DIVE FEATURE BLOCKS ============ */
.deep-dive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
}

.deep-dive--reverse {
    direction: rtl;
}

.deep-dive--reverse > * {
    direction: ltr;
}

.deep-dive__img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    position: relative;
}

.deep-dive__img img {
    width: 100%;
    transition: transform 0.6s var(--ease-smooth);
}

.deep-dive__img:hover img {
    transform: scale(1.03);
}

.deep-dive__content {
    padding: 20px 0;
}

.deep-dive__overline {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aurenyx-cyan);
    margin-bottom: 16px;
}

.deep-dive__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.deep-dive__text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.deep-dive__list {
    list-style: none;
    margin-top: 24px;
}

.deep-dive__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--text-secondary);
}

.deep-dive__list li::before {
    content: '✦';
    color: var(--aurenyx-gold);
    font-size: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ============ WHO IT'S FOR ============ */
.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.who-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s var(--ease-smooth);
    backdrop-filter: blur(10px);
}

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

.who-card__icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.who-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.who-card__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============ COMPARISON TABLE ============ */
.comparison-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
}

.comparison-table thead th {
    background: var(--bg-tertiary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    position: sticky;
    top: 0;
}

.comparison-table thead th:first-child {
    text-align: left;
    border-radius: 12px 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 12px 0 0;
}

.comparison-table thead th.highlight-col {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(0, 212, 255, 0.1));
    border-top: 2px solid var(--aurenyx-gold);
    color: var(--aurenyx-gold);
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.comparison-table tbody tr {
    transition: background 0.2s;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table .check {
    color: var(--aurenyx-gold);
    font-size: 18px;
}

.comparison-table .cross {
    color: rgba(255, 255, 255, 0.2);
    font-size: 18px;
}

.comparison-table .partial {
    color: var(--aurenyx-cyan);
    font-size: 14px;
}

.comparison-table td.highlight-col {
    background: rgba(201, 168, 76, 0.03);
}

/* ============ TESTIMONIALS ============ */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s var(--ease-premium);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 36px 28px;
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--aurenyx-gold);
    font-size: 16px;
}

.testimonial-card__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aurenyx-gold), var(--aurenyx-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--bg-primary);
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 14px;
}

.testimonial-card__location {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* ============ GALLERY ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1;
    transition: all 0.4s var(--ease-smooth);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-elevated);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__label {
    font-size: 13px;
    font-weight: 600;
    color: white;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox__img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: var(--shadow-elevated);
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ============ SHOPIFY-STYLE ORDER SECTION ============ */
.product-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery__main {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--bg-tertiary);
    aspect-ratio: 1;
    position: relative;
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-smooth);
}

.product-gallery__main:hover img {
    transform: scale(1.05);
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.product-gallery__thumb {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s var(--ease-smooth);
    aspect-ratio: 1;
}

.product-gallery__thumb.active {
    border-color: var(--aurenyx-gold);
}

.product-gallery__thumb:hover {
    border-color: var(--aurenyx-gold);
    opacity: 0.9;
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info {
    padding: 20px 0;
}

.product-info__brand {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aurenyx-gold);
    margin-bottom: 8px;
}

.product-info__title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-info__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.product-info__stars {
    color: var(--aurenyx-gold);
    font-size: 16px;
}

.product-info__rating-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.product-info__price-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.product-info__price {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
}

.product-info__price-old {
    font-size: 22px;
    color: var(--text-tertiary);
    text-decoration: line-through;
}

.product-info__discount-label {
    background: linear-gradient(135deg, #FF4444, #CC0000);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    animation: badge-pulse 2s ease-in-out infinite;
}

.product-info__tax {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 24px;
}

.product-info__summary {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-glass);
}

/* Key Benefits */
.product-benefits {
    list-style: none;
    margin-bottom: 28px;
}

.product-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.product-benefits li .benefit-check {
    color: var(--aurenyx-gold);
    font-size: 16px;
    flex-shrink: 0;
}

/* Selectors */
.product-selector {
    margin-bottom: 24px;
}

.product-selector__label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.color-options {
    display: flex;
    gap: 12px;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.color-option.active {
    border-color: var(--aurenyx-gold);
    box-shadow: 0 0 0 2px var(--bg-primary), 0 0 0 4px var(--aurenyx-gold);
}

.color-option:hover {
    transform: scale(1.1);
}

.strap-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.strap-option {
    padding: 10px 20px;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
}

.strap-option.active {
    border-color: var(--aurenyx-gold);
    color: var(--aurenyx-gold);
    background: rgba(201, 168, 76, 0.1);
}

.strap-option:hover {
    border-color: var(--aurenyx-gold);
}

/* Quantity Selector */
.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 28px;
}

.qty-selector__btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.qty-selector__btn:hover {
    background: var(--bg-glass-hover);
}

.qty-selector__value {
    width: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    background: transparent;
    color: var(--text-primary);
    border: none;
    border-left: 1px solid var(--border-glass);
    border-right: 1px solid var(--border-glass);
    height: 44px;
    font-family: var(--font-body);
}

/* Purchase Buttons */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-add-cart {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--aurenyx-gold), var(--aurenyx-gold-dark));
    color: var(--bg-primary);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn-add-cart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-add-cart:active::after {
    width: 300px;
    height: 300px;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-buy-now {
    width: 100%;
    padding: 18px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.btn-buy-now:hover {
    border-color: var(--aurenyx-gold);
    background: var(--bg-secondary);
}

/* Trust/Security */
.product-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.product-trust__item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-tertiary);
}

.product-trust__item svg {
    width: 16px;
    height: 16px;
    fill: var(--text-tertiary);
}

/* Product Meta */
.product-meta {
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
    margin-bottom: 20px;
}

.product-meta__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.product-meta__item svg {
    width: 18px;
    height: 18px;
    fill: var(--aurenyx-gold);
    flex-shrink: 0;
}

.product-meta__stock {
    color: #4CAF50;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-meta__stock .stock-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

/* Product Accordion */
.product-accordion {
    border-top: 1px solid var(--border-glass);
}

.product-accordion__item {
    border-bottom: 1px solid var(--border-glass);
}

.product-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: var(--font-body);
    transition: color 0.3s;
}

.product-accordion__trigger:hover {
    color: var(--aurenyx-gold);
}

.product-accordion__trigger .accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s var(--ease-smooth);
}

.product-accordion__trigger .accordion-icon::before,
.product-accordion__trigger .accordion-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform 0.3s var(--ease-smooth);
}

.product-accordion__trigger .accordion-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-accordion__trigger .accordion-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-accordion__item.active .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.product-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth), padding 0.4s;
}

.product-accordion__item.active .product-accordion__content {
    max-height: 500px;
    padding-bottom: 20px;
}

.product-accordion__content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.trust-badge__icon {
    font-size: 28px;
}

.trust-badge__text {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============ CHECKOUT FORM ============ */
.checkout-section {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.checkout-section__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}

.checkout-section__subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.checkout-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.form-group label .required {
    color: #FF4444;
}

.form-input {
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s;
    outline: none;
}

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

.form-input::placeholder {
    color: var(--text-tertiary);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 12L2 6h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

/* Order Summary in checkout */
.order-summary {
    grid-column: 1 / -1;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    margin-top: 12px;
}

.order-summary__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.order-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.order-summary__row--total {
    border-top: 1px solid var(--border-glass);
    margin-top: 8px;
    padding-top: 16px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
}

.order-submit {
    grid-column: 1 / -1;
    margin-top: 8px;
}

.checkout-trust {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 8px;
}

.checkout-payment-icons {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 0;
    font-size: 28px;
    color: var(--text-tertiary);
}

/* Thank you message */
.thank-you-message {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.thank-you-message.visible {
    display: block;
    animation: hero-reveal 0.6s var(--ease-premium);
}

.thank-you-message h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--aurenyx-gold);
}

.thank-you-message p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

/* ============ TRUST/SHIPPING/RETURNS ============ */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.trust-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s var(--ease-smooth);
    backdrop-filter: blur(10px);
}

.trust-item:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
}

.trust-item__icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.trust-item__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 10px;
}

.trust-item__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.faq-item {
    border-bottom: 1px solid var(--border-glass);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    cursor: pointer;
    background: transparent;
    border: none;
    text-align: left;
    transition: color 0.3s;
}

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

.faq-question .faq-icon {
    font-size: 24px;
    transition: transform 0.3s var(--ease-smooth);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth);
}

.faq-answer__inner {
    padding-bottom: 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

/* ============ FINAL CTA ============ */
.final-cta {
    text-align: center;
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.final-cta__text {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.final-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.final-cta__trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.final-cta__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-tertiary);
}

.final-cta__disclaimer {
    font-size: 11px;
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 16px;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    background: var(--bg-glass);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    padding: 60px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer__brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--aurenyx-gold-light), var(--aurenyx-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer__brand-text {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.7;
    max-width: 300px;
}

.footer__col-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 14px;
    color: var(--text-tertiary);
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--aurenyx-gold);
}

.footer__bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__copyright {
    font-size: 13px;
    color: var(--text-tertiary);
}

.footer__disclaimer {
    font-size: 11px;
    color: var(--text-tertiary);
    max-width: 500px;
    line-height: 1.6;
    text-align: right;
}

/* ============ STICKY ADD TO CART ============ */
.sticky-cart {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glass);
    padding: 12px 24px;
    z-index: 999;
    transition: bottom 0.4s var(--ease-smooth);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-cart.visible {
    bottom: 0;
}

.sticky-cart__info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-cart__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
}

.sticky-cart__price {
    font-weight: 800;
    color: var(--aurenyx-gold);
    font-size: 18px;
}

.sticky-cart__btn {
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--aurenyx-gold), var(--aurenyx-gold-dark));
    color: var(--bg-primary);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.sticky-cart__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

/* ============ COUNTERS ============ */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    padding: 40px 0;
}

.counter-item__number {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--aurenyx-gold-light), var(--aurenyx-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.counter-item__label {
    font-size: 14px;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
}

/* ============ DISCLAIMER BAR ============ */
.disclaimer-bar {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 16px 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-tertiary);
    line-height: 1.7;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero__content {
        order: 1;
    }

    .hero__visual {
        order: 0;
    }

    .hero__subtitle {
        margin: 0 auto 16px;
    }

    .hero__micro {
        margin: 0 auto 36px;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__disclaimer {
        margin: 24px auto 0;
    }

    .hero__product-wrap {
        max-width: 350px;
        margin: 0 auto;
    }

    .value-prop__grid {
        grid-template-columns: 1fr;
    }

    .value-detail,
    .lifestyle__content,
    .deep-dive {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .deep-dive--reverse {
        direction: ltr;
    }

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

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

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

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .product-page {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }

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

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

    .nav__links {
        display: none;
    }

    .nav__mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .checkout-form {
        grid-template-columns: 1fr;
    }

    .product-gallery__thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__disclaimer {
        text-align: center;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
    }

    .sticky-cart__name {
        display: none;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .counter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .announcement-bar__inner {
        flex-direction: column;
        gap: 8px;
    }

    .product-info__price-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .checkout-section {
        padding: 24px 16px;
    }

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

/* ============ MOBILE MENU ============ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.98);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-smooth);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-primary);
    cursor: pointer;
    background: transparent;
    border: none;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--aurenyx-gold);
}

/* ============ LEGAL PAGES ============ */
.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
}

.legal-page .last-updated {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-page li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--aurenyx-gold);
    text-decoration: underline;
}

/* ============ ANIMATIONS CASCADE ============ */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slide-in-left {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Hotspot animations */
.hotspot {
    position: absolute;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 10;
}

.hotspot__dot {
    width: 12px;
    height: 12px;
    background: var(--aurenyx-gold);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hotspot__pulse {
    position: absolute;
    inset: 0;
    border: 2px solid var(--aurenyx-gold);
    border-radius: 50%;
    animation: hotspot-pulse 2s ease-out infinite;
}

@keyframes hotspot-pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.hotspot__tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--aurenyx-gold);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    margin-bottom: 8px;
}

.hotspot:hover .hotspot__tooltip {
    opacity: 1;
}

/* ============ PARALLAX ============ */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* ============ PRINT ============ */
@media print {
    .nav, .sticky-cart, .scroll-progress, .announcement-bar, .ticker-bar, .promo-label {
        display: none !important;
    }
}
