/* ============================================================
   TRIMX™ — css/style.css
   Domain: en-triimx.com
   Theme: Deep Navy #0E2461 + Cyan #5BBFDF
   Navbar:   WHITE background + navy text (NEW)
   Headings: Extra Bold 900, dark navy (NEW)
   Buttons:  Large cyan solid pill + arrow (NEW)
   Cards:    Numbered stat accent (left panel + divider) (NEW)
   Font: Jost (Google Fonts)
   ============================================================ */

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

:root {
  --navy:          #0E2461;
  --navy-mid:      #1B3A8A;
  --navy-light:    #2952B3;
  --cyan:          #5BBFDF;
  --cyan-dark:     #3A9FBF;
  --cyan-light:    #E3F7FC;
  --cyan-pale:     #F0FBFF;
  --white:         #ffffff;
  --off-white:     #F4F8FC;
  --cream:         #EAF4FB;
  --text:          #071226;
  --muted:         #2A4070;
  --border:        #B8D6EF;
  --radius:        10px;
  --radius-card:   14px;
  --radius-pill:   50px;
  --shadow:        0 4px 20px rgba(14,36,97,0.10);
  --shadow-h:      0 12px 40px rgba(14,36,97,0.20);
  --shadow-card:   0 2px 14px rgba(14,36,97,0.07);
  --shadow-nav:    0 2px 20px rgba(14,36,97,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
}

/* ── NAVBAR — WHITE (NEW) ── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  padding: 0 24px; height: 72px;
  box-shadow: var(--shadow-nav);
  border-bottom: 3px solid var(--cyan);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  font-family: 'Jost', sans-serif; font-size: 1.8rem; font-weight: 900;
  color: var(--navy); text-decoration: none; letter-spacing: 1px;
  text-transform: uppercase; flex-shrink: 0;
  display: flex; align-items: center; line-height: 1;
}
.nav-logo span { color: var(--cyan-dark); }

.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-links li { display: flex; align-items: center; margin: 0; padding: 0; }
.nav-links a {
  display: flex; align-items: center;
  color: var(--navy); text-decoration: none;
  font-family: 'Jost', sans-serif; font-size: 0.93rem;
  font-weight: 600; transition: color 0.2s; white-space: nowrap; line-height: 1;
}
.nav-links a:hover { color: var(--cyan-dark); }

/* Nav CTA — cyan pill (NEW) */
.btn-nav-order {
  background: var(--cyan) !important;
  color: var(--navy) !important; font-weight: 800 !important;
  font-size: 0.87rem !important; padding: 9px 22px !important;
  border-radius: var(--radius-pill) !important;
  border: none !important; transition: all 0.2s !important;
  white-space: nowrap; text-decoration: none; line-height: 1;
  box-shadow: 0 3px 10px rgba(91,191,223,0.4) !important;
}
.btn-nav-order:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(14,36,97,0.3) !important;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; align-self: center; flex-shrink: 0; }
.hamburger span { width: 25px; height: 2px; background: var(--navy); display: block; border-radius: 2px; transition: 0.3s; }

.mobile-menu {
  display: none; flex-direction: column; background: var(--white);
  position: absolute; top: 72px; left: 0; right: 0;
  padding: 24px 32px; gap: 18px; z-index: 999;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(14,36,97,0.10);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--navy); text-decoration: none; font-size: 1rem; font-weight: 600; font-family: 'Jost', sans-serif; }
.mobile-menu .btn-mob-order {
  background: var(--cyan); color: var(--navy); text-align: center;
  padding: 12px; border-radius: var(--radius-pill); font-weight: 800; margin-top: 6px; font-size: 0.95rem;
}

