/* =============================================
   MAX FORCE GUMMIES – MAIN STYLESHEET
   Domain: maxforcegummies.org
   ============================================= */

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

:root {
  --mf-navy:    #1a2744;
  --mf-blue:    #2c4a8c;
  --mf-gold:    #c9982a;
  --mf-gold-lt: #f0c84e;
  --mf-cream:   #f8f5ee;
  --mf-white:   #ffffff;
  --mf-text:    #1e2530;
  --mf-muted:   #5a6475;
  --mf-border:  #dde3ef;
  --mf-green:   #2e7d32;
  --mf-red-btn: #c0392b;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(26,39,68,.10);
  --shadow-md:  0 6px 24px rgba(26,39,68,.14);
  --shadow-lg:  0 12px 40px rgba(26,39,68,.18);
  --font-main:  'Inter', 'Segoe UI', Arial, sans-serif;
  --max-w:      1120px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-main); font-size: 19px; line-height: 1.7; color: var(--mf-text); background: var(--mf-white); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--mf-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

.mf-container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.mf-section { padding: 72px 0; }
.mf-section-alt { background: var(--mf-cream); }

/* --- Buttons --- */
.mf-btn {
  display: inline-block;
  background: var(--mf-gold);
  color: var(--mf-navy);
  font-weight: 700;
  font-size: 17px;
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: .3px;
  transition: background .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 4px 14px rgba(201,152,42,.35);
  border: none; cursor: pointer;
}
.mf-btn:hover { background: var(--mf-gold-lt); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(201,152,42,.45); text-decoration: none; }
.mf-btn-lg { font-size: 19px; padding: 18px 44px; }
.mf-btn-red { background: #d63031; color: #fff; box-shadow: 0 4px 14px rgba(214,48,49,.35); }
.mf-btn-red:hover { background: #b71c1c; box-shadow: 0 8px 22px rgba(214,48,49,.45); }

/* --- Header --- */
.mf-header {
  background: var(--mf-navy);
  position: sticky; top: 0; z-index: 900;
  box-shadow: 0 2px 16px rgba(26,39,68,.25);
}
.mf-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; max-width: var(--max-w); margin: 0 auto; }
.mf-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.mf-logo img { height: 48px; width: auto; }
.mf-logo-text { color: var(--mf-white); font-size: 22px; font-weight: 800; letter-spacing: -.5px; }
.mf-logo-text span { color: var(--mf-gold); }

.mf-nav { display: flex; align-items: center; gap: 6px; }
.mf-nav a { color: rgba(255,255,255,.85); font-size: 15px; font-weight: 500; padding: 6px 12px; border-radius: var(--radius-sm); transition: color .15s, background .15s; }
.mf-nav a:hover { color: #fff; background: rgba(255,255,255,.1); text-decoration: none; }
.mf-nav .mf-nav-cta { background: var(--mf-gold); color: var(--mf-navy); font-weight: 700; padding: 8px 18px; }
.mf-nav .mf-nav-cta:hover { background: var(--mf-gold-lt); }

.mf-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.mf-hamburger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }
.mf-mobile-nav { display: none; background: #1e2f58; padding: 12px 20px 18px; }
.mf-mobile-nav.open { display: block; }
.mf-mobile-nav a { display: block; color: rgba(255,255,255,.9); padding: 9px 4px; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.mf-mobile-nav a:last-child { border-bottom: none; }

/* --- Hero --- */
.mf-hero {
  background: linear-gradient(135deg, #0f1c3a 0%, #1a2f5e 55%, #243570 100%);
  padding: 64px 0 56px;
  position: relative; overflow: hidden;
}
.mf-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,152,42,.12) 0%, transparent 65%);
  pointer-events: none;
}
.mf-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; }
.mf-hero-text {}
.mf-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,152,42,.18); border: 1px solid rgba(201,152,42,.4); color: var(--mf-gold-lt); font-size: 13px; font-weight: 600; padding: 5px 14px; border-radius: 100px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .6px; }
.mf-hero h1 { font-size: 32px; font-weight: 800; color: #fff; line-height: 1.22; margin-bottom: 18px; }
.mf-hero h1 span { color: var(--mf-gold-lt); }
.mf-hero-intro { color: rgba(255,255,255,.82); font-size: 18px; margin-bottom: 24px; line-height: 1.65; }
.mf-hero-benefits { margin-bottom: 30px; }
.mf-hero-benefits li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.88); font-size: 16px; margin-bottom: 10px; }
.mf-hero-benefits li::before { content: '✓'; color: var(--mf-gold); font-weight: 700; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.mf-hero-cta-wrap { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.mf-hero-sub { color: rgba(255,255,255,.6); font-size: 14px; }
.mf-hero-trust { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 22px; }
.mf-hero-trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.75); font-size: 13.5px; }
.mf-hero-trust-item::before { content: '🔒'; font-size: 15px; }

