/* ============================================================
   HorseFil — Main Stylesheet
   Domain: https://horrsefil.us/
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
    --primary:       #0d1b2a;
    --primary-mid:   #142232;
    --primary-light: #1e3a5f;
    --accent:        #c9a84c;
    --accent-light:  #e3c46e;
    --accent-dark:   #a07d2e;
    --crimson:       #c0392b;
    --white:         #ffffff;
    --off-white:     #fafafa;
    --light-bg:      #f4f6f9;
    --light-bg-2:    #eef2f7;
    --border-color:  #e2e8f0;
    --text-dark:     #1a202c;
    --text-medium:   #4a5568;
    --text-light:    #718096;
    --text-muted:    #a0aec0;
    --shadow-sm:     0 2px 8px rgba(13,27,42,0.08);
    --shadow-md:     0 4px 20px rgba(13,27,42,0.12);
    --shadow-lg:     0 8px 40px rgba(13,27,42,0.18);
    --shadow-xl:     0 20px 60px rgba(13,27,42,0.25);
    --radius-sm:     8px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --radius-xl:     32px;
    --radius-pill:   50px;
    --font-heading:  'Playfair Display', Georgia, serif;
    --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::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-dark);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--text-dark);
    font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; color: var(--text-medium); line-height: 1.85; }
.text-accent { color: var(--accent); }
.text-white  { color: var(--white); }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-pad    { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(201,168,76,0.1);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
    border: 1px solid rgba(201,168,76,0.25);
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.05rem;
}
.divider {
    width: 60px; height: 3px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 2px;
    margin: 14px auto 0;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 36px;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.12);
    transition: left 0.4s ease;
}
.btn:hover::before { left: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(201,168,76,0.38);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.55);
    color: var(--primary);
}
.btn-outline-gold {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.btn-outline-gold:hover { background: var(--accent); color: var(--primary); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--accent); color: var(--primary); transform: translateY(-2px); }
.btn-lg  { padding: 19px 48px; font-size: 1.08rem; }
.btn-sm  { padding: 10px 24px; font-size: 0.875rem; }
.btn-full { width: 100%; }

/* Badge */
.badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}
.badge-gold    { background: linear-gradient(135deg,var(--accent),var(--accent-dark)); color: var(--primary); }
.badge-green   { background: #2d8a5b; color: #fff; }
.badge-crimson { background: var(--crimson); color: #fff; }
.badge-blue    { background: #2563eb; color: #fff; }

/* ============================================================
   6. SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.60s; }

/* ============================================================
   7. NAVIGATION
   ============================================================ */
#mainNav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 22px 0;
}
#mainNav.scrolled {
    background: rgba(13,27,42,0.97);
    padding: 13px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.65rem; font-weight: 700;
    color: var(--white);
}
.nav-logo span { color: var(--accent); }
.nav-logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg,var(--accent),var(--accent-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.15rem; font-weight: 900;
    font-family: var(--font-heading);
    flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.025em;
    position: relative; padding-bottom: 3px;
}
.nav-link::after {
    content: ''; position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--accent); }
.nav-cta { font-size: 0.85rem !important; padding: 10px 26px !important; }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav-mobile {
    display: none;
    position: fixed;
    /* Use explicit props instead of 'inset' for older mobile browsers */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    z-index: 999;
    padding: 90px 40px 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;  /* smooth scroll on iOS */
}
.nav-mobile.open { display: flex; }

.nav-mobile .nav-link {
    font-size: 1.35rem;
    font-family: var(--font-heading);
}

.nav-mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    /* Minimum 44x44px tap target — critical for mobile usability */
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 1001;                /* above everything inside nav */
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;  /* removes grey flash on iOS tap */
    touch-action: manipulation;                /* prevents 300ms tap delay */
}
.nav-mobile-close:hover,
.nav-mobile-close:focus {
    background: rgba(201, 168, 76, 0.25);
    border-color: var(--accent);
    color: var(--accent);
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}


/* ============================================================
   8. HERO SECTION
   ============================================================ */