/* ── BUTTONS — Large cyan pill + arrow (NEW) ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--cyan); color: var(--navy);
  font-family: 'Jost', sans-serif; font-weight: 800; font-size: 1rem;
  letter-spacing: 0.3px; padding: 16px 36px;
  border-radius: var(--radius-pill); border: none;
  text-decoration: none; transition: all 0.22s;
  box-shadow: 0 4px 18px rgba(91,191,223,0.45); line-height: 1.2;
}
.btn-primary::after { content: ' →'; font-size: 1.1rem; }
.btn-primary:hover {
  background: var(--navy); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,36,97,0.30);
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--navy);
  font-family: 'Jost', sans-serif; font-weight: 700; font-size: 0.97rem;
  padding: 14px 30px; border-radius: var(--radius-pill);
  border: 2px solid var(--navy); text-decoration: none; transition: all 0.2s; line-height: 1.2;
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ── SECTION BANDS — Extra bold 900 dark navy headings (NEW) ── */
.sec-title-band { background: var(--navy); padding: 46px 40px 40px; text-align: center; }
.sec-title-band h2 {
  font-family: 'Jost', sans-serif; font-size: 2rem;
  font-weight: 900;
  color: var(--white); line-height: 1.15;
  display: inline-block; padding-bottom: 16px;
  letter-spacing: -0.5px;
}
.sec-title-band h2::after {
  content: ''; display: block; width: 60px; height: 4px;
  background: var(--cyan); margin: 12px auto 0; border-radius: 2px;
}

/* ── HERO ── */
.hero { background: var(--off-white); padding: 80px 48px; }
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
}
.hero-img-wrap { display: flex; justify-content: center; align-items: center; }
.hero-img-wrap a img {
  max-width: 100%; max-height: 540px; object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(14,36,97,0.22));
  transition: transform 0.4s ease;
}
.hero-img-wrap a:hover img { transform: scale(1.04); }

/* Extra bold 900 hero heading, dark navy */
.hero-content h1 {
  font-family: 'Jost', sans-serif; font-size: 2.5rem; font-weight: 900;
  line-height: 1.1; color: var(--navy); margin-bottom: 8px; letter-spacing: -1.5px;
}
.hero-content h1 strong {
  color: var(--cyan-dark); display: block;
  font-size: 3.2rem; letter-spacing: -2px; text-transform: uppercase; font-weight: 900;
}
.hero-content p { font-size: 1.08rem; line-height: 1.82; color: var(--muted); margin-bottom: 16px; margin-top: 20px; }
.hero-highlight {
  font-weight: 700; color: var(--navy); font-size: 0.98rem; display: block;
  margin-top: 8px; padding: 12px 16px; background: var(--cyan-light);
  border-left: 4px solid var(--cyan); border-radius: 0 var(--radius) var(--radius) 0;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ── RATING BAND ── */
.rating-band {
  background: var(--cyan-light);
  padding: 16px 48px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 40px;
  border-bottom: 1px solid var(--border);
}
.rating-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 700;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.4px;
}
.rating-item span { font-size: 1.1rem; }

/* ── REVIEWS ── */
.reviews-section { background: var(--cream); padding: 70px 48px; }
.reviews-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: stretch;
}
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
}
.review-card:hover { box-shadow: var(--shadow-h); transform: translateY(-5px); }
.reviewer-photo-wrap {
  width: 100%; height: 200px; overflow: hidden; background: var(--cyan-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.reviewer-photo {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  display: block; background: var(--cyan-light); transition: transform 0.4s ease;
}
.review-card:hover .reviewer-photo { transform: scale(1.03); }
.reviewer-photo.img-error { opacity: 0; position: absolute; }
.reviewer-photo-wrap.img-broken::after {
  content: "👤"; font-size: 3.5rem; opacity: 0.25; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.review-card-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; border-top: 3px solid var(--cyan); }
.review-stars { height: 20px; margin: 0 auto 10px; display: block; }
.review-badge { font-size: 0.82rem; font-weight: 700; color: var(--cyan-dark); margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
.review-text { font-size: 0.97rem; line-height: 1.78; color: var(--muted); font-style: italic; flex: 1; }
.reviewer-name { margin-top: 16px; font-weight: 700; color: var(--navy); font-size: 0.9rem; padding-top: 12px; border-top: 1px solid var(--border); }

/* ── PROSE SECTIONS ── */
.what-is-section { background: var(--off-white); padding: 70px 48px; }
.what-is-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  align-items: center; gap: 60px;
}
.what-is-img-wrap img { width: 100%; max-width: 420px; height: auto; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(14,36,97,0.20)); display: block; }
.what-is-text p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

.why-section { background: var(--white); padding: 70px 48px; }
.section-prose { max-width: 900px; margin: 0 auto; }
.section-prose p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

/* ── PRICING BAND + IMAGE ── */
.pricing-band { background: var(--navy); padding: 44px 40px 14px; text-align: center; }
.pricing-band h3 { font-family: 'Jost', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--white); margin-bottom: 8px; letter-spacing: -0.5px; }
.pricing-band h4 { font-family: 'Jost', sans-serif; font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,0.80); margin-bottom: 0; }

