/* ============================================
   VitaliSlim V2 — Main Stylesheet
   Brand: Green (#3A8F40) + Gold (#C9A54E)
   ============================================ */

/* CSS Variables */

:root {
    --green-primary: #3A8F40;
    --green-dark: #2B6E30;
    --green-light: #E8F5E9;
    --green-pale: #F1F8F1;
    --gold: #C9A54E;
    --gold-dark: #A8873A;
    --gold-light: #F5EDD6;
    --text-dark: #0A0A0A;
    --text-body: #1A1A1A;
    --text-light: #3A3A3A;
    --white: #FFFFFF;
    --off-white: #FAFCFA;
    --border: #D4E5D4;
    --shadow-sm: 0 2px 10px rgba(58, 143, 64, 0.07);
    --shadow-md: 0 6px 24px rgba(58, 143, 64, 0.11);
    --shadow-lg: 0 12px 48px rgba(58, 143, 64, 0.15);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --transition: 0.3s ease;
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --max-width: 1200px;
}

/* Reset */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--green-primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 46px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 21px;
}

p {
    margin-bottom: 1rem;
    font-size: 19px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 84px 0;
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-light);
    padding: 7px 20px;
    border-radius: 6px;
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 650px;
    margin: 14px auto 0;
}

/* ============ HEADER ============ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.header-logo img {
    height: 42px;
    width: auto;
    display: none;
}

.header-logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--green-primary) !important;
    letter-spacing: -0.3px;
    text-decoration: none;
}

.header-logo::after {
    display: none;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 4px 0;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width var(--transition);
}

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

.header-nav a:hover {
    color: var(--green-primary);
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-header-cta:hover {
    background: var(--gold-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-header-cta::after {
    display: none;
}

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

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 6px 0;
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============ HERO SECTION ============ */

.hero-section {
    padding-top: 100px;
    background: linear-gradient(145deg, var(--green-pale) 0%, var(--white) 40%, var(--gold-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(58, 143, 64, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 165, 78, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    min-height: 520px;
    padding: 44px 0 64px;
}

.hero-content {
    animation: slideUp 0.7s ease forwards;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-primary);
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
}

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

.hero-content h1 {
    margin-bottom: 22px;
    line-height: 1.18;
}

.hero-content h1 span {
    color: var(--green-primary);
}

.hero-content .hero-text {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 34px;
    max-width: 490px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    padding: 16px 38px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 18px rgba(58, 143, 64, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(58, 143, 64, 0.35);
    color: var(--white);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 0;
}

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

.hero-trust {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
}

.hero-trust-item svg {
    width: 18px;
    height: 18px;
    fill: var(--green-primary);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.7s ease 0.15s forwards;
    opacity: 0;
}

.hero-image img {
    max-height: 500px;
    width: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.1));
}

/* ============ WHAT IS SECTION ============ */

.whatis-section {
    background: var(--white);
}

.whatis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.whatis-image {
    position: relative;
}

.whatis-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.whatis-image::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 2px solid var(--green-light);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.whatis-content h2 {
    margin-bottom: 18px;
}

.whatis-content h2 span {
    color: var(--green-primary);
}

.whatis-content p {
    color: var(--text-body);
}

.whatis-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.whatis-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--green-primary);
}

.whatis-highlight-item svg {
    width: 20px;
    height: 20px;
    fill: var(--green-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.whatis-highlight-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============ HOW IT WORKS ============ */

.howitworks-section {
    background: var(--green-pale);
}

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

.step-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 34px 24px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-primary);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 17px;
    color: var(--text-light);
}

/* ============ BENEFITS SECTION ============ */

.benefits-section {
    background: var(--white);
}

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

.benefit-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    transition: all var(--transition);
}

.benefit-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--green-light);
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
}

.benefit-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--green-primary);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 17px;
    color: var(--text-light);
}

/* ============ INGREDIENTS PREVIEW ============ */

.ingredients-preview {
    background: linear-gradient(150deg, var(--green-pale) 0%, var(--gold-light) 100%);
}

.ingredients-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.ingredient-list {
    display: grid;
    gap: 14px;
}

.ingredient-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.ingredient-item:hover {
    border-color: var(--green-primary);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.ingredient-dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 3px;
    flex-shrink: 0;
}

