/* ==========================================================================
   OPTIPLAX - ADVANCED STYLESHEET (MOBILE & ALIGNMENT FIXED)
   ========================================================================== */

/* ===== GLOBAL RESETS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ==========================================================================
   CSS CUSTOM PROPERTIES (BRAND TOKENS)
   ========================================================================== */
:root {
  /* === OPTIPLAX BRAND COLORS === */
  --brand-primary:   #0066CC;   /* Clear Vision Blue – hero, headings, CTA bg */
  --brand-secondary: #004C99;   /* Darker Medical Blue for hover states */
  --brand-accent:    #0066CC;   
  --brand-gold:      #F4A800;   
  --brand-green:     #27AE60;   
  --brand-red:       #e74c3c;   
  --white:           #ffffff;
  --bg-light:        #F0F4FA;   
  --bg-dark:         #0E1B2E;   
  --text-main:       #0E1B2E;   
  --text-muted:      #4A5568;   
  --border-color:    #D4E3F5;   

  /* Shadows */
  --shadow-sm: 0 2px  8px rgba(0, 102, 204, 0.10);
  --shadow-md: 0 4px 20px rgba(0, 102, 204, 0.18);
  --shadow-lg: 0 12px 35px rgba(0, 102, 204, 0.28);

  /* === TYPOGRAPHY SCALE === */
  --f-xs:    0.95rem;
  --f-sm:    1.05rem;
  --f-body:  1.15rem;
  --f-md:    1.35rem;
  --f-lg:    1.55rem;
  --f-xl:    2.0rem;
  --f-2xl:   2.5rem;
  --f-3xl:   3.1rem;
  --f-price: 3.4rem;
  --lh-body: 1.8;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: var(--f-body);
  line-height: var(--lh-body);
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-family: 'Poppins', 'Inter', sans-serif; font-size: var(--f-3xl); font-weight: 800; line-height: 1.2; }
h2 { font-size: var(--f-2xl); font-weight: 800; line-height: 1.25; }
h3 { font-size: var(--f-xl);  font-weight: 700; line-height: 1.3;  }
h4 { font-size: var(--f-lg);  font-weight: 700; line-height: 1.35; }
p, li { font-size: var(--f-body); line-height: var(--lh-body); margin-bottom: 16px; text-align: left; }
a { text-decoration: none; color: var(--brand-primary); }

/* ===== UTILITIES ===== */
.section   { padding: 80px 24px; }
.bg-light  { background: var(--bg-light); }
.sec-title { text-align: center; font-size: var(--f-2xl); font-weight: 900; color: var(--text-main); margin-bottom: 16px; }
.sec-sub { text-align: center; font-size: var(--f-md); color: var(--text-muted); margin-bottom: 50px; max-width: 900px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* ===== NAVIGATION ===== */
.main-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); box-shadow: var(--shadow-sm); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 80px; padding: 0 24px; }
.nav-logo img { max-width: 180px; height: auto; display: block; }
.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-links a { color: var(--text-main); font-weight: 600; font-size: var(--f-sm); transition: color .2s; }
.nav-links a:hover { color: var(--brand-primary); }
.btn-nav { background: var(--brand-primary); color: var(--white) !important; padding: 12px 30px; border-radius: 6px; font-weight: 700; font-size: var(--f-sm); transition: all .2s; }
.btn-nav:hover { background: var(--brand-secondary); }
.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 30px; height: 3px; background: var(--text-main); border-radius: 2px; }
.mob-menu { display: none; flex-direction: column; gap: 18px; padding: 20px 24px; background: var(--white); border-top: 1px solid var(--border-color); }
.mob-menu.open { display: flex; }
.mob-menu a { color: var(--text-main); font-weight: 600; font-size: var(--f-md); }