#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1520 0%, #0d1b2a 40%, #162a40 70%, #0d1b2a 100%);
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    padding: 130px 0 90px;
}
#hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(201,168,76,0.09) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 20%, rgba(201,168,76,0.06) 0%, transparent 45%);
    pointer-events: none;
}
#hero::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -150px;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative; z-index: 2;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.28);
    color: var(--accent);
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 8px 20px; border-radius: var(--radius-pill);
    margin-bottom: 22px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
}
.hero-title .accent-text { color: var(--accent); display: block; }
.hero-subtitle {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 490px;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 38px; }
.hero-trust-badges { display: flex; flex-wrap: wrap; gap: 18px; }
.trust-badge {
    display: flex; align-items: center; gap: 7px;
    color: rgba(255,255,255,0.78); font-size: 0.82rem; font-weight: 500;
}
.trust-badge i { color: var(--accent); font-size: 0.95rem; }
.hero-image-wrap {
    position: relative;
    display: flex; justify-content: center; align-items: center;
}
.hero-img-glow {
    position: absolute; width: 78%; height: 78%;
    background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3.5s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%,100% { transform: scale(1); opacity: 0.6; }
    50%      { transform: scale(1.12); opacity: 1; }
}
.hero-bottle-img {
    max-height: 560px;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(201,168,76,0.35));
    animation: floatBottle 4s ease-in-out infinite;
    position: relative; z-index: 2;
}
@keyframes floatBottle {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-16px); }
}
.hero-star-badge {
    position: absolute; bottom: 30px; left: -10px;
    background: var(--white); border-radius: var(--radius-md);
    padding: 14px 20px; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 10px; z-index: 3;
}
.hero-star-badge .stars { color: #f59e0b; font-size: 0.88rem; }
.hero-star-badge .rating { font-weight: 700; color: var(--text-dark); font-size: 0.82rem; }
.hero-guarantee-badge {
    position: absolute; top: 24px; right: -10px;
    background: linear-gradient(135deg,var(--accent),var(--accent-dark));
    border-radius: var(--radius-md);
    padding: 14px 20px; box-shadow: var(--shadow-lg);
    text-align: center; z-index: 3; min-width: 110px;
}
.hero-guarantee-badge .g-number { font-size: 1.55rem; font-weight: 900; color: var(--primary); line-height: 1; }
.hero-guarantee-badge .g-text   { font-size: 0.68rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================================
   9. WHY HORSEFIL
   ============================================================ */
#why { background: var(--light-bg); padding: 90px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.why-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px 28px; text-align: center;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative; overflow: hidden;
}
.why-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(135deg,var(--accent),var(--accent-dark));
    transform: scaleX(0); transition: transform 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
    width: 72px; height: 72px;
    background: rgba(201,168,76,0.1);
    border-radius: 50%; border: 2px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.65rem; color: var(--accent);
    transition: var(--transition);
}
.why-card:hover .why-icon { background: linear-gradient(135deg,var(--accent),var(--accent-dark)); color: var(--primary); border-color: var(--accent); }
.why-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.why-card p  { font-size: 0.9rem; color: var(--text-light); margin: 0; line-height: 1.75; }

/* ============================================================
   10. BENEFITS
   ============================================================ */
#benefits { padding: 90px 0; background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.benefit-card {
    background: var(--white); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 36px 28px;
    transition: var(--transition); position: relative; overflow: hidden;
}
.benefit-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(135deg,var(--accent),var(--accent-dark));
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.3); }
.benefit-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg,var(--accent),var(--accent-dark));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--primary);
    margin-bottom: 20px;
}
.benefit-card h3 { font-size: 1.08rem; margin-bottom: 12px; }
.benefit-card p  { font-size: 0.9rem; color: var(--text-light); margin: 0; line-height: 1.75; }

/* ============================================================
   11. INGREDIENTS
   ============================================================ */
#ingredients {
    padding: 90px 0;
    background: var(--primary);
    position: relative; overflow: hidden;
}
#ingredients::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 55%);
    pointer-events: none;
}
#ingredients .section-header h2 { color: var(--white); }
#ingredients .section-header p  { color: rgba(255,255,255,0.62); }
.ingredients-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 22px; position: relative; z-index: 2;
}
.ingredient-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.14);
    border-radius: var(--radius-lg);
    padding: 28px 20px; text-align: center;
    transition: var(--transition); backdrop-filter: blur(8px);
}
.ingredient-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}
.ingredient-img-wrap {
    width: 88px; height: 88px; border-radius: 50%;
    overflow: hidden; margin: 0 auto 18px;
    background: rgba(201,168,76,0.1);
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(201,168,76,0.2);
}
.ingredient-icon { font-size: 2.2rem; color: var(--accent); }
.ingredient-card h4 { color: var(--white); font-size: 0.98rem; margin-bottom: 8px; font-family: var(--font-heading); }
.ingredient-card p  { color: rgba(255,255,255,0.58); font-size: 0.82rem; margin: 0; line-height: 1.65; }

