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

:root {
  /* === BRAND COLORS FOR STEEL FLOW PRO (STEEL NAVY & BRASS GOLD THEME) === */
  /* A deep, strong steel-navy paired with a warm brass-gold accent —      */
  /* reads as sturdy and premium rather than clinical, and gives the CTA   */
  /* buttons a single consistent "action" color across the whole page.    */
  --brand-primary:   #14284A; /* Deep Steel Navy */
  --brand-secondary: #3A6FA8; /* Lighter Steel Blue for Hovers/Accents */
  --brand-accent:    #0A1830; /* Near-Black Navy for dark UI accents */
  --brand-gold:      #E7A82E; /* Brass Gold — every "Buy/Order" button uses this */
  --brand-gold-dark: #C68C1B; /* Gold hover state */
  --brand-green:     #1F7A4D; /* Verification green / "Popular" ribbon */
  --brand-gray-dark: #2B2F36; /* "Economy" ribbon + Basic pack header */

  /* Backgrounds & Text */
  --bg-main:         #FFFFFF; /* Clean White Background */
  --bg-light:        #EEF2F8; /* Cool Steel-Gray for contrast sections */
  --bg-dark:         #0A1830; /* Deep Navy for Footer */
  --card-bg:         #FFFFFF; /* White for cards */
  --text-main:       #16233D; /* Dark Navy-Charcoal for main readability */
  --text-muted:      #57647C; /* Softer steel-gray for descriptions */
  --text-dark:       #FFFFFF; /* White text for dark buttons/badges */
  --text-on-gold:    #16233D; /* Dark navy text on gold buttons/ribbons */
  --border-color:    #DCE3EF; /* Soft steel-blue-gray for borders */

  /* Shadows (Subtle Steel Glow) */
  --shadow-sm:       0 2px 8px rgba(20, 40, 74, 0.06);
  --shadow-md:       0 4px 20px rgba(20, 40, 74, 0.10);
  --shadow-lg:       0 12px 35px rgba(20, 40, 74, 0.16);

  /* === OPTIMIZED TYPOGRAPHY SCALES === */
  --f-xs:    1.0rem;
  --f-sm:    1.15rem;
  --f-body:  1.20rem;
  --f-md:    1.45rem;
  --f-lg:    1.65rem;
  --f-xl:    2.1rem;
  --f-2xl:   2.6rem;
  --f-3xl:   3.2rem;
  --f-price: 3.6rem;
  --lh-body: 1.8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: var(--f-body);
  line-height: var(--lh-body);
  color: var(--text-main);
  background: var(--bg-main);
  overflow-x: hidden;
  padding-bottom: 0px;
}

/* Typography Basics */
h1 { font-family: 'Oswald', sans-serif; font-size: var(--f-3xl); font-weight: 700; line-height: 1.2; text-transform: uppercase; }
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: 18px; text-align: justify; text-align-last: left; }
a { text-decoration: none; color: var(--brand-secondary); }
strong { font-weight: 800; color: #ff0000; }

/* ===== UTILITIES ===== */
.section    { padding: 80px 24px; }
.bg-light   { background: var(--bg-light); }
.brand-title { color: var(--brand-primary); }
.sec-title  { text-align: center; font-size: var(--f-2xl); font-weight: 900; color: var(--text-main); margin-bottom: 15px; }
.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; }
.wrap       { padding: 0 15px; }

/* ===== BUTTONS ===== */
/* Every order button on the site (nav, hero, pricing cards, guarantee)   */
/* shares this one gold class, so the "action color" stays consistent.   */
.btn-cta {
  display: inline-block;
  background: var(--brand-gold);
  color: var(--text-on-gold) !important;
  padding: 18px 45px;
  border-radius: 6px;
  font-weight: 800;
  font-size: var(--f-lg);
  margin-top: 25px;
  box-shadow: 0 6px 20px rgba(20, 40, 74, 0.25);
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-cta:hover {
  background: var(--brand-gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(198, 140, 27, 0.4);
}
.btn-cta-xl {
  font-size: 1.4rem;
  padding: 18px 50px;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-main);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--border-color);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 24px;
}
.nav-logo { font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--brand-primary); letter-spacing: 1px; }
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  margin-top: 15px;
}
.nav-links a { color: var(--text-main); font-weight: 700; font-size: var(--f-sm); transition: color .2s; }
.nav-links a:hover { color: var(--brand-secondary); }
.btn-nav {
  background: var(--brand-gold); color: var(--text-on-gold) !important;
  padding: 12px 30px; border-radius: 6px;
  font-weight: 800; font-size: var(--f-sm);
  transition: all .2s;
}
.btn-nav:hover { background: var(--brand-gold-dark); }
.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(--brand-primary); border-radius: 2px; }
.mob-menu { display: none; flex-direction: column; gap: 18px; padding: 20px 24px; background: var(--bg-main); border-top: 1px solid var(--border-color); }
.mob-menu.open { display: flex; }
.mob-menu a { color: var(--text-main); font-weight: 700; font-size: var(--f-md); }
.mob-menu a:hover { color: var(--brand-secondary); }