.price-img-section { background: var(--off-white); padding: 48px; text-align: center; }
.price-img-section a img { max-width: 900px; width: 100%; height: auto; object-fit: contain; border-radius: var(--radius); transition: transform 0.3s; box-shadow: var(--shadow); }
.price-img-section a:hover img { transform: scale(1.01); }

/* ── FEATURES — NEW: Numbered Stat Accent Cards ── */
.features-section { background: var(--off-white); padding: 70px 48px; }
.stat-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); display: flex;
  align-items: stretch; overflow: hidden;
  box-shadow: var(--shadow-card); transition: box-shadow 0.3s, transform 0.25s;
}
.stat-card:hover { box-shadow: var(--shadow-h); transform: translateY(-3px); }

/* Left number panel */
.stat-card-num-panel {
  min-width: 90px; width: 90px;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 16px 8px; flex-shrink: 0; gap: 4px;
}
.stat-card-num-panel .num {
  font-family: 'Jost', sans-serif;
  font-size: 1.9rem; font-weight: 900;
  color: var(--white); line-height: 1; letter-spacing: -1px; text-align: center;
}
.stat-card-num-panel .lbl {
  font-size: 0.65rem; font-weight: 700;
  color: var(--cyan); text-transform: uppercase;
  letter-spacing: 0.8px; text-align: center; line-height: 1.3;
}

/* Cyan divider */
.stat-divider { width: 4px; background: var(--cyan); flex-shrink: 0; }

/* Right text */
.stat-card-body { padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; gap: 6px; flex: 1; min-width: 0; }
.stat-card-body h3 {
  font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 900;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.8px; line-height: 1.3;
}
.stat-card-body p { font-size: 1rem; line-height: 1.76; color: var(--muted); }

