/* ==========================================================================
   GLUCOMAX LUXURY DARK & GOLD THEME (VIP WHITEHAT HEALTHCARE)
   ========================================================================== */

:root {
    --bg-dark: #07090d;
    --bg-surface: #0e121a;
    --bg-card: rgba(20, 26, 38, 0.7);
    --bg-card-hover: rgba(26, 34, 50, 0.85);
    --gold-100: #fff4d1;
    --gold-300: #fce0ad;
    --gold-500: #dfba47;
    --gold-600: #c59b27;
    --gold-700: #a2790d;
    --gold-grad: linear-gradient(135deg, #fce0ad 0%, #dfba47 50%, #a2790d 100%);
    --gold-grad-hover: linear-gradient(135deg, #ffffff 0%, #fce0ad 30%, #dfba47 100%);
    --text-primary: #f5f6fa;
    --text-secondary: #a3adc2;
    --text-muted: #6e7a94;
    --border-gold: rgba(223, 186, 71, 0.25);
    --border-gold-strong: rgba(223, 186, 71, 0.6);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --accent-blue: #2d70f7;
    --success-green: #2ecc71;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --glow-gold: 0 0 25px rgba(223, 186, 71, 0.35);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--gold-300);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.gold-gradient-text {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-500);
    background: rgba(223, 186, 71, 0.1);
    border: 1px solid var(--border-gold);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-500);
    box-shadow: 0 0 8px var(--gold-500);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 50px auto;
}

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

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-gold {
    background: var(--gold-grad);
    color: #121620;
    box-shadow: var(--glow-gold), 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-gold:hover {
    background: var(--gold-grad-hover);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(223, 186, 71, 0.6), 0 12px 28px rgba(0,0,0,0.5);
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
}

.btn-gold:hover::after {
    left: 100%;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-300);
    border: 1px solid var(--gold-500);
}

.btn-outline-gold:hover {
    background: rgba(223, 186, 71, 0.15);
    color: #fff;
    border-color: #fff;
}

.btn-lg {
    padding: 20px 44px;
    font-size: 1.15rem;
    width: 100%;
}

.btn-header {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-price-badge {
    background: #0d1117;
    color: var(--gold-300);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */
.top-bar {
    background: #040508;
    border-bottom: 1px solid rgba(223, 186, 71, 0.15);
    padding: 8px 0;
    font-size: 0.825rem;
    color: var(--text-secondary);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gold-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-500);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-500);
    display: inline-block;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.timer-preview {
    color: var(--gold-300);
    font-weight: 600;
}

.global-timer-digits {
    background: rgba(223, 186, 71, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(223, 186, 71, 0.3);
    font-family: monospace;
    font-size: 0.9rem;
    color: #ffffff;
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
    font-weight: 600;
}

.top-phone:hover {
    color: var(--gold-500);
}

.main-header {
    background: rgba(7, 9, 13, 0.92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-gold);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 14px 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    font-weight: 600;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    padding: 6px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--gold-500);
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    padding: 80px 0 100px 0;
    overflow: hidden;
    background: radial-gradient(circle at 60% 30%, rgba(223, 186, 71, 0.07) 0%, transparent 60%),
                linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
    border-bottom: 1px solid var(--border-gold);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

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

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.18rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gold);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
}

.highlight-icon {
    color: var(--gold-500);
    font-size: 1.2rem;
}

.highlight-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ==========================================
   HERO CARD & PRODUCT SHOWCASE
   ========================================== */
.hero-visual-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--glow-gold), 0 20px 50px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
}

.product-image-container {
    position: relative;
    text-align: center;
    margin-bottom: 24px;
}

.product-image-container img {
    max-height: 380px;
    margin: 0 auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
    border-radius: var(--radius-md);
}

.price-discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold-grad);
    color: #07090d;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* ==========================================
   2-HOURS COUNTDOWN TIMER
   ========================================== */
.countdown-box {
    background: rgba(7, 9, 13, 0.85);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    margin-bottom: 24px;
}

.countdown-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-300);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.timer-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    background: #141a26;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    min-width: 60px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.8), 0 0 10px rgba(223, 186, 71, 0.2);
}

.timer-divider {
    font-size: 1.8rem;
    color: var(--gold-500);
    font-weight: 700;
    margin-top: -16px;
}

.timer-sub {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* ==========================================
   PRICING WRAPPER
   ========================================== */
.pricing-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.old-price {
    font-size: 1.3rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.current-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(223, 186, 71, 0.5);
}

.currency-text {
    font-size: 1.5rem;
    color: var(--gold-500);
    margin-left: 4px;
}

/* ==========================================
   ORDER FORM
   ========================================== */
.order-form-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 15px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: #080a0f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 15px rgba(223, 186, 71, 0.3);
    background: #0c0f17;
}