/* ============================================================
   12. HOW IT WORKS
   ============================================================ */
#how-it-works { padding: 90px 0; background: var(--light-bg); }
.steps-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 40px; position: relative;
}
.steps-grid::before {
    content: ''; position: absolute;
    top: 44px;
    left: calc(16.67% + 28px);
    right: calc(16.67% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark), var(--accent));
    z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number {
    width: 88px; height: 88px; border-radius: 50%;
    background: linear-gradient(135deg,var(--accent),var(--accent-dark));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 2rem; font-weight: 900;
    color: var(--primary);
    margin: 0 auto 28px;
    box-shadow: 0 8px 28px rgba(201,168,76,0.42);
    position: relative; z-index: 2;
}
.step-card h3 { font-size: 1.18rem; margin-bottom: 14px; }
.step-card p  { font-size: 0.92rem; color: var(--text-light); max-width: 260px; margin: 0 auto; line-height: 1.8; }

/* ============================================================
   13. WHY CUSTOMERS LOVE
   ============================================================ */
#why-love { padding: 90px 0; background: var(--white); }
.love-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.love-image-wrap img { border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); width: 100%; }
.love-text h2 { margin-bottom: 14px; }
.love-text > p { color: var(--text-light); margin-bottom: 34px; font-size: 1.02rem; }
.love-features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.love-feature { display: flex; gap: 14px; align-items: flex-start; }
.love-feature-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.2rem;
}
.love-feature h4 { font-size: 0.92rem; margin-bottom: 5px; }
.love-feature p  { font-size: 0.82rem; color: var(--text-light); margin: 0; line-height: 1.6; }

/* ============================================================
   14. TESTIMONIALS
   ============================================================ */
#testimonials { padding: 90px 0; background: var(--light-bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px 28px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color); transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.t-stars    { color: #f59e0b; font-size: 0.92rem; letter-spacing: 2px; margin-bottom: 16px; }
.t-quote    { font-size: 2.6rem; color: var(--accent); opacity: 0.45; line-height: 1; font-family: Georgia,serif; margin-bottom: 10px; }
.t-text     { font-size: 0.93rem; color: var(--text-medium); font-style: italic; line-height: 1.82; margin-bottom: 22px; }
.t-author   { display: flex; align-items: center; gap: 14px; }
.t-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg,var(--accent),var(--accent-dark));
    color: var(--primary); font-size: 1.3rem; font-weight: 900;
    font-family: var(--font-heading); min-width: 52px;
}
.t-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); display: block; }
.t-age  { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   15. TRUST SECTION
   ============================================================ */
#trust { padding: 65px 0; background: var(--primary); }
.trust-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 18px; }
.trust-item {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 22px 14px;
    border: 1px solid rgba(201,168,76,0.14);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.03);
    transition: var(--transition); text-align: center;
}
.trust-item:hover { border-color: rgba(201,168,76,0.4); background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.trust-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg,var(--accent),var(--accent-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; color: var(--primary);
}
.trust-item span { color: var(--white); font-size: 0.78rem; font-weight: 600; line-height: 1.4; }

/* ============================================================
   16. FAQ
   ============================================================ */
#faq { padding: 90px 0; background: var(--white); }
.faq-wrapper { max-width: 780px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 14px; overflow: hidden; transition: var(--transition);
}
.faq-item.active { border-color: var(--accent); box-shadow: 0 4px 20px rgba(201,168,76,0.12); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 28px; cursor: pointer;
    background: var(--white); transition: var(--transition); gap: 16px;
    user-select: none;
}
.faq-item.active .faq-question { background: rgba(201,168,76,0.04); }
.faq-q-text { font-size: 1rem; font-weight: 600; color: var(--text-dark); line-height: 1.5; }
.faq-icon {
    width: 32px; height: 32px; min-width: 32px;
    background: var(--light-bg); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; color: var(--text-medium); transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--accent); color: var(--primary); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 28px 24px; }