.ingredient-item h4 {
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-dark);
}

.ingredient-item p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 0;
}

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

.ingredients-image img {
    max-height: 420px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.08));
}

/* ============ TESTIMONIALS ============ */

.testimonials-section {
    background: var(--off-white);
}

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

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--green-light);
    position: absolute;
    top: 14px;
    left: 22px;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.testimonial-author img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green-light);
}

.testimonial-author-info h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-disclaimer {
    margin-top: 28px;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

/* ============ PRICING ============ */

.pricing-section {
    background: var(--white);
}

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

.pricing-card {
    background: var(--off-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--green-primary);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 22px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.pricing-image {
    margin-bottom: 20px;
}

.pricing-image img {
    width: 160px;
    height: auto;
    margin: 0 auto;
}

.pricing-bottles {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.pricing-supply {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--green-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.pricing-price span {
    font-size: 22px;
    vertical-align: top;
    margin-right: 2px;
}

.pricing-per-bottle {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.pricing-savings {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.pricing-retail {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 20px;
}

.pricing-card .btn-primary {
    width: 100%;
    margin-bottom: 18px;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-body);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    fill: var(--green-primary);
    flex-shrink: 0;
}

/* ============ FAQ ============ */

.faq-section {
    background: var(--green-pale);
}

.faq-container {
    max-width: 740px;
    margin: 48px auto 0;
    text-align: left;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--green-primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
}

.faq-question svg {
    width: 22px;
    height: 22px;
    fill: var(--green-primary);
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

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

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ============ COMPARISON TABLE ============ */

.comparison-table {
    width: 100%;
    max-width: 780px;
    margin: 40px auto 0;
    border-collapse: collapse;
    text-align: left;
    font-size: 17px;
}

.comparison-table thead tr {
    background: var(--green-primary);
    color: #fff;
}

.comparison-table th {
    padding: 16px 20px;
    font-size: 17px;
}

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

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

.comparison-table td {
    padding: 14px 20px;
}

.comparison-table tr:nth-child(even) {
    background: var(--green-pale);
}

.comparison-table tr:last-child td:first-child {
    border-radius: 0 0 0 12px;
}

.comparison-table tr:last-child td:last-child {
    border-radius: 0 0 12px 0;
}

/* ============ FINAL CTA ============ */

.final-cta-section {
    background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-primary) 50%, #4BA352 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 32px;
}

.final-cta-image {
    margin-bottom: 32px;
}

.final-cta-image img {
    max-width: 460px;
    max-height: 300px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.2));
    mix-blend-mode: lighten;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    padding: 18px 44px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(201, 165, 78, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 165, 78, 0.45);
    color: var(--white);
}

.final-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 28px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
}

/* ============ MEDICAL REVIEWER ============ */

.medical-reviewer-bar {
    background: var(--off-white);
    padding: 36px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.medical-reviewer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    text-align: center;
}

.medical-reviewer-icon {
    width: 60px;
    height: 60px;
    background: var(--green-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.medical-reviewer-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--green-primary);
}

.medical-reviewer-text {
    text-align: left;
}

.medical-reviewer-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.medical-reviewer-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
    margin-bottom: 2px;
}

.medical-reviewer-title {
    font-size: 14px;
    color: var(--text-light);
}

/* ============ FOOTER ============ */

.site-footer {
    background: #0D1117;
    color: #A8B2C1;
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand img {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: #8B96A5;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: #8B96A5;
    padding: 5px 0;
    transition: color var(--transition);
}

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

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-top: 40px;
    font-size: 12px;
    color: #6B7585;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 0;
    font-size: 13px;
    color: #5A6472;
    text-align: center;
}

/* ============ FLOATING ORDER BUTTON ============ */

.floating-order-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(201, 165, 78, 0.35);
    transition: all var(--transition);
}

.floating-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 165, 78, 0.45);
    color: var(--white);
}

.floating-order-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

/* ============ EXIT POPUP ============ */

.exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 17, 23, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.exit-popup-overlay.active {
    display: flex;
}

.exit-popup {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.exit-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.exit-popup h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: var(--green-primary);
}