/* ===== MOBILE SIDEBAR OVERLAY ===== */
/* Dims the page behind the open mobile menu; closes the menu on click. */
.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(10, 24, 48, 0.55); z-index: 900; }
.mob-overlay.open { display: block; }

/* ===== HERO SECTION ===== */
.hero {
  padding: 80px 24px;
  background: linear-gradient(135deg, #ffffff 0%, #e9edf5 100%);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  max-width: 1150px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 50px; align-items: center;
  position: relative; z-index: 1;
}
.hero-content h1 { color: var(--text-main); margin-bottom: 20px; letter-spacing: -1px;}
.hero-content h1 span { color: var(--brand-primary); }
.hero-content p { color: var(--text-muted); margin-bottom: 20px; font-size: var(--f-lg); text-align: left; font-weight: 500;}
.hero-img img { width: 100%; max-width: 450px; margin: 0 auto; display: block; filter: drop-shadow(0px 15px 35px rgba(20,40,74,0.20)); }

/* Signature angular divider — sits at the base of the hero. Steel Flow   */
/* Pro's identity is strength/precision rather than water, so this is a  */
/* faceted chevron cut instead of the soft wave you'd expect on a marine */
/* or liquid-based product. Purely decorative; safe to remove.           */
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 46px; line-height: 0; z-index: 0; }
.hero-wave svg { width: 100%; height: 100%; display: block; }

/* ===== ADDITIONAL HERO CSS ===== */
.trust-stars {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-gold);
    margin-bottom: 15px;
}
.trust-stars span {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 8px;
    font-weight: 500;
}
.hero-divider {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 25px 0;
}
.reg-price {
    font-size: var(--f-md);
    color: var(--text-muted);
}
.sale-price {
    font-size: var(--f-xl);
    font-weight: 900;
    color: var(--brand-primary);
    margin: 8px 0;
}
.hurry-badge {
    display: inline-block;
    background: #FFF3E0;
    color: #B4720A;
    padding: 8px 22px;
    font-size: var(--f-sm);
    font-weight: 800;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 15px;
    border: 1px solid #F0D190;
}