.faq-answer-inner p { font-size: 0.95rem; color: var(--text-medium); margin: 0; line-height: 1.85; }

/* ============================================================
   17. PRICING SECTION
   ============================================================ */
#pricing { padding: 90px 0; background: var(--light-bg); }
.countdown-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: var(--radius-md);
    padding: 20px 30px;
    display: flex; align-items: center; justify-content: center; gap: 20px;
    margin-bottom: 50px; flex-wrap: wrap;
}
.countdown-text { color: var(--white); font-size: 0.92rem; font-weight: 600; text-align:center; }
.countdown-text span { color: var(--accent); }
.countdown-timer { display: flex; align-items: center; gap: 8px; }
.cd-block {
    background: var(--accent); color: var(--primary);
    font-family: var(--font-heading); font-size: 1.55rem; font-weight: 900;
    width: 52px; height: 52px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
}
.cd-sep { color: var(--accent); font-size: 1.4rem; font-weight: 900; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: start; }
.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 36px 28px; text-align: center;
    transition: var(--transition); position: relative; overflow: hidden;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.pricing-card.popular { border-color: var(--accent); box-shadow: 0 8px 40px rgba(201,168,76,0.22); transform: scale(1.04); }
.pricing-card.popular:hover { transform: scale(1.04) translateY(-8px); }
.popular-ribbon {
    position: absolute; top: 0; left: 0; right: 0;
    background: linear-gradient(135deg,var(--accent),var(--accent-dark));
    color: var(--primary); font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 8px; text-align: center;
}
.pricing-badges { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-bottom: 18px; min-height: 26px; }
.pricing-img-wrap {
    height: 220px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
}
.pricing-img-wrap img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform 0.4s ease; }
.pricing-card:hover .pricing-img-wrap img { transform: scale(1.05); }
.pricing-name  { font-size: 0.98rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.9rem; font-weight: 900;
    color: var(--accent); line-height: 1; margin-bottom: 4px;
}
.pricing-price sup { font-size: 1.3rem; vertical-align: super; margin-right: 1px; }
.pricing-unit  { font-size: 0.82rem; color: var(--text-light); margin-bottom: 22px; }
.pricing-features { margin-bottom: 26px; text-align: left; }
.pricing-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.87rem; color: var(--text-medium);
    padding: 7px 0; border-bottom: 1px solid var(--border-color);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: #2d8a5b; font-size: 0.82rem; min-width: 14px; }

/* ============================================================
   18. FINAL CTA
   ============================================================ */
#final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1520 0%, #1e3a5f 50%, #0a1520 100%);
    text-align: center; position: relative; overflow: hidden;
}
#final-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.09) 0%, transparent 68%);
    pointer-events: none;
}
#final-cta h2 { color: var(--white); max-width: 700px; margin: 0 auto 18px; }
#final-cta p  { color: rgba(255,255,255,0.72); max-width: 540px; margin: 0 auto 34px; font-size: 1.05rem; }
.cta-bottom-badges { display: flex; justify-content: center; gap: 30px; margin-top: 38px; flex-wrap: wrap; }
.cta-bottom-badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 500; }
.cta-bottom-badge i { color: var(--accent); }

/* ============================================================
   19. FOOTER
   ============================================================ */
footer { background: #07101a; padding: 65px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { font-size: 1.4rem; margin-bottom: 16px; }
.footer-brand > p { font-size: 0.84rem; color: rgba(255,255,255,0.48); line-height: 1.82; margin-bottom: 14px; }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.3); line-height: 1.7; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 14px; }
.footer-col h5 { color: var(--white); font-size: 0.88rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-body); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { color: rgba(255,255,255,0.48); font-size: 0.84rem; display: flex; align-items: center; gap: 7px; transition: var(--transition); }
.footer-link:hover { color: var(--accent); padding-left: 4px; }
.footer-link i { font-size: 0.65rem; color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 22px 0;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.32); }
.footer-copy a { color: rgba(255,255,255,0.32); }
.footer-copy a:hover { color: var(--accent); }
.footer-secure { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.32); font-size: 0.78rem; }
.footer-secure i { color: var(--accent); font-size: 1.05rem; }