.form-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 14px;
}

/* ==========================================
   SECTIONS: GENERAL & STATS
   ========================================== */
.section {
    padding: 90px 0;
    position: relative;
}

.section-darker {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

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

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gold-300);
    margin-bottom: 8px;
}

.stat-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   INGREDIENTS & MECHANISM
   ========================================== */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ingredient-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.ingredient-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-500);
    background: var(--bg-card-hover);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.ingredient-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(223, 186, 71, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-500);
    margin-bottom: 20px;
}

.ingredient-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.ingredient-role {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-500);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.ingredient-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   DOCTOR / EXPERT SECTION
   ========================================== */
.expert-box {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

.expert-photo-wrap {
    text-align: center;
    position: relative;
}

.expert-avatar-circle {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    border: 3px solid var(--gold-500);
    padding: 5px;
    background: #141a26;
    overflow: hidden;
    box-shadow: var(--glow-gold);
}

.expert-avatar-circle svg, .expert-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.expert-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.expert-creds {
    font-size: 0.85rem;
    color: var(--gold-300);
    font-weight: 600;
}

.expert-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
}

.expert-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.expert-seal {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.seal-icon {
    color: var(--gold-500);
    font-size: 1.8rem;
}

.seal-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   VIP TESTIMONIALS (MAGAZINE STYLE)
   ========================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote-mark {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--gold-500);
    opacity: 0.4;
    margin-bottom: -15px;
}

.testimonial-text {
    font-size: 0.98rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.author-info h5 {
    font-size: 1rem;
    color: #ffffff;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--gold-300);
}

.stars-rating {
    color: var(--gold-500);
    letter-spacing: 2px;
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faq-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold-500);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    padding: 0 28px;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 28px 24px 28px;
}

/* ==========================================
   STATIC LEGAL / CONTENT PAGES
   ========================================== */
.page-hero {
    padding: 60px 0 40px 0;
    background: linear-gradient(180deg, #040508 0%, var(--bg-surface) 100%);
    border-bottom: 1px solid var(--border-gold);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.legal-content-box {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 45px;
    margin: 40px 0 80px 0;
    line-height: 1.8;
    color: var(--text-secondary);
}

.legal-content-box h2, .legal-content-box h3 {
    color: #ffffff;
    margin: 32px 0 14px 0;
}

.legal-content-box p {
    margin-bottom: 18px;
}

.legal-content-box ul, .legal-content-box ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content-box li {
    margin-bottom: 8px;
}

/* ==========================================
   CHECKOUT & THANK YOU PAGE
   ========================================== */
.checkout-box {
    max-width: 800px;
    margin: 50px auto 80px auto;
    background: var(--bg-card);
    border: 2px solid var(--gold-500);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    box-shadow: var(--glow-gold), 0 25px 60px rgba(0,0,0,0.8);
}

.success-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    background: rgba(46, 204, 113, 0.15);
    border: 2px solid var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--success-green);
}

.order-badge-pill {
    display: inline-block;
    background: rgba(223, 186, 71, 0.15);
    border: 1px solid var(--gold-500);
    color: var(--gold-300);
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    margin: 15px 0 25px 0;
}

.order-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 35px 0;
    text-align: left;
}

.order-step-item {
    background: #0a0d14;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-500);
    margin-bottom: 8px;
}

.step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background: #040508;
    border-top: 2px solid var(--border-gold);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.1fr 1.3fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.footer-logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #0d111a;
    border: 1px solid var(--border-gold);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: var(--gold-300);
}

.footer-heading {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--gold-500);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--gold-300);
    padding-left: 4px;
}

.company-details-card {
    background: #0a0d14;
    border: 1px solid rgba(223, 186, 71, 0.2);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.company-details-card p {
    margin-bottom: 6px;
}

.footer-disclaimer-box {
    background: #020304;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 24px 0;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: justify;
}

.footer-bottom {
    padding: 24px 0;
    background: #000000;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-payment-icons {
    display: flex;
    gap: 16px;
}

.payment-badge {
    color: var(--gold-300);
    font-size: 0.78rem;
}

/* ==========================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .expert-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .expert-seal {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }
    .top-bar-inner {
        justify-content: center;
    }
    .main-nav {
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        background: #07090d;
        border-bottom: 1px solid var(--border-gold);
        padding: 20px 0;
        display: none;
    }
    .main-nav.active {
        display: block;
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .ingredients-grid, .testimonials-grid, .order-steps-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