/* ===== BENEFITS BADGES ===== */
/* 6 cards for Steel Flow Pro's trust badges, so the desktop grid runs   */
/* 3-up for a clean two-row layout.                                      */
.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(--card-bg); transition: all .3s; }
.badge-card:hover { border-color: var(--brand-secondary); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.badge-card img { width: 70px; height: 70px; object-fit: contain; margin: 0 auto 15px; display: block; }
.badge-card .badge-icon { width: 70px; height: 70px; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; color: var(--brand-primary); }
.badge-card h4 { color: var(--brand-primary); margin-bottom: 12px; }
.badge-card p { font-size: 1.05rem; text-align: center; text-align-last: center; color: var(--text-muted);}

/* ===== "WHAT IT CAN DO" NUMBERED CARDS ===== */
/* Reuses the same 3-up grid rhythm as .badges-grid; the circled numeral
   replaces an icon because these three points are genuinely sequential
   reasons, not just a decorative set. */
.wicd-grid { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.wicd-card { text-align: center; padding: 40px 25px; border: 2px solid var(--border-color); border-radius: 12px; background: var(--card-bg); transition: all .3s; }
.wicd-card:hover { border-color: var(--brand-secondary); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.num-circle { width: 60px; height: 60px; border-radius: 50%; background: var(--brand-primary); color: #fff; font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.wicd-card h4 { color: var(--brand-primary); margin-bottom: 12px; }
.wicd-card p { text-align: center; text-align-last: center; color: var(--text-muted); margin-bottom: 0; }

/* ===== TWO COLUMNS (ABOUT) ===== */
.two-col { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: center; }
.two-col img { width: 100%; border-radius: 15px; box-shadow: var(--shadow-md); border: 2px solid var(--border-color); }
.two-col h2 { color: var(--brand-primary); margin-bottom: 25px; }
.two-col.img-right { grid-template-columns: 1.3fr 1fr; }
.two-col.img-right .two-col-img { order: 2; }

/* ===== INGREDIENTS ===== */
.ing-list { max-width: 950px; margin: 0 auto; list-style: none; }
/* Positioned relative so .ing-num can anchor to each card; card styling
   (background/border/padding) supports the hover state and mobile
   breakpoint below. */
.ing-item { display: grid; grid-template-columns: 110px 1fr; gap: 22px; align-items: center; position: relative; padding: 22px 30px 22px 80px; margin-bottom: 20px; background: var(--card-bg); border: 2px solid var(--border-color); border-radius: 12px; transition: all .3s; }
.ing-item:hover { box-shadow: var(--shadow-md); border-color: var(--brand-secondary); }
.ing-num { width: 55px; height: 55px; background: var(--brand-primary); color: var(--text-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: var(--f-lg); font-weight: 900; position: absolute; left: -15px; top: -15px; box-shadow: var(--shadow-sm); }
.ing-img { width: 110px; height: 110px; object-fit: cover; border-radius: 12px; border: 2px solid var(--border-color); }
.ing-content h4 { color: var(--brand-secondary); margin-bottom: 12px; font-size: var(--f-xl); }
.ing-note { max-width: 950px; margin: 25px auto 0; background: var(--bg-light); border: 1px solid var(--border-color); border-radius: 12px; padding: 20px 25px; font-size: 1rem; color: var(--text-muted); }

/* ===== BONUSES ===== */
.bonus-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.bonus-card { background: var(--card-bg); border: 2px solid var(--brand-secondary); border-radius: 15px; padding: 35px; position: relative; box-shadow: var(--shadow-sm); }
.bonus-tag { position: absolute; top: -16px; left: 30px; background: var(--brand-primary); color: var(--text-dark); font-weight: 900; font-size: 0.95rem; padding: 6px 20px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.bonus-card h4 { color: var(--brand-primary); margin: 15px 0 5px; }
.bonus-price { font-size: 1rem; color: var(--text-muted); margin-bottom: 12px; }
.bonus-price .was { text-decoration: line-through; opacity: 0.7; }
.bonus-price .now { color: var(--brand-green); font-weight: 800; }

/* ===== TESTIMONIALS ===== */
.testi-grid { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testi-card { background: var(--card-bg); border-radius: 15px; padding: 35px 30px; text-align: center; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
/* Generic initials avatar (no stock photography — see HTML comment above
   the testimonials section for why). Swap for real, permissioned photos
   if/when you have them. */
.testi-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; background: var(--brand-primary); color: #fff; font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700; border: 3px solid var(--brand-gold); }
.stars { font-size: 1.6rem; color: var(--brand-gold); margin-bottom: 10px; }
.verified { color: var(--brand-green); font-weight: 800; font-size: var(--f-sm); margin-bottom: 15px; }
.testi-text { font-style: italic; color: var(--text-muted); margin-bottom: 20px; text-align: center; text-align-last: center; }
.testi-name { font-weight: 900; color: var(--brand-primary); font-size: 1.1rem; }
.testi-note { text-align: center; color: var(--text-muted); font-size: 0.9rem; max-width: 750px; margin: 30px auto 0; }

/* ===== PRICING TABLES (matches the reference layout supplied) ===== */
.pricing-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
    text-align: center;
}
.p-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Middle "best value" card: gold border + a little lift so it reads as  */
/* the recommended option, matching the supplied reference image.       */
.p-card.pop {
    border-color: var(--brand-gold);
    border-width: 3px;
    box-shadow: var(--shadow-lg);
    margin-top: -16px;
}
@media (min-width: 901px) {
  .p-card.pop { transform: scale(1.03); }
  .p-card.pop:hover { transform: scale(1.03) translateY(-6px); }
}

/* Corner ribbon (Economy / Best %) — clipped cleanly by the card's own
   overflow:hidden, so it always sits flush with the rounded corner. */
.p-ribbon { position: absolute; top: 22px; width: 170px; padding: 6px 0; text-align: center; font-family:'Oswald',sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.2); z-index: 2; }
.p-ribbon.left  { left: -46px; transform: rotate(-45deg); }
.p-ribbon.right { right: -46px; transform: rotate(45deg); }
.p-ribbon-economy { background: var(--brand-gray-dark); }
.p-ribbon-best    { background: var(--brand-gold); color: var(--text-on-gold); }
.p-ribbon-popular { background: var(--brand-green); }

/* Colored pack header band, matches the reference image's per-card banners */
.p-header { padding: 26px 20px 22px; color: #fff; }
.p-header-basic    { background: var(--brand-gray-dark); }
.p-header-ultimate { background: var(--brand-primary); }
.p-header-popular  { background: var(--brand-green); }
.p-header .p-pack-name { font-family: 'Oswald', sans-serif; font-size: 1.35rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.p-header .p-pack-detail { font-size: 0.95rem; opacity: 0.9; font-weight: 500; }

.p-body { padding: 30px 25px 35px; display: flex; flex-direction: column; align-items: center; }
.p-body img {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 20px;
    display: block;
    transition: transform .3s;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.12));
}
.p-body img:hover { transform: scale(1.05); }
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.price-big { font-size: var(--f-price); font-weight: 900; color: var(--text-main); line-height: 1; }
.per-btl { color: var(--text-muted); font-weight: 600; }
.p-divider { border: none; border-top: 1px solid var(--border-color); width: 80%; margin: 14px auto; }
.p-total { font-size: var(--f-md); font-weight: 700; color: var(--text-main); margin-bottom: 6px; }
.p-shipping { display: flex; align-items: center; justify-content: center; gap: 6px; font-weight: 700; color: var(--text-muted); font-size: 0.95rem; margin: 14px 0 6px; }
.p-shipping svg { width: 18px; height: 18px; flex-shrink: 0; }
.p-shipping.free { color: var(--brand-green); }
.p-savings { font-size: 1.15rem; font-weight: 800; color: var(--text-main); letter-spacing: 0.3px; }
.p-card .btn-cta { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; }
.p-card .btn-cta svg { width: 20px; height: 20px; }

/* ===== GUARANTEE ===== */
.mb-inner { max-width: 1050px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 50px; align-items: center; }
.mb-inner img { width: 100%; max-width: 280px; filter: drop-shadow(0 0 15px rgba(20,40,74,0.18)); }
.mb-inner h3 { color: var(--brand-primary); margin-bottom: 20px; font-size: var(--f-xl);}

/* ===== FAQ ===== */
.faq-list { max-width: 950px; margin: 0 auto; }
.faq-item { background: var(--card-bg); border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-color); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; background: none; border: none; padding: 25px 30px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: var(--f-lg); font-weight: 800; color: var(--text-main); font-family: inherit; }
.faq-arrow { color: var(--brand-primary); transition: transform .3s; font-size: 1.2rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: all .4s ease; padding: 0 30px; color: var(--text-muted); }
.faq-item.open .faq-ans { max-height: 800px; padding: 0 30px 25px; }

/* ===== REFERENCES ===== */
/* Supports E-E-A-T by citing real, published research relevant to the   */
/* ingredient categories used in the formula (see HTML comment above the */
/* section for sourcing notes — every entry here is a real, verifiable   */
/* publication, not a placeholder).                                      */
.ref-list { max-width: 950px; margin: 0 auto; list-style: none; counter-reset: ref; }
.ref-list li { counter-increment: ref; font-size: 0.9rem; color: var(--text-muted); text-align: left; padding-left: 34px; position: relative; margin-bottom: 12px; }
.ref-list li::before { content: counter(ref) "."; position: absolute; left: 0; font-weight: 800; color: var(--brand-primary); }

/* ===== FOOTER ===== */
footer { background: var(--bg-dark); color: #A9BAD6; padding: 70px 24px 40px; text-align: center; border-top: 1px solid var(--border-color); }
.foot-disc { max-width: 1100px; margin: 0 auto; font-size: 0.95rem; line-height: 1.7; text-align: justify; text-align-last: center; }
.foot-disc p { margin-bottom: 12px; }
.foot-links { display: flex; justify-content: center; gap: 30px; margin: 40px 0 25px; flex-wrap: wrap; }
.foot-links a { color: #8FB1E8; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; }
.foot-links a:hover { color: #FFFFFF; }
.foot-copy { font-size: 0.9rem; opacity: 0.7; margin-top: 15px;}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  :root {
    --f-body: 1.15rem; --f-md: 1.3rem; --f-lg: 1.45rem;
    --f-xl: 1.8rem; --f-2xl: 2.2rem; --f-3xl: 2.8rem; --f-price: 3rem;
  }
  .hero-grid { grid-template-columns: 1fr; text-align: center;}
  .hero-content p { text-align: center; }
  .hero-grid, .two-col, .mb-inner, .testi-grid { grid-template-columns: 1fr; text-align: center; }
  .two-col.img-right .two-col-img { order: 0; }
  .pricing-grid, .badges-grid, .bonus-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .p-card.pop { transform: none; margin-top: 0; }
  .p-card.pop:hover { transform: translateY(-6px); }
  .ing-item { grid-template-columns: 1fr; text-align: center; padding: 50px 25px 30px; }
  .ing-num { left: 50%; transform: translateX(-50%); top: -25px; }
  .ing-img { margin: 0 auto; }
  p, li { text-align: left; }
}

@media (max-width: 600px) {
  :root {
    --f-body: 1.05rem; --f-md: 1.15rem; --f-lg: 1.3rem;
    --f-xl: 1.6rem; --f-2xl: 1.9rem; --f-3xl: 2.2rem; --f-price: 2.5rem;
  }
  .badges-grid { grid-template-columns: 1fr; }
  .btn-cta, .btn-cta-xl { padding: 18px 20px; font-size: var(--f-md); width: 100%; }
  .section { padding: 50px 20px; }
  .foot-disc { text-align: left; text-align-last: left; }
  .bonus-tag { left: 50%; transform: translateX(-50%); white-space: nowrap; }
  .p-ribbon.left  { left: -50px; }
  .p-ribbon.right { right: -50px; }
}
/* ==========================================================================
   SIMPLE PAGES (Contact / Privacy / Terms / Disclaimer / Refund / Shipping)
   Minimal header+footer variant — reuses colors/fonts from :root above.
   Not built out as full pages in this delivery; kept here so the footer
   links have consistent styling ready to go whenever those pages are added.
   ========================================================================== */
.simple-header { background: var(--bg-main); border-bottom: 1px solid var(--border-color); padding: 20px 24px; }
.simple-header-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.simple-header .nav-logo { font-size: 1.7rem; font-weight: 900; color: var(--brand-primary); }
.simple-header .back-home { font-weight: 700; font-size: var(--f-sm); color: var(--text-muted); }
.simple-header .back-home:hover { color: var(--brand-primary); }

.legal-wrap { max-width: 820px; margin: 0 auto; padding: 60px 24px 90px; }
.legal-wrap h1 { font-size: var(--f-2xl); text-transform: none; margin-bottom: 8px; color: var(--text-main); }
.legal-updated { color: var(--text-muted); font-size: var(--f-sm); margin-bottom: 35px; }
.legal-wrap h2 { font-size: var(--f-lg); color: var(--brand-primary); margin-top: 40px; margin-bottom: 12px; }
.legal-wrap h3 { font-size: var(--f-md); color: var(--text-main); margin-top: 22px; margin-bottom: 10px; }
.legal-wrap p, .legal-wrap li { text-align: left; }
.legal-wrap ul, .legal-wrap ol { margin: 0 0 18px 22px; }
.legal-wrap a { text-decoration: underline; }

.simple-footer { background: var(--bg-dark); color: var(--text-dark); padding: 40px 24px; text-align: center; margin-top: 40px; }
.simple-footer .foot-links { display: flex; justify-content: center; gap: 25px; margin-bottom: 18px; flex-wrap: wrap; }
.simple-footer .foot-links a { color: #8FB1E8; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; }
.simple-footer .foot-links a:hover { color: #FFFFFF; }
.simple-footer .foot-copy { font-size: 0.85rem; opacity: 0.7; }

@media (max-width: 600px) {
  .legal-wrap { padding: 40px 20px 60px; }
}
