/* ==========================================================================
   TRIBAL FORCE X - PREMIUM LANDING PAGE STYLESHEET
   ========================================================================== */

/* --- Typography & Design Tokens --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Color Palette */
    --color-primary: #071f14;       /* Extra Deep Forest Green */
    --color-primary-light: #0b291b; /* Rich Forest Green */
    --color-secondary: #0ea5e9;     /* Deep Water Blue (accent) */
    --color-accent-amber: #d97706;  /* Deep Gold/Amber */
    --color-accent-gold: #f59e0b;   /* Bright Gold */
    --color-accent-gold-rgb: 245, 158, 11;
    --color-accent-light: #eab308;  /* Light Gold */
    --color-sand: #f5f2eb;          /* Sand / Beige Accent */
    --color-text-dark: #111827;     /* High-contrast charcoal */
    --color-text-muted: #6b7280;    /* Muted grey */
    --color-text-light: #f9fafb;    /* Near-white */
    --color-glass-bg: rgba(11, 41, 27, 0.7);
    --color-glass-border: rgba(245, 158, 11, 0.2);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-gold: 0 10px 25px -5px rgba(217, 119, 6, 0.3), 0 8px 10px -6px rgba(217, 119, 6, 0.3);
    --shadow-glow: 0 0 30px 5px rgba(245, 158, 11, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Helper Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold { color: var(--color-accent-gold); }
.text-amber { color: var(--color-accent-amber); }
.text-sand { color: var(--color-sand); }
.bg-dark { background-color: var(--color-primary); }
.bg-light { background-color: var(--color-sand); color: var(--color-text-dark); }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px 2px rgba(245, 158, 11, 0.2); }
    50% { box-shadow: 0 0 35px 8px rgba(245, 158, 11, 0.4); }
}

@keyframes shine {
    100% { left: 125%; }
}

@keyframes ring-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* --- Scroll Reveal Effects --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* --- Sticky Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-normal), padding var(--transition-normal);
    padding: 24px 0;
}

header.scrolled {
    background-color: rgba(7, 31, 20, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
    padding: 14px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo svg {
    width: 32px;
    height: 32px;
    fill: var(--color-accent-gold);
}

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

.nav-link {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

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

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

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

/* Primary Button Styling */
.btn-cta {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent-amber), var(--color-accent-gold));
    color: var(--color-text-light);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-cta:hover::after {
    animation: shine 1s ease-in-out infinite;
}

.btn-cta:active {
    transform: translateY(1px);
}

.btn-large {
    font-size: 1.1rem;
    padding: 16px 40px;
    letter-spacing: 0.05em;
    animation: pulse-glow 3s infinite;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--color-text-light);
    margin: 4px 0;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 160px 0 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, rgba(11, 41, 27, 0.4) 0%, rgba(7, 31, 20, 1) 70%);
    overflow: hidden;
}

/* Tribal Background Motif */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-gold);
    margin-bottom: 16px;
    display: inline-block;
    padding: 4px 16px;
    background-color: rgba(245, 158, 11, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--color-accent-gold);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 580px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-sand);
    background: rgba(11, 41, 27, 0.5);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    fill: var(--color-accent-gold);
}

/* Hero Right Side Graphics */
.hero-visuals {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background forest picture overlayed */
.hero-image-bg {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(245, 158, 11, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
}

/* Bottle Graphic Float Overlay */
.hero-bottle-wrap {
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 230px;
    z-index: 5;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.7));
}

.hero-bottle-wrap img {
    width: 100%;
    height: auto;
}

/* Glowing golden tribal circle behind the bottle */
.glow-tribal-ring {
    position: absolute;
    bottom: -70px;
    left: -60px;
    width: 310px;
    height: 310px;
    background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, rgba(245,158,11,0) 70%);
    border: 1px dashed rgba(245, 158, 11, 0.4);
    border-radius: 50%;
    z-index: 3;
    animation: ring-rotate 25s linear infinite;
    pointer-events: none;
}

.glow-tribal-ring::before {
    content: '';
    position: absolute;
    top: 5%; left: 5%; right: 5%; bottom: 5%;
    border: 2px solid rgba(245, 158, 11, 0.15);
    border-radius: 50%;
}

/* --- Key Benefits Section --- */
.key-benefits {
    background: linear-gradient(135deg, #d97706 0%, #b45309 50%, #78350f 100%);
    padding: 60px 0;
    box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.15), inset 0 -10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 6;
}

.key-benefits-header {
    text-align: center;
    margin-bottom: 40px;
}

.key-benefits-header h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    color: var(--color-sand);
    letter-spacing: 0.1em;
}

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

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 32px 24px;
    backdrop-filter: blur(8px);
    transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon-container {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--color-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast);
}

.benefit-card:hover .benefit-icon-container {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon-container svg {
    width: 36px;
    height: 36px;
    fill: #b45309;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-sand);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* --- Powerful Formula Section --- */
.formula-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-primary-light);
}