/* ===== HERO SECTION ===== */
.hero { padding: 70px 24px; background: linear-gradient(90deg, #E3F2FD 72%, var(--brand-primary) 72%); border-bottom: 1px solid var(--border-color); overflow-x: hidden; }
.hero-grid { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; }
.hero-img { order: 1; display: flex; justify-content: center; align-items: center; }
.hero-content { order: 2; text-align: left; }
.hero-content h1 { color: var(--text-main); font-size: var(--f-3xl); margin-bottom: 20px; letter-spacing: -0.5px; line-height: 1.2; }
.hero-content h1 span { color: #ff0000; }
.hero-content p { color: var(--text-muted); margin-bottom: 18px; font-size: var(--f-lg); text-align: left; font-weight: 400; }
.hero-benefits-list { list-style: none; margin-bottom: 20px; }
.hero-benefits-list li { font-size: 1.15rem; color: var(--text-main); margin-bottom: 10px; font-weight: 500; }
.hero-benefits-list li strong { color: var(--brand-primary); }
.hero-img img { width: 100%; max-width: 420px; height: auto; margin: 0 auto; display: block; filter: drop-shadow(0 15px 30px rgba(0, 102, 204, 0.18)); }
.hero-badges img { max-width: 420px; width: 100%; height: auto; display: block; margin-top: 20px; }
.trust-stars { font-size: 1.3rem; font-weight: 700; color: var(--brand-gold); margin-bottom: 14px; }
.trust-stars span { font-size: 0.95rem; color: #000000; margin-left: 8px; font-weight: 500; }

/* ===== BUTTONS ===== */
.btn-hero { display: inline-block; background: linear-gradient(to bottom, #FFDF73, #F4A800); color: #1A1A1A !important; padding: 18px 45px; border-radius: 50px; font-weight: 800; font-size: 1.2rem; margin-top: 15px; box-shadow: 0 6px 0 #C98A00, 0 10px 20px rgba(0,0,0,0.20); transition: all 0.3s ease; text-align: center; text-transform: uppercase; letter-spacing: 1px; border: 2px solid #FFF3C4; }
.btn-hero:hover { background: linear-gradient(to bottom, #F4A800, #FFDF73); transform: translateY(3px); box-shadow: 0 3px 0 #C98A00, 0 6px 15px rgba(0,0,0,0.20); }

.btn-gold-pill { display: inline-block; background: linear-gradient(to bottom, #FFDF73, #F4A800); color: #1A1A1A !important; padding: 22px 55px; border-radius: 50px; font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 1.5rem; text-transform: uppercase; text-align: center; letter-spacing: 1px; box-shadow: 0 8px 0 #C98A00, 0 15px 25px rgba(0,0,0,0.15); transition: all 0.2s ease-in-out; text-decoration: none; border: 2px solid #FFF3C4; width: 100%; max-width: 500px; }
.btn-gold-pill:hover { background: linear-gradient(to bottom, #F4A800, #FFDF73); transform: translateY(4px); box-shadow: 0 4px 0 #C98A00, 0 10px 15px rgba(0,0,0,0.15); }
.cta-wrapper { text-align: center; margin-top: 60px; margin-bottom: 40px; }

/* ===== BENEFIT BADGES STRIP ===== */
.badges-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.badge-card { text-align: center; padding: 35px 20px; border: 2px solid var(--border-color); border-radius: 12px; background: var(--white); transition: all .3s; }
.badge-card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.badge-card img { width: 70px; height: 70px; object-fit: contain; margin-bottom: 15px; }
.badge-card h4 { color: var(--brand-primary); font-size: 1.15rem; margin-bottom: 8px; }
.badge-card p { color: var(--text-muted); font-size: var(--f-xs); margin-bottom: 0; line-height: 1.5; }

/* ===== NEW INGREDIENT GRID ===== */
.new-ingredient-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 30px; }
.new-ing-card { background: #ffffff; padding: 25px; border-radius: 16px; box-shadow: 0 8px 25px rgba(0, 102, 204, 0.08); border-bottom: 5px solid var(--brand-primary); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-top: 1px solid #eaeaea; border-left: 1px solid #eaeaea; border-right: 1px solid #eaeaea; }
.new-ing-card:hover { transform: translateY(-8px); box-shadow: 0 12px 35px rgba(0, 102, 204, 0.18); border-bottom: 5px solid var(--brand-secondary); }
.new-ing-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 20px; }
.new-ing-card h4 { font-family: 'Poppins', sans-serif; font-size: 1.4rem; color: var(--brand-secondary); margin-bottom: 12px; }
.new-ing-card p { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #4a5568; line-height: 1.6; margin-bottom: 0; }

.ing-features { display: flex; justify-content: center; gap: 30px; margin-bottom: 48px; flex-wrap: wrap; }
.feature-badge { text-align: center; }
.feature-badge img { width: 60px; height: 60px; object-fit: contain; }
.feature-badge p { margin-top: 10px; font-weight: 600; color: var(--text-main); font-size: var(--f-xs); margin-bottom: 0; }

/* ===== BONUS SECTION ===== */
.bonus-section-wrapper { background: linear-gradient(135deg, #F0F4FA 0%, #ffffff 100%); padding: 80px 20px; }
.bonus-pre-title { color: var(--brand-primary); font-weight: 800; font-size: 1.1rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; text-align: center; }
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.bonus-card { background: #ffffff; padding: 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1); border: 1px solid var(--border-color); text-align: left; transition: transform 0.3s ease; display: flex; flex-direction: column;}
.bonus-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.bonus-label { background: var(--brand-secondary); color: #ffffff; padding: 6px 16px; border-radius: 30px; font-weight: 700; font-size: 0.8rem; display: inline-block; margin-bottom: 20px; align-self: flex-start; }
.bonus-card h4 { font-size: 1.3rem; color: var(--brand-secondary); margin-bottom: 15px; line-height: 1.4; min-height: 60px; }
.bonus-card img { width: 100%; max-width: 240px; margin: 0 auto 18px; display: block; }
.bonus-card p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; flex-grow: 1; }
.bonus-price { margin-top: auto; padding-top: 15px; border-top: 1px solid #eee; }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.testi-card { background: var(--white); border-radius: 15px; padding: 38px 28px; text-align: center; border: 1px solid #EAEAEA; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.testi-photo { width: 108px; height: 108px; border-radius: 50%; object-fit: cover; margin: 0 auto 18px; border: 4px solid var(--brand-primary); display: block; }
.testi-stars { font-size: 1.4rem; color: var(--brand-gold); margin-bottom: 8px; }
.testi-verified { color: var(--brand-green); font-weight: 700; font-size: 0.92rem; margin-bottom: 18px; }
.testi-text { font-style: italic; color: var(--text-muted); margin-bottom: 22px; line-height: 1.75; font-size: 1.02rem; }
.testi-name { font-weight: 700; color: var(--brand-primary); font-size: 1.15rem; }

/* ===== PRICING SECTION ===== */
.pricing-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; align-items: stretch; }
.p-card { flex: 1; min-width: 290px; background: var(--white); border: 2px solid var(--border-color); border-radius: 12px; padding: 30px 16px 18px; text-align: center; box-shadow: 0 2px 12px rgba(0, 102, 204, 0.07); display: flex; flex-direction: column; align-items: center; transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.p-card.pop { border-color: var(--brand-primary); box-shadow: 0 8px 30px rgba(0, 102, 204, 0.25); }
.p-card .pop-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--brand-gold); color: #000; font-weight: 800; font-size: 0.88rem; padding: 6px 22px; border-radius: 20px; white-space: nowrap; letter-spacing: 0.5px; }
.p-card h3 { font-size: 1.65rem; color: var(--brand-primary); margin-bottom: 6px; font-weight: 800; }
.p-card .supply { color: #666; font-size: 1.05rem; margin-bottom: 18px; }
.p-card a.img-link { margin-bottom: 18px; min-height: 190px; display: flex; align-items: center; }
.p-card .img-link img { max-width: 160px; }
.price-big { font-size: var(--f-price); color: var(--brand-primary); font-weight: 900; line-height: 1; margin-bottom: 14px; }
.price-big span { font-size: 1.15rem; font-weight: 600; }
.savings-row { font-size: 1.05rem; color: #888; margin-bottom: 6px; font-weight: 600; }
.savings-row strong { color: var(--text-main); font-size: 1.25rem; }
.badge-save { background: #c4c4c4; color: var(--white); font-size: 0.88rem; font-weight: 700; padding: 6px 20px; border-radius: 20px; margin-bottom: 8px; display: inline-flex; align-items: center; width: 84%; justify-content: center; }
.badge-guarantee { background: #7bc124; color: var(--white); font-size: 0.88rem; font-weight: 700; padding: 6px 20px; border-radius: 20px; margin-bottom: 18px; display: inline-flex; align-items: center; width: 84%; justify-content: center; }
.badge-ship { background: var(--brand-green); color: var(--white); font-size: 0.88rem; font-weight: 700; padding: 6px 20px; border-radius: 20px; margin-bottom: 8px; display: inline-flex; align-items: center; width: 84%; justify-content: center; }
.btn-buy { background: var(--brand-primary); color: var(--white) !important; padding: 15px 12px; border-radius: 30px; font-weight: 800; font-size: 1.4rem; width: 90%; display: block; margin-bottom: 18px; box-shadow: 0 4px 0 var(--brand-secondary); text-transform: uppercase; text-align: center; transition: all 0.2s; }
.btn-buy:hover { background: var(--brand-secondary); transform: translateY(-2px); }

/* --- FIX FOR: "Our Customers Say..." text centering --- */
.pricing-grid + p { text-align: center !important; width: 100%; display: block; margin-left: auto; margin-right: auto; }

/* ===== GUARANTEE BLOCK ===== */
.guarantee-block { background: var(--white); border: 2px solid var(--border-color); border-radius: 16px; padding: 50px 40px; max-width: 900px; margin: 0 auto; box-shadow: var(--shadow-md); }
.guarantee-inner { display: flex; gap: 40px; align-items: center; }
.guarantee-inner img { width: 180px; flex-shrink: 0; }
.guarantee-inner h3 { color: var(--brand-primary); margin-bottom: 14px; }
.guarantee-inner p { margin-bottom: 0; }

/* ===== FAQ ===== */
.faq-list { max-width: 950px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 12px; margin-bottom: 14px; border: 1px solid var(--border-color); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; background: none; border: none; padding: 22px 28px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: var(--f-lg); font-weight: 700; color: var(--brand-primary); font-family: inherit; }
.faq-arrow { color: var(--brand-secondary); transition: transform .3s; font-size: 1.5rem; font-weight: bold; }
.faq-ans { max-height: 0; overflow: hidden; transition: all .4s ease; padding: 0 28px; }
.faq-item.open .faq-ans { max-height: 900px; padding: 0 28px 24px; }

/* ===== REFERENCES ===== */
.references-list { font-size: 0.84rem; color: #666; line-height: 1.6; column-count: 2; column-gap: 40px; }
.references-list ol { padding-left: 18px; margin: 0; }
.references-list li { margin-bottom: 10px; }

/* ===== FOOTER ===== */
footer { background: var(--bg-dark); color: #CCCCCC; padding: 70px 24px 40px; text-align: center; position: relative; z-index: 10; }
.foot-disc { max-width: 1100px; margin: 0 auto; font-size: 0.92rem; line-height: 1.7; text-align: justify; text-align-last: center; }
.foot-disc p { margin-bottom: 12px; }
nav.foot-links, .foot-links { display: flex !important; justify-content: center; gap: 28px; margin: 36px 0 22px; flex-wrap: wrap; position: static !important; top: auto !important; background: transparent !important; box-shadow: none !important; width: auto !important; }
.foot-links a { color: #CCCCCC; font-weight: 600; font-size: 0.92rem; letter-spacing: 0.4px; transition: color 0.2s; }
.foot-links a:hover { color: var(--white); }
.foot-copy { font-size: 0.88rem; color: #888888; margin-top: 14px; }

/* ===== COOKIE GDPR BANNER ===== */
.cookie-banner { position: fixed; bottom: 20px; left: 16px; right: 16px; background: #1A2B3C; color: var(--white); padding: 16px 20px; border-radius: 10px; z-index: 9999; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 6px 20px rgba(0,0,0,0.35); font-family: 'Inter', 'Poppins', sans-serif; gap: 16px; }
.cookie-banner p { margin: 0; font-size: 0.88rem; text-align: left; color: #ccc; }
.cookie-accept { background: var(--brand-primary); color: var(--white); border: none; padding: 10px 22px; border-radius: 6px; cursor: pointer; font-weight: 700; white-space: nowrap; flex-shrink: 0; font-size: 0.92rem; transition: background 0.2s; }
.cookie-accept:hover { background: var(--brand-secondary); }

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE FIXES APPLIED HERE)
   ========================================================================== */

/* ---- Tablet (max 1024px) ---- */
@media (max-width: 1024px) {
  :root { --f-body: 1.05rem; --f-md: 1.2rem; --f-lg: 1.35rem; --f-xl: 1.7rem; --f-2xl: 2.05rem; --f-3xl: 2.5rem; --f-price:2.8rem; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  /* FIX 1: Solid smooth gradient, no hard stop */
  .hero { padding: 0 0 40px 0; background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-primary) 100%) !important; }
  .hero-grid { grid-template-columns: 1fr !important; gap: 20px; padding: 0 20px !important; }
  .hero-img { order: 1; padding-top: 28px; }
  .hero-content { order: 2; text-align: center; }
  
  /* Ensuring Text is pure white and readable on dark blue background */
  .hero-content p { color: #ffffff !important; opacity: 0.95; }
  .hero-img img { max-width: 260px; }
  .hero-content h1 { font-size: var(--f-2xl); color: var(--white); }
  .hero-benefits-list li { color: #ffffff !important; }
  .hero-benefits-list li strong { color: #FFDF73 !important; }
  .hero-badges { text-align: center; }
  .hero-badges img { margin: 12px auto 0; max-width: 100%; }

  .section { padding: 60px 20px; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin: 0 auto; }
  .pricing-grid { flex-direction: column; max-width: 480px; margin: 0 auto; }
  .p-card { min-width: unset; width: 100%; }
  .testi-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
  .guarantee-inner { flex-direction: column; text-align: center; }
  .guarantee-inner img { margin: 0 auto; }
  .references-list { column-count: 1; }
}

/* ---- Mobile (max 768px) ---- */
@media (max-width: 768px) {
  :root { --f-body: 1.0rem; --f-md: 1.08rem; --f-lg: 1.2rem; --f-xl: 1.5rem; --f-2xl: 1.8rem; --f-3xl: 2.05rem; --f-price:2.2rem; }
  
  .nav-inner { padding: 0 16px; }
  .nav-logo img { max-width: 150px; }

  /* FIX 2: Mobile Hero Gradient */
  .hero { padding: 0 0 36px 0 !important; background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-primary) 100%) !important; }
  .hero-grid { padding: 0 16px !important; gap: 16px !important; }
  .hero-img { order: 1; padding-top: 24px; }
  .hero-content { order: 2; text-align: center; }
  .hero-img img { max-width: 220px; }
  .hero-content h1 { font-size: 1.65rem; line-height: 1.3; margin-bottom: 12px; color: #ffffff !important;}
  .hero-content p { font-size: 0.96rem; text-align: center; color: #ffffff !important; }
  .hero-benefits-list li { color: #ffffff !important; text-align: center;}
  .hero-badges img { max-width: 100% !important; margin: 10px auto 0; }

  .btn-gold-pill { font-size: 1.1rem; padding: 16px 20px; width: 100%; box-sizing: border-box; }
  .btn-hero { font-size: 1.1rem; padding: 14px 20px; width: 100%; display: block; box-sizing: border-box; }

  .section { padding: 48px 16px; }
  .wrap { padding: 0; overflow: hidden; } 
  .sec-title { font-size: 1.65rem; }
  .sec-sub { font-size: 0.98rem; margin-bottom: 28px; }

  .badges-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .badge-card { padding: 20px 12px; }
  .badge-card img { width: 56px; height: 56px; }

  .new-ingredient-grid { grid-template-columns: 1fr !important; gap: 20px !important; margin-top: 20px; }
  .new-ing-card { padding: 20px !important; }
  .new-ing-card img { height: 160px; max-width: 100%; object-fit: cover; }

  .ing-features { gap: 14px !important; }
  .feature-badge { width: calc(50% - 10px); }
  .feature-badge p { font-size: 0.83rem; }

  .bonus-grid { grid-template-columns: 1fr !important; gap: 20px !important; margin-top: 20px; }
  .bonus-card { width: 100% !important; padding: 20px !important; box-sizing: border-box; }
  .bonus-card img { max-width: 100%; height: auto; }

  .testi-card { padding: 26px 18px !important; }
  .testi-text { font-size: 0.93rem !important; }

  .guarantee-block { padding: 36px 22px; width: 100%; box-sizing: border-box; }
  .guarantee-inner img { width: 130px; }
  .guarantee-inner h3 { font-size: 1.35rem; }

  .foot-disc { text-align: left; text-align-last: left; padding: 0 4px; }
  .foot-links { gap: 10px 18px; }
  .foot-links a { font-size: 0.85rem; }

  .cookie-banner { flex-direction: column; gap: 10px; text-align: center; }
  .cookie-accept { width: 100%; }

  .faq-q { font-size: 1.0rem; padding: 18px 18px; }
  .faq-ans { padding: 0 18px; }
  .faq-item.open .faq-ans { padding: 0 18px 18px; }
}

/* ---- Small Mobile (max 480px) ---- */
@media (max-width: 480px) {
  :root { --f-body: 0.93rem; --f-md: 1.02rem; --f-lg: 1.12rem; --f-xl: 1.38rem; --f-2xl: 1.62rem; --f-3xl: 1.85rem; --f-price:2.0rem; }

  /* FIX 3: Very Small Mobile Hero Gradient */
  .hero { background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-primary) 100%) !important; }
  .hero-content h1 { font-size: 1.48rem; color: #ffffff !important;}
  .hero-img img { max-width: 200px; }

  .btn-gold-pill { font-size: 1rem; padding: 14px 15px; }
  .btn-hero { font-size: 1rem; padding: 14px 15px; }

  .new-ingredient-grid { grid-template-columns: 1fr !important; }
  .badges-grid { grid-template-columns: 1fr !important; max-width: 100%; padding: 0 10px; }
  .feature-badge { width: 100%; }
  
  .nav-logo img { max-width: 130px; }
  .section { padding: 38px 14px; }
  
  .price-big { font-size: 2.2rem; }
  .p-card h3 { font-size: 1.4rem; }
}

/* ===== REDUCED MOTION PREFERENCE ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}