.mf-hero-image { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.mf-hero-img-main { max-width: 380px; width: 100%; filter: drop-shadow(0 16px 40px rgba(0,0,0,.45)); }
.mf-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
.mf-hero-stat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); padding: 14px; text-align: center; }
.mf-hero-stat-num { font-size: 24px; font-weight: 800; color: var(--mf-gold-lt); }
.mf-hero-stat-lbl { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 2px; }

/* --- Section headings --- */
.mf-section-tag { display: inline-block; background: rgba(44,74,140,.10); color: var(--mf-blue); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px; }
.mf-section-heading { font-size: 28px; font-weight: 800; color: var(--mf-navy); line-height: 1.28; margin-bottom: 14px; }
.mf-section-sub { font-size: 18px; color: var(--mf-muted); margin-bottom: 36px; max-width: 660px; }
.mf-text-center { text-align: center; }
.mf-text-center .mf-section-sub { margin-left: auto; margin-right: auto; }

/* --- Why Choose --- */
.mf-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.mf-why-card { background: #fff; border: 1px solid var(--mf-border); border-radius: var(--radius-md); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.mf-why-icon { font-size: 32px; margin-bottom: 14px; }
.mf-why-card h3 { font-size: 17px; font-weight: 700; color: var(--mf-navy); margin-bottom: 10px; }
.mf-why-card p { font-size: 16px; color: var(--mf-muted); line-height: 1.6; }

/* --- Pricing Section --- */
.mf-pricing-section { background: linear-gradient(160deg, #0f1c3a 0%, #1a2f5e 100%); padding: 72px 0; }
.mf-pricing-section .mf-section-heading { color: #fff; }
.mf-pricing-section .mf-section-sub { color: rgba(255,255,255,.7); }
.mf-pricing-section .mf-section-tag { background: rgba(201,152,42,.2); color: var(--mf-gold-lt); }
.mf-stock-notice { text-align: center; background: rgba(214,48,49,.15); border: 1px solid rgba(214,48,49,.3); color: #ff8a80; font-size: 14px; font-weight: 600; padding: 8px 20px; border-radius: var(--radius-sm); display: inline-block; margin-bottom: 32px; }
.mf-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.mf-pricing-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 24px 28px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; box-shadow: var(--shadow-md);
}
.mf-pricing-card.mf-popular { border: 3px solid var(--mf-gold); transform: scale(1.04); }
.mf-pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--mf-gold); color: var(--mf-navy); font-size: 12px; font-weight: 800; padding: 4px 16px; border-radius: 100px; white-space: nowrap; text-transform: uppercase; letter-spacing: .5px; }
.mf-pricing-pkg { font-size: 13px; font-weight: 700; color: var(--mf-muted); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 8px; }
.mf-pricing-img { height: 200px; width: auto; max-width: 100%; object-fit: contain; margin: 10px auto 18px; display: block; }
.mf-pricing-ppb { font-size: 32px; font-weight: 800; color: var(--mf-navy); line-height: 1; }
.mf-pricing-ppb-lbl { font-size: 13px; color: var(--mf-muted); margin-bottom: 4px; }
.mf-pricing-reg { font-size: 14px; color: var(--mf-muted); text-decoration: line-through; margin-bottom: 6px; }
.mf-pricing-savings { font-size: 13px; font-weight: 700; color: var(--mf-green); background: rgba(46,125,50,.08); padding: 3px 10px; border-radius: 100px; margin-bottom: 14px; }
.mf-pricing-total { font-size: 22px; font-weight: 800; color: var(--mf-navy); margin-bottom: 6px; }
.mf-pricing-shipping { font-size: 13px; color: var(--mf-green); font-weight: 600; margin-bottom: 4px; }
.mf-pricing-guarantee { font-size: 12px; color: var(--mf-muted); margin-bottom: 18px; }
.mf-pricing-card .mf-btn { width: 100%; text-align: center; }
.mf-pricing-payments { margin-top: 14px; }
.mf-pricing-payments img { max-width: 180px; height: auto; }
.mf-guarantee-note { text-align: center; margin-top: 36px; color: rgba(255,255,255,.75); font-size: 15px; }
.mf-guarantee-note strong { color: #fff; }

/* --- What Is / How Works --- */
.mf-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mf-split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.mf-split-img img { width: 100%; }
.mf-split-text h2 { font-size: 28px; font-weight: 800; color: var(--mf-navy); margin-bottom: 16px; line-height: 1.28; }
.mf-split-text p { font-size: 17px; color: #3a4356; margin-bottom: 14px; line-height: 1.7; }
.mf-split-text ul { margin: 12px 0; }
.mf-split-text ul li { display: flex; align-items: flex-start; gap: 9px; font-size: 16px; color: #3a4356; margin-bottom: 9px; }
.mf-split-text ul li::before { content: '→'; color: var(--mf-gold); font-weight: 700; flex-shrink: 0; }

/* --- Reviews --- */
.mf-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.mf-review-card { background: #fff; border: 1px solid var(--mf-border); border-radius: var(--radius-md); padding: 26px 22px; box-shadow: var(--shadow-sm); }
.mf-review-stars { color: #f4b400; font-size: 18px; margin-bottom: 10px; }
.mf-review-text { font-size: 16px; color: #3a4356; line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.mf-review-author { display: flex; align-items: center; gap: 10px; }
.mf-review-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--mf-blue), var(--mf-navy)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.mf-review-name { font-weight: 700; font-size: 15px; color: var(--mf-navy); }
.mf-review-location { font-size: 13px; color: var(--mf-muted); }

/* --- Ingredients --- */
.mf-ingredients-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px; }
.mf-ingredient-card { background: #fff; border: 1px solid var(--mf-border); border-radius: var(--radius-md); padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; gap: 18px; }
.mf-ingredient-img-wrap { flex-shrink: 0; width: 90px; display: flex; align-items: flex-start; }
.mf-ingredient-img-wrap img { width: 90px; height: 90px; object-fit: contain; border-radius: var(--radius-sm); }
.mf-ingredient-body {}
.mf-ingredient-body h3 { font-size: 17px; font-weight: 800; color: var(--mf-navy); margin-bottom: 4px; }
.mf-ingredient-tag { font-size: 12px; background: rgba(44,74,140,.08); color: var(--mf-blue); padding: 2px 9px; border-radius: 100px; margin-bottom: 8px; display: inline-block; }
.mf-ingredient-body p { font-size: 15px; color: #3a4356; line-height: 1.6; }

/* --- Scientifically Formulated --- */
.mf-sci-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.mf-sci-card { text-align: center; padding: 32px 20px; }
.mf-sci-icon { font-size: 44px; margin-bottom: 14px; }
.mf-sci-card h3 { font-size: 17px; font-weight: 800; color: var(--mf-navy); margin-bottom: 10px; }
.mf-sci-card p { font-size: 15px; color: var(--mf-muted); line-height: 1.6; }

/* --- Benefits --- */
.mf-benefits-list { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.mf-benefit-item { display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: flex-start; background: #fff; border: 1px solid var(--mf-border); border-radius: var(--radius-md); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.mf-benefit-num { font-size: 40px; font-weight: 900; color: var(--mf-gold); opacity: .35; line-height: 1; }
.mf-benefit-text h3 { font-size: 18px; font-weight: 800; color: var(--mf-navy); margin-bottom: 6px; }
.mf-benefit-keys { font-size: 13px; color: var(--mf-blue); font-weight: 600; margin-bottom: 8px; }
.mf-benefit-text p { font-size: 16px; color: #3a4356; line-height: 1.65; }

/* --- Guarantee --- */
.mf-guarantee-section { background: linear-gradient(135deg, #1a2744 0%, #243e80 100%); padding: 72px 0; }
.mf-guarantee-inner { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; }
.mf-guarantee-seal { text-align: center; flex-shrink: 0; }
.mf-guarantee-seal-circle { width: 160px; height: 160px; border-radius: 50%; background: linear-gradient(135deg, var(--mf-gold) 0%, #e8b820 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto; box-shadow: 0 8px 30px rgba(201,152,42,.4); }
.mf-guarantee-seal-days { font-size: 42px; font-weight: 900; color: var(--mf-navy); line-height: 1; }
.mf-guarantee-seal-lbl { font-size: 11px; font-weight: 700; color: var(--mf-navy); text-transform: uppercase; letter-spacing: .5px; line-height: 1.3; text-align: center; }
.mf-guarantee-text h2 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.mf-guarantee-text p { font-size: 17px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 12px; }

/* --- FAQ --- */
.mf-faq-list { max-width: 780px; margin: 40px auto 0; }
.mf-faq-item { border-bottom: 1px solid var(--mf-border); }
.mf-faq-q { width: 100%; background: none; border: none; text-align: left; cursor: pointer; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.mf-faq-q-text { font-size: 17px; font-weight: 700; color: var(--mf-navy); }
.mf-faq-icon { font-size: 22px; color: var(--mf-gold); font-weight: 700; flex-shrink: 0; line-height: 1; transition: transform .2s; }
.mf-faq-item.open .mf-faq-icon { transform: rotate(45deg); }
.mf-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.mf-faq-a-inner { font-size: 16px; color: #3a4356; line-height: 1.7; padding-bottom: 18px; }
.mf-faq-item.open .mf-faq-a { max-height: 600px; }

/* --- Final CTA --- */
.mf-final-cta { background: linear-gradient(135deg, #c9982a 0%, #e8b820 50%, #c9982a 100%); padding: 72px 0; text-align: center; }
.mf-final-cta h2 { font-size: 30px; font-weight: 900; color: var(--mf-navy); margin-bottom: 14px; line-height: 1.22; }
.mf-final-cta p { font-size: 18px; color: rgba(26,39,68,.8); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.mf-final-cta .mf-btn { background: var(--mf-navy); color: #fff; font-size: 19px; padding: 18px 48px; box-shadow: 0 6px 20px rgba(26,39,68,.35); }
.mf-final-cta .mf-btn:hover { background: #0f1c3a; }

/* --- Footer --- */
.mf-footer { background: #0d1529; padding: 52px 0 28px; }
.mf-footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.mf-footer-brand h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.mf-footer-brand h3 span { color: var(--mf-gold); }
.mf-footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; }
.mf-footer-col h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; }
.mf-footer-col a { display: block; color: rgba(255,255,255,.5); font-size: 14px; margin-bottom: 8px; }
.mf-footer-col a:hover { color: var(--mf-gold); text-decoration: none; }
.mf-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.mf-footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }
.mf-footer-disclaimer { font-size: 12px; color: rgba(255,255,255,.3); margin-top: 18px; line-height: 1.6; border-top: 1px solid rgba(255,255,255,.06); padding-top: 18px; }

/* --- Blog --- */
.mf-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.mf-blog-card { background: #fff; border: 1px solid var(--mf-border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.mf-blog-card-img { height: 180px; background: linear-gradient(135deg, var(--mf-navy) 0%, var(--mf-blue) 100%); display: flex; align-items: center; justify-content: center; }
.mf-blog-card-img img { width: 100%; height: 180px; object-fit: cover; }
.mf-blog-card-body { padding: 20px 18px 24px; flex: 1; display: flex; flex-direction: column; }
.mf-blog-card-tag { font-size: 11px; font-weight: 700; color: var(--mf-blue); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 8px; }
.mf-blog-card-body h3 { font-size: 17px; font-weight: 700; color: var(--mf-navy); margin-bottom: 8px; line-height: 1.35; }
.mf-blog-card-body p { font-size: 14px; color: var(--mf-muted); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.mf-blog-card-body a { font-size: 14px; font-weight: 700; color: var(--mf-blue); }

/* --- Inner page hero --- */
.mf-page-hero { background: linear-gradient(135deg, #0f1c3a 0%, #1e316a 100%); padding: 52px 0 44px; }
.mf-page-hero h1 { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.mf-page-hero p { font-size: 17px; color: rgba(255,255,255,.75); max-width: 620px; }
.mf-breadcrumb { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.mf-breadcrumb a { color: rgba(255,255,255,.6); }
.mf-breadcrumb span { color: var(--mf-gold-lt); }

/* --- Article / Blog page --- */
.mf-article { max-width: 780px; margin: 0 auto; }
.mf-article h2 { font-size: 24px; font-weight: 800; color: var(--mf-navy); margin: 32px 0 12px; }
.mf-article h3 { font-size: 19px; font-weight: 700; color: var(--mf-navy); margin: 22px 0 10px; }
.mf-article p { font-size: 17px; color: #3a4356; line-height: 1.75; margin-bottom: 16px; }
.mf-article ul, .mf-article ol { padding-left: 22px; margin-bottom: 16px; }
.mf-article li { font-size: 17px; color: #3a4356; line-height: 1.7; margin-bottom: 6px; }
.mf-article-cta-box { background: linear-gradient(135deg, var(--mf-navy) 0%, var(--mf-blue) 100%); border-radius: var(--radius-md); padding: 30px 32px; text-align: center; margin: 36px 0; }
.mf-article-cta-box h3 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.mf-article-cta-box p { color: rgba(255,255,255,.78); font-size: 16px; margin-bottom: 18px; }
.mf-article-links { background: var(--mf-cream); border-radius: var(--radius-md); padding: 22px 24px; margin: 28px 0; }
.mf-article-links h4 { font-size: 15px; font-weight: 700; color: var(--mf-navy); margin-bottom: 10px; }
.mf-article-links a { display: inline-block; margin-right: 12px; font-size: 14px; color: var(--mf-blue); font-weight: 600; }

/* --- Contact --- */
.mf-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.mf-contact-info h3 { font-size: 20px; font-weight: 700; color: var(--mf-navy); margin-bottom: 14px; }
.mf-contact-info p { font-size: 16px; color: #3a4356; margin-bottom: 10px; }
.mf-contact-form { background: #fff; border: 1px solid var(--mf-border); border-radius: var(--radius-md); padding: 32px 28px; box-shadow: var(--shadow-sm); }
.mf-form-group { margin-bottom: 18px; }
.mf-form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--mf-navy); margin-bottom: 6px; }
.mf-form-group input, .mf-form-group textarea, .mf-form-group select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--mf-border); border-radius: var(--radius-sm); font-size: 15px; color: var(--mf-text); font-family: var(--font-main); transition: border-color .15s; background: #fff; }
.mf-form-group input:focus, .mf-form-group textarea:focus { outline: none; border-color: var(--mf-blue); }
.mf-form-group textarea { min-height: 120px; resize: vertical; }

/* --- Legal pages --- */
.mf-legal { max-width: 820px; margin: 0 auto; }
.mf-legal h2 { font-size: 22px; font-weight: 700; color: var(--mf-navy); margin: 28px 0 10px; }
.mf-legal h3 { font-size: 18px; font-weight: 700; color: var(--mf-navy); margin: 20px 0 8px; }
.mf-legal p { font-size: 16px; color: #3a4356; line-height: 1.75; margin-bottom: 13px; }
.mf-legal ul { padding-left: 22px; margin-bottom: 13px; }
.mf-legal li { font-size: 16px; color: #3a4356; line-height: 1.7; margin-bottom: 6px; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .mf-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .mf-hero-cta-wrap { align-items: center; }
  .mf-hero-trust { justify-content: center; }
  .mf-hero-benefits li { justify-content: center; }
  .mf-hero-img-main { max-width: 280px; }
  .mf-hero-stats { display: none; }
  .mf-pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .mf-pricing-card.mf-popular { transform: none; }
  .mf-why-grid { grid-template-columns: 1fr; }
  .mf-split { grid-template-columns: 1fr; }
  .mf-split-img { order: -1; }
  .mf-reviews-grid { grid-template-columns: 1fr; }
  .mf-ingredients-grid { grid-template-columns: 1fr; }
  .mf-sci-grid { grid-template-columns: 1fr; }
  .mf-footer-inner { grid-template-columns: 1fr 1fr; }
  .mf-benefit-item { grid-template-columns: 1fr; }
  .mf-benefit-num { font-size: 28px; }
  .mf-guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .mf-contact-grid { grid-template-columns: 1fr; }
  .mf-blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .mf-hero h1 { font-size: 26px; }
  .mf-section-heading { font-size: 23px; }
  .mf-nav { display: none; }
  .mf-hamburger { display: flex; }
  .mf-section { padding: 52px 0; }
  .mf-footer-inner { grid-template-columns: 1fr; }
  .mf-footer-bottom { flex-direction: column; text-align: center; }
  .mf-hero { padding: 44px 0 40px; }
}