/* ============================================================
   20. MOBILE STICKY CTA
   ============================================================ */
#mobileCTA {
    position: fixed; bottom: -100px; left: 0; right: 0;
    z-index: 900; background: var(--primary);
    border-top: 2px solid var(--accent);
    padding: 13px 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.35);
    transition: bottom 0.4s ease;
}
#mobileCTA.visible { bottom: 0; }
.mobile-cta-text { color: var(--white); font-size: 0.84rem; font-weight: 600; line-height: 1.35; }
.mobile-cta-text small { color: rgba(255,255,255,0.55); display: block; font-size: 0.74rem; font-weight: 400; }
#mobileCTA .btn { padding: 11px 22px; font-size: 0.84rem; flex-shrink: 0; }

/* ============================================================
   21. BLOG LISTING STYLES
   ============================================================ */
.blog-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 120px 0 60px; text-align: center;
}
.blog-hero h1 { color: var(--white); margin-bottom: 14px; }
.blog-hero p   { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 500px; margin: 0 auto 28px; }
.blog-search-wrap { max-width: 500px; margin: 0 auto; position: relative; }
.blog-search-wrap input {
    width: 100%; padding: 16px 56px 16px 24px;
    border-radius: var(--radius-pill);
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.1);
    color: var(--white); font-size: 0.95rem; outline: none;
    transition: var(--transition); font-family: var(--font-body);
}
.blog-search-wrap input::placeholder { color: rgba(255,255,255,0.5); }
.blog-search-wrap input:focus { border-color: var(--accent); background: rgba(255,255,255,0.15); }
.blog-search-wrap button {
    position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
    background: var(--accent); border: none; color: var(--primary);
    width: 40px; height: 40px; border-radius: 50%;
    cursor: pointer; font-size: 0.88rem;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.blog-search-wrap button:hover { background: var(--accent-dark); }
.blog-main { padding: 65px 0; background: var(--light-bg); }
.blog-layout { display: grid; grid-template-columns: 1fr 330px; gap: 40px; align-items: start; }
.blog-featured {
    background: var(--white); border-radius: var(--radius-xl);
    overflow: hidden; box-shadow: var(--shadow-md);
    margin-bottom: 32px;
    display: grid; grid-template-columns: 1.1fr 1fr; min-height: 300px;
    transition: var(--transition);
}
.blog-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-featured-img { position: relative; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-featured:hover .blog-featured-img img { transform: scale(1.05); }
.blog-featured-content { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.blog-tag {
    display: inline-block;
    background: rgba(201,168,76,0.1); color: var(--accent-dark);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 14px;
}
.blog-featured-content h2 { font-size: 1.45rem; margin-bottom: 12px; line-height: 1.35; }
.blog-featured-content p  { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.72; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 0.78rem; color: var(--text-light); flex-wrap: wrap; }
.blog-meta i { color: var(--accent); }
.blog-cards-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-bottom: 36px; }
.blog-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 195px; overflow: hidden; background: var(--light-bg); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 22px; }
.blog-card-title { font-size: 0.98rem; font-weight: 700; color: var(--text-dark); margin-bottom: 9px; line-height: 1.42; font-family: var(--font-heading); }
.blog-card-excerpt { font-size: 0.85rem; color: var(--text-light); margin-bottom: 14px; line-height: 1.72; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-dark); font-size: 0.82rem; font-weight: 700; transition: var(--transition); }
.blog-read-more:hover { gap: 10px; color: var(--accent); }
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius-lg); padding: 26px; margin-bottom: 22px; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.sidebar-widget h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--accent); display: inline-block; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.07em; }
.recent-post-item { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--border-color); }
.recent-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post-img { width: 62px; height: 54px; min-width: 62px; border-radius: var(--radius-sm); overflow: hidden; background: var(--light-bg); }
.recent-post-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-info a { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); display: block; margin-bottom: 4px; line-height: 1.42; transition: var(--transition); }
.recent-post-info a:hover { color: var(--accent); }
.recent-post-info span { font-size: 0.74rem; color: var(--text-light); }
.sidebar-cta { background: linear-gradient(135deg, var(--primary), var(--primary-light)); border: none; }
.sidebar-cta h4 { color: var(--accent); border-color: var(--accent); }
.sidebar-cta p { font-size: 0.84rem; color: rgba(255,255,255,0.68); margin-bottom: 18px; line-height: 1.72; }
.blog-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; }
.page-btn { width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid var(--border-color); background: var(--white); color: var(--text-medium); font-size: 0.88rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.page-btn:hover, .page-btn.active { background: var(--accent); border-color: var(--accent); color: var(--primary); font-weight: 700; }

/* ============================================================
   22. SINGLE BLOG POST
   ============================================================ */
.post-hero { background: linear-gradient(135deg, var(--primary), var(--primary-light)); padding: 120px 0 50px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.52); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.52); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .current { color: rgba(255,255,255,0.78); }
.post-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 18px; }
.post-hero-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.post-hero-meta span { display: flex; align-items: center; gap: 6px; font-size: 0.83rem; color: rgba(255,255,255,0.62); }
.post-hero-meta i { color: var(--accent); }
.post-featured-img { width: 100%; max-width: 900px; height: 420px; object-fit: cover; border-radius: var(--radius-xl); margin: -40px auto 0; display: block; box-shadow: var(--shadow-xl); }
.post-main { padding: 50px 0 80px; }
.post-layout { display: grid; grid-template-columns: 1fr 290px; gap: 50px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.post-content { font-size: 1rem; color: var(--text-medium); line-height: 1.92; }
.post-content h2 { font-size: 1.65rem; color: var(--text-dark); margin: 40px 0 18px; }
.post-content h3 { font-size: 1.22rem; color: var(--text-dark); margin: 30px 0 14px; }
.post-content p  { margin-bottom: 1.4rem; }
.post-content ul, .post-content ol { margin: 0 0 1.4rem 26px; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 9px; color: var(--text-medium); }
.post-content blockquote { border-left: 4px solid var(--accent); padding: 14px 22px; margin: 26px 0; background: rgba(201,168,76,0.05); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--text-dark); }
.toc { background: var(--light-bg); border: 1px solid var(--border-color); border-left: 4px solid var(--accent); border-radius: var(--radius-md); padding: 22px 26px; margin: 0 0 34px; }
.toc h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.08em; }
.toc ol { padding-left: 20px; margin: 0; }
.toc li { font-size: 0.87rem; color: var(--text-medium); padding: 3px 0; }
.toc a { color: var(--accent-dark); transition: var(--transition); }
.toc a:hover { color: var(--accent); }
.post-cta-banner { background: linear-gradient(135deg,var(--primary),var(--primary-light)); border-radius: var(--radius-xl); padding: 38px; text-align: center; margin: 38px 0; border: 1px solid rgba(201,168,76,0.2); }
.post-cta-banner h3 { color: var(--white); margin-bottom: 10px; }
.post-cta-banner p  { color: rgba(255,255,255,0.68); margin-bottom: 22px; font-size: 0.95rem; }
.social-share { display: flex; align-items: center; gap: 12px; margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--border-color); flex-wrap: wrap; }
.share-label  { font-size: 0.87rem; font-weight: 700; color: var(--text-dark); }
.share-btn { display: flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; font-family: var(--font-body); }
.share-btn-fb { background: #1877f2; color: #fff; }
.share-btn-tw { background: #1da1f2; color: #fff; }
.share-btn-li { background: #0a66c2; color: #fff; }
.share-btn:hover { filter: brightness(1.15); transform: translateY(-2px); }
.related-posts { padding: 50px 0 70px; background: var(--light-bg); }
.related-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.post-sidebar  { position: sticky; top: 100px; }

/* ============================================================
   23. CONTACT & LEGAL PAGES
   ============================================================ */
.page-hero { background: linear-gradient(135deg, var(--primary), var(--primary-light)); padding: 120px 0 60px; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.contact-section { padding: 76px 0; background: var(--light-bg); }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; }
.contact-form-card { background: var(--white); border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow-md); }
.contact-form-card h2 { margin-bottom: 6px; font-size: 1.8rem; }
.contact-form-card > p { color: var(--text-light); margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.87rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-control { width: 100%; padding: 13px 18px; border: 1.5px solid var(--border-color); border-radius: var(--radius-md); font-size: 0.95rem; font-family: var(--font-body); color: var(--text-dark); background: var(--white); outline: none; transition: var(--transition); }
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,168,76,0.11); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { min-height: 138px; resize: vertical; }
.form-message { padding: 13px 18px; border-radius: var(--radius-md); font-size: 0.88rem; font-weight: 600; margin-top: 14px; display: none; }
.form-message.success { background: rgba(45,138,91,0.1); color: #2d8a5b; border: 1px solid rgba(45,138,91,0.28); }
.form-message.error   { background: rgba(192,57,43,0.1);  color: var(--crimson); border: 1px solid rgba(192,57,43,0.28); }
.contact-info-card { display: flex; flex-direction: column; gap: 22px; }
.info-block { background: var(--white); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); }
.info-block-header { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.info-icon { width: 46px; height: 46px; background: linear-gradient(135deg,var(--accent),var(--accent-dark)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; }
.info-block h4 { font-size: 0.93rem; color: var(--text-dark); }
.info-block p  { font-size: 0.86rem; color: var(--text-light); margin: 0; line-height: 1.7; }
.legal-content { padding: 65px 0 88px; background: var(--white); }
.legal-wrapper { max-width: 820px; margin: 0 auto; }
.legal-wrapper h2 { font-size: 1.45rem; margin: 38px 0 14px; }
.legal-wrapper h3 { font-size: 1.1rem; margin: 26px 0 11px; }
.legal-wrapper p  { font-size: 0.95rem; color: var(--text-medium); line-height: 1.9; margin-bottom: 14px; }
.legal-wrapper ul { margin: 0 0 18px 28px; list-style: disc; }
.legal-wrapper li { font-size: 0.95rem; color: var(--text-medium); padding: 5px 0; line-height: 1.72; }
.legal-updated { font-size: 0.83rem; color: var(--text-light); font-style: italic; border-left: 3px solid var(--accent); padding-left: 16px; margin-bottom: 34px; }

/* ============================================================
   24. 404 PAGE
   ============================================================ */
.page-404 { min-height: 100vh; background: linear-gradient(135deg,var(--primary),var(--primary-light)); display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; }
.page-404-inner { max-width: 500px; }
.error-number { font-family: var(--font-heading); font-size: 9rem; font-weight: 900; color: var(--accent); line-height: 1; }
.page-404 h2 { color: var(--white); margin-bottom: 14px; font-size: 1.85rem; }
.page-404 p  { color: rgba(255,255,255,0.68); margin-bottom: 34px; font-size: 1.05rem; }

/* ============================================================
   25. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .ingredients-grid { grid-template-columns: repeat(2,1fr); }
    .trust-grid { grid-template-columns: repeat(3,1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content { padding-right: 0; }
    .hero-image-wrap { max-width: 380px; margin: 0 auto; }
    .hero-cta-group, .hero-trust-badges { justify-content: center; }
    .hero-star-badge { left: 0; }
    .why-grid, .steps-grid { grid-template-columns: repeat(2,1fr); }
    .benefits-grid { grid-template-columns: repeat(2,1fr); }
    .love-grid { grid-template-columns: 1fr; }
    .love-image-wrap { max-width: 480px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: repeat(2,1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card.popular { transform: scale(1); }
    .steps-grid::before { display: none; }
    .blog-layout { grid-template-columns: 1fr; }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-img { height: 220px; }
    .blog-sidebar, .post-sidebar { position: static; }
    .post-layout { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: repeat(2,1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
}
@media (max-width: 768px) {
    .section-pad { padding: 60px 0; }
    .why-grid, .benefits-grid, .steps-grid { grid-template-columns: 1fr; }
    .ingredients-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid { grid-template-columns: repeat(2,1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-cards-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .love-features { grid-template-columns: 1fr; }
    .contact-form-card { padding: 30px 22px; }
    .post-featured-img { height: 240px; border-radius: var(--radius-lg); }
    .countdown-banner { flex-direction: column; gap: 14px; }
    .hero-star-badge, .hero-guarantee-badge { display: none; }
    .post-hero h1 { font-size: 1.75rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .ingredients-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 1.95rem; }
    .error-number { font-size: 6rem; }
}