.exit-popup p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ============ PURCHASE NOTIFICATION ============ */

.purchase-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 998;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
}

.purchase-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.purchase-popup-icon {
    width: 38px;
    height: 38px;
    background: var(--green-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.purchase-popup-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--green-primary);
}

.purchase-popup-text {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.4;
}

.purchase-popup-text strong {
    color: var(--text-dark);
}

.purchase-popup-text small {
    color: var(--text-light);
    font-size: 11px;
}

/* ============ LEGAL PAGES ============ */

.legal-page {
    padding-top: 100px;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.legal-content .legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    margin-bottom: 6px;
}

/* ============ BLOG PAGES ============ */

.blog-hero {
    padding-top: 100px;
    background: var(--green-pale);
    padding-bottom: 40px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 40px;
    margin-bottom: 12px;
}

.blog-hero p {
    color: var(--text-light);
    font-size: 18px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 48px 0 80px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-card-thumb {
    height: 190px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-card-thumb svg {
    width: 44px;
    height: 44px;
    fill: var(--green-primary);
    opacity: 0.35;
}

.blog-card-body {
    padding: 22px;
}

.blog-card-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.blog-card-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.35;
}

.blog-card-body h3 a {
    color: var(--text-dark);
}

.blog-card-body h3 a:hover {
    color: var(--green-primary);
}

.blog-card-body p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.blog-read-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
}

/* Blog Article */

.blog-article {
    padding-top: 100px;
}

.blog-article-header {
    background: var(--green-pale);
    padding: 40px 0;
    text-align: center;
}

.blog-article-header h1 {
    font-size: 36px;
    max-width: 780px;
    margin: 0 auto 12px;
}

.blog-article-meta {
    font-size: 15px;
    color: var(--text-light);
}

.blog-article-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

.blog-article-content h2 {
    font-size: 28px;
    margin-top: 36px;
    margin-bottom: 14px;
}

.blog-article-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
}

.blog-article-content p {
    font-size: 17px;
    line-height: 1.8;
}

.blog-cta-box {
    background: var(--green-pale);
    border: 2px solid var(--green-primary);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    margin: 40px 0;
}

.blog-cta-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.blog-cta-box p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ============ INGREDIENTS PAGE ============ */

.ingredients-hero {
    padding-top: 100px;
    background: var(--green-pale);
    padding-bottom: 40px;
    text-align: center;
}

.ingredients-hero h1 {
    font-size: 40px;
    margin-bottom: 12px;
}

.ingredients-grid-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 48px 0 80px;
}

.ingredient-full-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: all var(--transition);
}

.ingredient-full-card:hover {
    border-color: var(--green-primary);
    box-shadow: var(--shadow-md);
}

.ingredient-full-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingredient-full-card h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 3px;
    flex-shrink: 0;
}

.ingredient-full-card p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 32px;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .pricing-card.popular {
        transform: none;
        order: -1;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 22px;
    }
    .section-padding {
        padding: 56px 0;
    }
    /* Header */
    .site-header {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    /* Hero */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
        padding: 20px 0 36px;
    }
    .hero-content .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-image img {
        max-height: 340px;
    }
    /* What Is */
    .whatis-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .whatis-image {
        order: -1;
    }
    .whatis-image::after {
        display: none;
    }
    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
    }
    /* Ingredients */
    .ingredients-preview-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .ingredients-image {
        order: -1;
    }
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    /* Ingredients Page */
    .ingredients-grid-page {
        grid-template-columns: 1fr;
    }
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    /* Floating button */
    .floating-order-btn {
        bottom: 16px;
        right: 16px;
        font-size: 14px;
        padding: 12px 22px;
    }
    .purchase-popup {
        left: 12px;
        right: 12px;
        max-width: none;
        bottom: 80px;
    }
    .exit-popup {
        padding: 28px 22px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 26px;
    }
    h2 {
        font-size: 23px;
    }
    .container {
        padding: 0 16px;
    }
    .hero-section {
        padding-top: 20px;
    }
    .whatis-highlights {
        grid-template-columns: 1fr;
    }
}

/* Zoom support up to 200% */

@media (min-resolution: 2dppx) {
    body {
        font-size: 16px;
    }
}