/* ── INGREDIENTS ── */
.ingredients-section { background: var(--cream); padding: 70px 48px; }
.ingredients-grid { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: stretch; }
.ingredient-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 20px 22px; display: flex; flex-direction: row; gap: 14px; align-items: flex-start;
  box-shadow: var(--shadow-card); transition: box-shadow 0.25s, transform 0.25s; height: 100%;
  border-top: 3px solid var(--navy);
}
.ingredient-card:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); }
.ingredient-icon { min-width: 42px; width: 42px; height: 42px; background: var(--cyan-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; line-height: 1; border: 2px solid var(--border); }
.ingredient-text { flex: 1; min-width: 0; }
.ingredient-card h4 { font-family: 'Jost', sans-serif; font-size: 0.92rem; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.ingredient-card p { font-size: 0.95rem; line-height: 1.72; color: var(--muted); }

/* ── GUARANTEE ── */
.guarantee-section { background: var(--white); padding: 70px 48px; }
.guarantee-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 60px; }
.guarantee-img-wrap img { width: 100%; max-width: 280px; height: auto; object-fit: contain; display: block; }
.guarantee-text p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

/* ── BENEFITS — also stat cards ── */
.benefits-section { background: var(--off-white); padding: 70px 48px; }

/* ── HOW TO USE ── */
.howto-section { background: var(--cream); padding: 70px 48px; }
.howto-steps { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.howto-step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 22px 26px; display: flex; flex-direction: row; gap: 18px; align-items: flex-start; box-shadow: var(--shadow-card); }
.step-num { min-width: 44px; width: 44px; height: 44px; background: var(--cyan); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-weight: 900; font-size: 1.1rem; flex-shrink: 0; font-family: 'Jost', sans-serif; line-height: 1; }
.howto-step-text { flex: 1; min-width: 0; }
.howto-step h4 { font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.howto-step p { font-size: 1rem; line-height: 1.75; color: var(--muted); }

/* ── FAQs ── */
.faq-section { background: var(--white); padding: 70px 48px; }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 18px 24px; font-family: 'Jost', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: background 0.2s; line-height: 1.4; }
.faq-question:hover { background: var(--cyan-light); }
.faq-arrow { font-size: 1rem; transition: transform 0.3s; color: var(--cyan-dark); flex-shrink: 0; }
.faq-answer { display: none; padding: 16px 24px 20px; font-size: 1.03rem; line-height: 1.8; color: var(--muted); border-top: 1px solid var(--border); background: var(--white); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ── ORDER / PAYMENT / PRICING DETAILS ── */
.order-how-section { background: var(--off-white); padding: 70px 48px; }
.order-how-inner { max-width: 900px; margin: 0 auto; }
.order-how-inner p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.order-img-wrap { text-align: center; margin-top: 36px; }
.order-img-wrap a img { max-width: 900px; width: 100%; height: auto; object-fit: contain; border-radius: var(--radius); transition: transform 0.3s; box-shadow: var(--shadow); }
.order-img-wrap a:hover img { transform: scale(1.01); }

.pricing-details { background: var(--white); padding: 48px; }
.pricing-details-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.info-block { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; border-left: 4px solid var(--cyan); box-shadow: var(--shadow-card); }
.info-block h4 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.8px; }
.info-block p, .info-block li { font-size: 1.03rem; line-height: 1.8; color: var(--muted); }
.info-block ul { list-style: none; padding: 0; margin: 0; }
.info-block ul li { padding: 4px 0; }
.info-block ul li::before { content: "→ "; color: var(--cyan-dark); font-weight: 700; }

/* ── FINAL CTA ── */
.cta-final { background: var(--navy); padding: 80px 48px; text-align: center; }
.cta-final h2 { font-family: 'Jost', sans-serif; font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 36px; line-height: 1.15; letter-spacing: -0.5px; }
.cta-product-img { max-width: 360px; margin: 0 auto 28px; }
.cta-product-img a img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 10px 28px rgba(91,191,223,0.30)); transition: transform 0.4s; }
.cta-product-img a:hover img { transform: scale(1.05); }
.cta-regular-price { font-size: 1.1rem; color: rgba(255,255,255,0.55); text-decoration: line-through; display: block; margin-bottom: 6px; }
.cta-current-price { font-family: 'Jost', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--cyan); display: block; margin-bottom: 28px; letter-spacing: -1px; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 48px 48px 30px; border-top: 3px solid var(--cyan); }
.footer-cols { max-width: 1160px; margin: 0 auto 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0; }
.footer-cols a { color: rgba(255,255,255,0.60); text-decoration: none; font-size: 0.88rem; font-weight: 500; font-family: 'Jost', sans-serif; transition: color 0.2s; padding: 5px 16px; border-right: 1px solid rgba(255,255,255,0.1); text-align: center; white-space: nowrap; }
.footer-cols a:last-child { border-right: none; }
.footer-cols a:hover { color: var(--white); }
.footer-legal { max-width: 1160px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; }
.footer-legal p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 10px; }
.footer-copy { text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.35); font-family: 'Jost', sans-serif; margin-top: 14px; }
.footer-copy a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-copy a:hover { color: var(--white); }

/* ── FADE-UP ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-content h1 strong { font-size: 2.5rem; }
  .what-is-inner { grid-template-columns: 1fr 1.3fr; gap: 40px; }
  .ingredients-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .what-is-inner { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-img-wrap { display: flex; justify-content: center; }
  .ingredients-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 0 18px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .rating-band { padding: 12px 20px; gap: 14px; }
  .rating-item { font-size: 0.76rem; }
  .hero { padding: 44px 20px; }
  .hero-inner { gap: 32px; }
  .hero-content h1 { font-size: 1.7rem; }
  .hero-content h1 strong { font-size: 2rem; }
  .sec-title-band { padding: 36px 20px 30px; }
  .sec-title-band h2 { font-size: 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stat-card-num-panel { min-width: 64px; width: 64px; }
  .stat-card-num-panel .num { font-size: 1.5rem; }
  .reviews-section, .what-is-section, .why-section, .features-section,
  .ingredients-section, .guarantee-section, .benefits-section,
  .faq-section, .howto-section, .order-how-section { padding: 44px 20px; }
  .pricing-details, .price-img-section { padding: 32px 20px; }
  .cta-final { padding: 56px 20px; }
  .cta-final h2 { font-size: 1.5rem; }
  .cta-current-price { font-size: 2rem; }
  footer { padding: 36px 20px 24px; }
  .footer-cols a { border-right: none; padding: 4px 10px; }
}