.formula-section::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,0.03) 0%, rgba(245,158,11,0) 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header span {
    font-family: var(--font-heading);
    color: var(--color-accent-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.95rem;
    display: inline-block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.75rem;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.formula-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Ingredients Grid */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ingredient-card {
    background: rgba(7, 31, 20, 0.6);
    border: 1px solid var(--color-glass-border);
    border-radius: 16px;
    padding: 24px;
    transition: transform var(--transition-normal), border var(--transition-normal), box-shadow var(--transition-normal);
}

.ingredient-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--color-accent-gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.ingredient-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ingredient-head svg {
    width: 24px;
    height: 24px;
    fill: var(--color-accent-gold);
}

.ingredient-head h4 {
    font-size: 1.15rem;
    color: var(--color-accent-gold);
}

.ingredient-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

/* Scientific EEAT Information Box (GEO Booster) */
.science-panel {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--color-accent-gold);
    padding: 32px;
    border-radius: 0 16px 16px 0;
    box-shadow: var(--shadow-lg);
}

.science-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.science-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.science-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.science-item svg {
    width: 24px;
    height: 24px;
    fill: var(--color-accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.science-item-content h5 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-sand);
    margin-bottom: 4px;
}

.science-item-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Real Stories (Testimonials) Section --- */
.testimonials-section {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 80%, rgba(11, 41, 27, 0.5) 0%, rgba(7, 31, 20, 1) 80%);
}

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

.testimonial-card {
    background: rgba(11, 41, 27, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal), border var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
}

.testimonial-quote-icon {
    position: absolute;
    top: 24px;
    right: 32px;
    opacity: 0.08;
}

.testimonial-quote-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--color-accent-gold);
}

.stars-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.stars-rating svg {
    width: 18px;
    height: 18px;
    fill: var(--color-accent-gold);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.author-info h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-sand);
}

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

/* --- Limited Time Offer (Pricing Packages) --- */
.pricing-section {
    padding: 100px 0;
    background-color: var(--color-primary);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245,158,11,0.02) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.pricing-header {
    margin-bottom: 70px;
}

/* Layout for Guarantee and Pricing side-by-side or stacked */
.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.pricing-card {
    background: rgba(11, 41, 27, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform var(--transition-normal), border var(--transition-normal), box-shadow var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-lg);
}

/* Featured / Best Value Card */
.pricing-card.featured {
    background: linear-gradient(180deg, rgba(11, 41, 27, 0.9) 0%, rgba(7, 31, 20, 0.95) 100%);
    border: 2px solid var(--color-accent-gold);
    transform: scale(1.03);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 15px 40px 5px rgba(245, 158, 11, 0.25);
}

.card-badge {
    position: absolute;
    top: -16px;
    background: linear-gradient(135deg, var(--color-accent-amber), var(--color-accent-gold));
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.pricing-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--color-sand);
    margin-bottom: 8px;
}

.pricing-quantity {
    font-size: 0.9rem;
    color: var(--color-accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.pricing-image-container {
    width: 100%;
    max-width: 180px;
    margin-bottom: 24px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-image-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

.pricing-price-box {
    text-align: center;
    margin-bottom: 24px;
}

.price-subhead {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    margin-bottom: 4px;
}

.price-main {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-text-light);
    line-height: 1;
}

.price-main span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-accent-gold);
}

.price-shipping {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    margin-top: 4px;
}

.pricing-benefits-list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
}

.pricing-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.pricing-benefit-item.highlight {
    font-weight: 700;
    color: var(--color-accent-gold);
}

.pricing-benefit-item svg {
    width: 16px;
    height: 16px;
    fill: var(--color-accent-gold);
    flex-shrink: 0;
}

.pricing-card .btn-cta {
    width: 100%;
}

/* Trust Guarantee Banner block in pricing */
.guarantee-banner {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 32px;
    background: rgba(11, 41, 27, 0.6);
    border: 1px solid var(--color-glass-border);
    border-radius: 20px;
    padding: 32px 40px;
    align-items: center;
    max-width: 850px;
    margin: 60px auto 0 auto;
}

.guarantee-badge {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-badge svg {
    width: 100%;
    height: 100%;
    fill: var(--color-accent-gold);
}

.guarantee-text h4 {
    font-size: 1.4rem;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.guarantee-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* --- Voice & AI FAQ Section (AEO/GEO Boost) --- */
.faq-section {
    padding: 100px 0;
    background-color: var(--color-primary-light);
}

.faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(7, 31, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: border var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.25);
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-question h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-sand);
    transition: color var(--transition-fast);
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-accent-gold);
    transition: transform var(--transition-normal);
}

/* Plus/Minus Icons */
.faq-icon::before {
    top: 11px; left: 4px;
    width: 16px; height: 2px;
}

.faq-icon::after {
    top: 4px; left: 11px;
    width: 2px; height: 16px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-inner {
    padding: 0 32px 24px 32px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 16px;
}

.faq-answer-inner p {
    margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

/* --- FTC Footer & Legal Disclaimers --- */
footer {
    background-color: var(--color-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

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

.footer-col h5 {
    font-family: var(--font-heading);
    color: var(--color-sand);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col p {
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* FDA Disclaimer Box (EEAT Critical) */
.disclaimer-box {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
    line-height: 1.5;
    background: rgba(255,255,255,0.01);
}

.disclaimer-box p {
    margin-bottom: 8px;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-logo svg {
    width: 24px;
    height: 24px;
    fill: var(--color-accent-gold);
}

/* ==========================================================================
   MEDIA QUERIES - RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

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

    .hero-description {
        max-width: 650px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .formula-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .science-panel {
        border-radius: 16px;
        border-left: none;
        border-top: 4px solid var(--color-accent-gold);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px) scale(1);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background-color: var(--color-primary);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: left var(--transition-normal);
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    header.scrolled .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 480px;
        margin: 0 auto;
    }

    .guarantee-banner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

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

    .hero-bottle-wrap {
        width: 180px;
        left: 0;
        bottom: -20px;
    }

    .glow-tribal-ring {
        width: 240px;
        height: 240px;
        left: -30px;
        bottom: -50px;
    }
}
