/* ═══════════════════════════════════════════
   MILLET PLAZA V3 — Full CSS
   Brand: Deep Forest Green × Gold × Ivory
═══════════════════════════════════════════ */

:root {
  --g-deep:    #0F2419;
  --g-dark:    #1A3A2A;
  --g-mid:     #2E5E3E;
  --g-light:   #4A7C5E;
  --g-pale:    #EAF2EC;
  --gold:      #C9933A;
  --gold-lt:   #E8B85A;
  --gold-pale: #FDF6E8;
  --ivory:     #F8F4EE;
  --ivory-dk:  #EDE8DF;
  --white:     #FFFFFF;
  --off-w:     #FAFAF7;
  --txt-dk:    #0F1F13;
  --txt-mid:   #3D5040;
  --txt-lt:    #7A9080;
  --red:       #C0392B;
  --red-pale:  #FEF2F0;
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 36px; --r-full: 9999px;
  --sh-sm:   0 2px 12px rgba(15,36,25,0.08);
  --sh-mid:  0 8px 40px rgba(15,36,25,0.14);
  --sh-lg:   0 20px 80px rgba(15,36,25,0.22);
  --sh-gold: 0 8px 32px rgba(201,147,58,0.30);
  --tr: 0.32s cubic-bezier(0.4,0,0.2,1);
  --tr-fast: 0.18s cubic-bezier(0.4,0,0.2,1);
  --f-display: 'Prohibition Test Regular', sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --max-w: 1280px;
  --pad: 100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--f-body); background: var(--ivory); color: var(--txt-dk); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }

/* ── SCROLL REVEALS ── */
.reveal-up { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-up.in-view { opacity: 1; transform: translateY(0); }

/* ── TYPOGRAPHY ── */
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.section-eyebrow.light { color: rgba(201,147,58,0.85); }
.section-title {   font-family: 'Prohibition Test Regular', sans-serif; font-size: clamp(30px, 4vw, 52px); line-height: 1.1; color: var(--txt-dk); margin-bottom: 15px; }
.section-title.white { color: var(--white); }
.section-sub { font-size: 17px; line-height: 1.7; color: var(--txt-mid); margin-top: 16px; }
.section-sub.white { color: rgba(255,255,255,0.72); }
.gold-italic { font-style: italic; color: var(--gold); }
.gold { color: var(--gold); }
.body-text { font-size: 16px; line-height: 1.5; color: var(--txt-mid); margin-bottom: 18px; }
.gold-rule { width: 56px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); border-radius: 99px; margin: 20px 0 28px; }
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn-gold { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: var(--g-deep); font-family: var(--f-body); font-weight: 700; font-size: 14px; padding: 16px 32px; border-radius: var(--r-full); border: none; cursor: pointer; transition: var(--tr); box-shadow: var(--sh-gold); letter-spacing: 0.3px; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(201,147,58,0.45); }
.btn-gold.full-w { width: 100%; justify-content: center; margin-top: 24px; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); color: var(--white); font-family: var(--f-body); font-weight: 600; font-size: 14px; padding: 16px 28px; border-radius: var(--r-full); border: 1.5px solid rgba(255,255,255,0.3); cursor: pointer; transition: var(--tr); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.btn-ghost-dark { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.08); color: var(--white); font-family: var(--f-body); font-weight: 600; font-size: 14px; padding: 16px 28px; border-radius: var(--r-full); border: 1.5px solid rgba(255,255,255,0.25); cursor: pointer; transition: var(--tr); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   PAGE LOADER
══════════════════════════════════════════ */
.page-loader { position: fixed; inset: 0; background: var(--g-deep); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease, visibility 0.5s ease; }
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.loader-logo { width: 140px; opacity: 0; animation: loaderFade 0.6s 0.2s forwards; }
.loader-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.15); border-radius: 99px; overflow: hidden; }
.loader-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); border-radius: 99px; animation: loaderFill 1.2s 0.3s ease forwards; width: 0; }
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderFill { to { width: 100%; } }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav-logo{
  width: 70px;
  height: 70px;
}
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(15,36,25,0.95); backdrop-filter: blur(16px) saturate(1.5); border-bottom: 1px solid rgba(255,255,255,0.07); transition: var(--tr); }
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.35); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 48px; max-width: 1440px; margin: 0 auto; }
.nav-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 50px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.78); transition: color var(--tr-fast); letter-spacing: 0.2px; }
.nav-link:hover { color: var(--gold); }
.nav-cta-btn { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: var(--g-deep); font-weight: 700; font-size: 13px; padding: 11px 20px; border-radius: var(--r-full); transition: var(--tr); box-shadow: 0 4px 16px rgba(201,147,58,0.3); }
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-gold); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--tr); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(10,26,16,0.97); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-nav-links a { font-size: 22px; font-weight: 500; color: rgba(255,255,255,0.85); transition: color var(--tr-fast); }
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-cta { display: inline-block; background: linear-gradient(135deg, var(--gold), var(--gold-lt)) !important; color: var(--g-deep) !important; font-weight: 700 !important; padding: 14px 32px; border-radius: var(--r-full); margin-top: 12px; }

/* ══════════════════════════════════════════
   HERO — PREMIUM LUXURY VERSION
   Ivory parchment + mandala + border patterns + botanical millets
   Two-col: content left / food image right
   Floating stat cards + deep green stats bar
══════════════════════════════════════════ */

/* ── BASE: Warm ivory parchment with subtle paper grain ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 90px; /* nav height */
}

/* ── LAYERED BACKGROUND SYSTEM ── */
.hero-layer { position: absolute; inset: 0; pointer-events: none; }

/* Layer 1: Base ivory parchment */


/* Layer 2: Left and right traditional Indian border patterns */
.hero-layer-borders { z-index: 1; }
.hero-border-left,
.hero-border-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(28px, 4vw, 56px);
  background-repeat: repeat-y;
  background-size: 100% auto;
  opacity: 0.22;
}
.hero-border-left {
  left: 0;
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='120'%3E%3Crect width='56' height='120' fill='none'/%3E%3Crect x='0' y='0' width='56' height='120' fill='none' stroke='%23C79A4B' stroke-width='1.5'/%3E%3Cpath d='M8,0 L8,120 M16,0 L16,120' stroke='%23C79A4B' stroke-width='0.5' opacity='0.4'/%3E%3Ccircle cx='28' cy='20' r='6' fill='none' stroke='%23C79A4B' stroke-width='1'/%3E%3Ccircle cx='28' cy='20' r='2' fill='%23C79A4B'/%3E%3Cpath d='M16,20 Q22,14 28,20 Q34,26 40,20' stroke='%23C79A4B' stroke-width='0.8' fill='none'/%3E%3Ccircle cx='28' cy='60' r='8' fill='none' stroke='%23C79A4B' stroke-width='1'/%3E%3Crect x='22' y='54' width='12' height='12' fill='none' stroke='%23C79A4B' stroke-width='0.6' transform='rotate(45 28 60)'/%3E%3Ccircle cx='28' cy='100' r='6' fill='none' stroke='%23C79A4B' stroke-width='1'/%3E%3Cpath d='M16,100 Q22,94 28,100 Q34,106 40,100' stroke='%23C79A4B' stroke-width='0.8' fill='none'/%3E%3C/svg%3E"); */
}
.hero-border-right {
  right: 0;
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='120'%3E%3Crect width='56' height='120' fill='none'/%3E%3Crect x='0' y='0' width='56' height='120' fill='none' stroke='%23C79A4B' stroke-width='1.5'/%3E%3Cpath d='M40,0 L40,120 M48,0 L48,120' stroke='%23C79A4B' stroke-width='0.5' opacity='0.4'/%3E%3Ccircle cx='28' cy='20' r='6' fill='none' stroke='%23C79A4B' stroke-width='1'/%3E%3Ccircle cx='28' cy='20' r='2' fill='%23C79A4B'/%3E%3Cpath d='M16,20 Q22,14 28,20 Q34,26 40,20' stroke='%23C79A4B' stroke-width='0.8' fill='none'/%3E%3Ccircle cx='28' cy='60' r='8' fill='none' stroke='%23C79A4B' stroke-width='1'/%3E%3Crect x='22' y='54' width='12' height='12' fill='none' stroke='%23C79A4B' stroke-width='0.6' transform='rotate(45 28 60)'/%3E%3Ccircle cx='28' cy='100' r='6' fill='none' stroke='%23C79A4B' stroke-width='1'/%3E%3Cpath d='M16,100 Q22,94 28,100 Q34,106 40,100' stroke='%23C79A4B' stroke-width='0.8' fill='none'/%3E%3C/svg%3E"); */
}

/* Layer 3: Mandala centered behind image (right side) */
.hero-layer-mandala {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4%;
}
.hero-mandala-svg {
  width: clamp(400px, 52vw, 720px);
  height: clamp(400px, 52vw, 720px);
  flex-shrink: 0;
}

/* Layer 4: Botanical wheat/millet illustrations */
.hero-layer-botanicals {
  z-index: 2;
}
.hero-botanical-left {
  position: absolute;
  left: clamp(28px, 4.5vw, 60px);
  top: 0;
  height: 100%;
  width: clamp(50px, 7vw, 100px);
  object-fit: contain;
}
.hero-botanical-right {
  position: absolute;
  right: clamp(28px, 4.5vw, 60px);
  top: 0;
  height: 100%;
  width: clamp(50px, 7vw, 100px);
  object-fit: contain;
}

/* Layer 5: Radial light glows */
.hero-layer-glows { z-index: 3; }
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-headline {
  left: 0;
  top: 20%;
  width: 55%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(199,154,75,0.10) 0%, rgba(248,242,232,0.0) 70%);
}
.hero-glow-image {
  right: 5%;
  top: 10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(199,154,75,0.08) 0%, rgba(248,242,232,0.0) 65%);
}

/* ── NAV (luxury, ~90-100px tall) ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #062F24;
  backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid rgba(199,154,75,0.15);
  transition: var(--tr);
  height: 90px;
  display: flex; align-items: center;
}
.nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.4); }
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 90px; padding: 0 clamp(24px, 4vw, 64px);
  max-width: 1560px; margin: 0 auto; width: 100%;
}
.nav-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: clamp(44px, 5vw, 60px); width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 44px); }
.nav-link {
  font-size: clamp(13px, 1.1vw, 15px); font-weight: 500;
  color: rgba(255,255,255,0.82); transition: color var(--tr-fast);
  letter-spacing: 0.3px; white-space: nowrap;
}
.nav-link:hover { color: #C79A4B; }
.nav-cta-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #C79A4B, #E8B85A);
  color: #062F24; font-weight: 700; font-size: clamp(12px, 1vw, 14px);
  padding: 13px 24px; border-radius: var(--r-full); transition: var(--tr);
  box-shadow: 0 4px 20px rgba(199,154,75,0.35); white-space: nowrap;
}
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(199,154,75,0.5); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 10; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--tr); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(6,47,36,0.97); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-nav-links a { font-size: 22px; font-weight: 500; color: rgba(255,255,255,0.85); transition: color var(--tr-fast); }
.mobile-nav-links a:hover { color: #C79A4B; }
.mobile-cta { display: inline-block; background: linear-gradient(135deg, #C79A4B, #E8B85A) !important; color: #062F24 !important; font-weight: 700 !important; padding: 14px 36px; border-radius: var(--r-full); margin-top: 12px; }

/* ── HERO MAIN CONTENT GRID ── */
/* Desktop */
.hero {
    background-image: url('images/hero-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .hero {
        background-image: url('images/hero-mobile.png');
    }
    
}
/* 

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
} */
.hero-content-wrap {
  position: relative;
  z-index: 10;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) clamp(48px, 6vw, 96px) 0;
  align-items: center;
  gap: 0;
}

/* ── LEFT CONTENT ── */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: clamp(16px, 3vw, 48px);
  padding-bottom: 48px;
}

/* Eyebrow label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(9px, 0.75vw, 11px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C79A4B;
  margin-bottom: clamp(18px, 2.5vw, 30px);
}
.hero-eyebrow-icon { color: #C79A4B; display: flex; align-items: center; }

/* Main headline — large luxury serif */
.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(38px, 4.8vw, 50px);
  line-height: 1.08;
  color: #fff ;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-em-top,.hero-em-bottom {
  font-style: italic;
  color: #e0ab16;
  font-weight: 900;
}
.hero-em-top{
  font-size: 65px;
}
.hero-em-bottom{
  font-weight: 700;
  font-size: 50px;
}
/* Ornamental divider: ✦ line fleuron line */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: clamp(16px, 2vw, 24px) 0;
}
.hdiv-line {
  flex: 0 0 clamp(32px, 5vw, 64px);
  height: 1.5px;
  background: linear-gradient(90deg, #C79A4B, rgba(199,154,75,0.3));
  border-radius: 99px;
}
.hdiv-ornament {
  font-size: 18px;
  color: #C79A4B;
  line-height: 1;
  flex-shrink: 0;
}

/* Description */
.hero-sub {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.78;
  color: #3D5040;
  margin-bottom: clamp(24px, 3vw,36px);
  max-width: 500px;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  align-items: center;
  /* gap: 14px; */
  margin-bottom: clamp(24px, 3vw, 36px);
  flex-wrap: wrap;
}
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px; /* space between buttons */
    align-items: center; /* optional */
}
.hero-actions a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background:#e0ab16 ;
  color: #062F24;
  /* font-family: var(--f-body); */
    font-family: 'Prohibition Test Regular', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.05vw, 15px);
  padding: 11px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: 0 6px 24px rgba(199,154,75,0.40);
  white-space: nowrap;
}
.hero-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(199,154,75,0.55); }
.hero-btn-arrow {
  width: 28px; height: 28px;
  background: rgba(6,47,36,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: var(--tr);
}
.hero-btn-primary:hover .hero-btn-arrow { background: rgba(6,47,36,0.22); }
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: clamp(13px, 1.05vw, 15px);
  padding: 11px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(6,47,36,0.3);
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
}
/* .hero-btn-secondary:hover { background: rgba(6,47,36,0.06); border-color: #062F24; transform: translateY(-2px); } */

/* Feature pills */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 600;
  color: #3D5040;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(199,154,75,0.3);
  padding: 8px 16px;
  border-radius: var(--r-full);
  box-shadow: 0 1px 6px rgba(6,47,36,0.06);
  backdrop-filter: blur(4px);
  white-space: nowrap;
  transition: var(--tr);
    font-family: 'Prohibition Test Regular', sans-serif;
}
.hero-trust-pill:hover { background: rgba(255,255,255,0.95); border-color: rgba(199,154,75,0.55); transform: translateY(-1px); }
.htp-icon { color: #C79A4B; font-size: 13px; flex-shrink: 0; }

/* ── RIGHT: Image + floating cards ── */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: clamp(480px, 60vh, 680px);
  padding-bottom: 48px;
}

/* Decorative textile/fabric pattern behind image */
.hero-img-deco-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.hdeco-textile {
  width: clamp(300px, 50%, 480px);
  height: clamp(360px, 65%, 580px);
  opacity: 0.9;
}

/* Food photograph */
.hero-food-img-wrap {
  position: relative;
  z-index: 2;
  width: clamp(300px, 48%, 520px);
  flex-shrink: 0;
}
.hero-food-img {
  width: 100%;
  height: clamp(360px, 48vh, 560px);
  object-fit: cover;
  object-position: center top;
  border-radius: clamp(16px, 2vw, 28px);
  box-shadow:
    0 24px 80px rgba(6,47,36,0.22),
    0 8px 32px rgba(6,47,36,0.12),
    0 0 0 1px rgba(199,154,75,0.1);
  display: block;
}
.hero-img-shadow-ring {
  position: absolute;
  bottom: -16px;
  left: 10%;
  right: 10%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(6,47,36,0.18) 0%, transparent 70%);
  filter: blur(12px);
  z-index: 1;
  pointer-events: none;
}

/* Floating metric cards */
.hero-metrics-stack {
  position: absolute;
  right: clamp(-8px, -1vw, -16px);
  top: 50%;
  transform: translateY(-44%);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 12px);
  z-index: 10;
}
.hm-card {
  background: #FFFFFF;
  border: 1px solid rgba(237,232,223,0.9);
  border-radius: 20px;
  padding: clamp(12px, 1.2vw, 16px) clamp(14px, 1.5vw, 20px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 14px);
  min-width: clamp(180px, 18vw, 230px);
  box-shadow:
    0 4px 24px rgba(6,47,36,0.10),
    0 1px 4px rgba(6,47,36,0.06);
  transition: var(--tr);
}
.hm-card:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 40px rgba(6,47,36,0.16);
}
.hm-icon {
  width: clamp(36px, 3.5vw, 44px);
  height: clamp(36px, 3.5vw, 44px);
  border-radius: 12px;
  background: #0d4528 ;
  border: 1px solid rgba(199,154,75,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C79A4B;
  font-size: clamp(14px, 1.4vw, 18px);
  flex-shrink: 0;
}
.hm-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}
.hm-label {
  font-size: clamp(8px, 0.7vw, 10px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7A9080;
  margin-bottom: 2px;
}
.hm-value {
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: #062F24;
  line-height: 1.1;
}
.hm-value-sm {
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 600;
  color: #062F24;
  line-height: 1.4;
}
.hm-sub {
  font-size: clamp(10px, 0.85vw, 12px);
  color: #7A9080;
  margin-top: 2px;
}

/* ── BOTTOM INVESTOR STATS BAR ── */
.hero-stats-bar {
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, #062F24 0%, #0F3D2A 50%, #062F24 100%);
  display: flex;
  align-items: stretch;
  border-radius: 0; /* flush bottom */
  margin-top: auto;
  box-shadow: inset 0 1px 0 rgba(199,154,75,0.12);
}
.hsb-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 20px);
  padding: clamp(18px, 2.5vw, 28px) clamp(20px, 3vw, 44px);
  transition: var(--tr);
}
.hsb-item:hover { background: rgba(199,154,75,0.04); }
.hsb-divider {
  width: 1px;
  background: rgba(199,154,75,0.12);
  align-self: stretch;
  margin: 16px 0;
}
.hsb-icon {
  width: clamp(36px, 3.5vw, 48px);
  height: clamp(36px, 3.5vw, 48px);
  border-radius: clamp(10px, 1vw, 14px);
  background: rgba(199,154,75,0.12);
  border: 1px solid rgba(199,154,75,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C79A4B;
  font-size: clamp(16px, 1.6vw, 22px);
  flex-shrink: 0;
}
.hsb-num {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.8vw, 26px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
}
.hsb-label {
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  margin: 3px 0 2px;
}
.hsb-sub {
  font-size: clamp(10px, 0.8vw, 12px);
  color: rgba(255,255,255,0.45);
}

/* ══════════════════════════════════════════
   HERO RESPONSIVE
══════════════════════════════════════════ */

/* 2560px ultra-wide */
@media (min-width: 2000px) {
  .hero-content-wrap { max-width: 2200px; padding: 80px 120px 0; }
  .hero-headline { font-size: clamp(70px, 4.5vw, 90px); }
  .hero-metrics-stack { right: -24px; }
}

/* 1440–1920px: design master — unchanged */
@media (min-width: 1440px) and (max-width: 1999px) {
  .hero-content-wrap { max-width: 1440px; padding: 70px 80px 30px; }
}

/* 1024–1439px laptop */
@media (min-width: 1024px) and (max-width: 1439px) {
  .hero { padding-top: 90px; }
  .hero-content-wrap { padding: 48px 56px 0; gap: 0; }
  .hero-food-img { height: clamp(340px, 44vh, 500px); }
  .hero-metrics-stack { right: -6px; }
  .hm-card { min-width: 170px; padding: 12px 14px; }
}

/* 768–1023px tablet landscape */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-content-wrap { grid-template-columns: 58% 42%; padding: 40px 36px 0; }
  .hero-headline { font-size: clamp(32px, 4.5vw, 52px); }
  .hero-food-img { height: 380px; }
  .hero-metrics-stack { right: -4px; gap: 8px; }
  .hm-card { min-width: 148px; padding: 10px 12px; }
  .hm-value { font-size: 18px; }
  .hero-stats-bar { flex-wrap: wrap; }
  .hsb-item { flex: 0 0 50%; }
  .hsb-divider:nth-child(4) { display: none; }
}

/* 481–767px mobile large */
@media (min-width: 481px) and (max-width: 767px) {
  .nav { height: 72px; }
  .nav-container { height: 72px; padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding-top: 72px; }
  .hero-layer-botanicals { display: none; }
  .hero-border-left, .hero-border-right { width: 18px; }
  .hero-content-wrap {
    grid-template-columns: 1fr;
    padding: 32px 24px 0;
    gap: 0;
  }
  .hero-left { align-items: center; text-align: center; padding-right: 0; padding-bottom: 28px; }
  .hero-headline { font-size: clamp(34px, 7vw, 48px); }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-btn-primary, .hero-btn-secondary { width: 100%; justify-content: center; }
  .hero-trust-row { justify-content: center; }
  .hero-right { min-height: auto; padding-bottom: 0; }
  .hero-food-img { height: clamp(260px, 55vw, 380px); }
  .hero-metrics-stack {
    position: relative;
    right: auto; top: auto; transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 0 8px;
  }
  .hm-card { min-width: calc(50% - 8px); flex: 0 0 calc(50% - 8px); }
  .hero-stats-bar { flex-wrap: wrap; }
  .hsb-item { flex: 0 0 50%; padding: 16px 20px; }
  .hsb-divider:nth-child(4), .hsb-divider:nth-child(6) { display: none; }
}

/* 376–480px mobile medium */
@media (min-width: 376px) and (max-width: 480px) {
  .nav { height: 64px; }
  .nav-container { height: 64px; padding: 0 16px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding-top: 64px; }
  .hero-layer-botanicals { display: none; }
  .hero-border-left, .hero-border-right { width: 14px; }
  .hero-content-wrap { grid-template-columns: 1fr; padding: 24px 16px 0; }
  .hero-left { align-items: center; text-align: center; padding-right: 0; padding-bottom: 20px; }
  .hero-headline { font-size: clamp(30px, 8vw, 40px); }
  .hero-sub { font-size: 14px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-btn-primary, .hero-btn-secondary { width: 100%; justify-content: center; }
  .hero-trust-row { justify-content: center; }
  .hero-food-img { height: clamp(240px, 60vw, 340px); }
  .hero-metrics-stack {
    position: relative; right: auto; top: auto; transform: none;
    flex-direction: row; flex-wrap: wrap;
    justify-content: center; gap: 8px;
    margin-top: 16px;
  }
  .hm-card { min-width: calc(50% - 4px); flex: 0 0 calc(50% - 4px); padding: 10px 12px; }
  .hero-stats-bar { flex-wrap: wrap; }
  .hsb-item { flex: 0 0 50%; padding: 14px 16px; }
  .hsb-divider:nth-child(4), .hsb-divider:nth-child(6) { display: none; }
}

/* 320–375px mobile small */
@media (max-width: 375px) {
  .nav { height: 60px; }
  .nav-container { height: 60px; padding: 0 14px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding-top: 60px; }
  .hero-layer-botanicals { display: none; }
  .hero-border-left, .hero-border-right { display: none; }
  .hero-content-wrap { grid-template-columns: 1fr; padding: 20px 14px 0; }
  .hero-left { align-items: center; text-align: center; padding-right: 0; padding-bottom: 16px; }
  .hero-headline { font-size: clamp(26px, 9vw, 36px); letter-spacing: -0.3px; }
  .hero-sub { font-size: 13.5px; max-width: 100%; }
  .hero-divider { gap: 8px; }
  .hdiv-line { flex: 0 0 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; }
  .hero-btn-primary, .hero-btn-secondary { width: 100%; justify-content: center; font-size: 13px; padding: 14px 16px; }
  .hero-trust-row { justify-content: center; }
  .hero-trust-pill { font-size: 11px; padding: 7px 12px; }
  .hero-food-img { height: clamp(220px, 68vw, 300px); }
  .hero-metrics-stack {
    position: relative; right: auto; top: auto; transform: none;
    flex-direction: column; gap: 8px; margin-top: 14px;
  }
  .hm-card { min-width: 100%; width: 100%; }
  .hero-stats-bar { flex-direction: column; }
  .hsb-divider { display: none; }
  .hsb-item { padding: 14px 16px; }
}



/* ══════════════════════════════════════════
   TICKER
══════════════════════════════════════════ */
.ticker-wrap { background: var(--g-dark); padding: 14px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.ticker-track { display: flex; animation: ticker 28s linear infinite; white-space: nowrap; }
.ticker-track span { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); padding: 0 28px; flex-shrink: 0; }
.ticker-dot { color: var(--gold) !important; padding: 0 6px !important; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════════
   OPPORTUNITY SECTION
══════════════════════════════════════════ */
.opp-section { background: var(--ivory); padding: var(--pad) 0; }
.opp-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.opp-image-col { position: relative; }
.opp-img-wrap { position: relative; border-radius: var(--r-xl); overflow: hidden; }
.opp-img-wrap img { width: 100%; height: 480px; object-fit: cover; transition: transform 0.7s ease; }
.opp-img-wrap:hover img { transform: scale(1.03); }
.opp-img-tag { position: absolute; top: 20px; left: 20px; background: var(--g-deep); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 16px; border-radius: var(--r-full); border: 1px solid rgba(255,255,255,0.15); }
.opp-stat-cluster { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.opp-stat { background: var(--white); border-radius: var(--r-lg); padding: 22px 24px; border: 1px solid var(--ivory-dk); box-shadow: var(--sh-sm); transition: var(--tr); }
.opp-stat:hover { box-shadow: var(--sh-mid); transform: translateY(-2px); }
.opp-stat-num { font-family: var(--f-display); font-size: 21px; font-weight: 700; color:#e0ab16; line-height: 1; margin-bottom: 6px; }
.opp-stat-num small { font-size: 16px; }
.opp-stat-text { font-size: 12px; color: var(--txt-mid); line-height: 1.4; }
.opp-content-col { padding-top: 20px; }
.pain-points { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 36px; }
.pain-item { display: flex; gap: 16px; align-items: flex-start; }
.pain-icon { width: 40px; height: 40px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px; flex-shrink: 0; transition: var(--tr); }
/* .pain-item:hover .pain-icon { background: var(--gold); color: var(--white); } */
.pain-body h4 { font-size: 15px; font-weight: 700; color:#0e512f; margin-bottom: 4px; }
.pain-body p { font-size: 14px; color: var(--txt-mid); line-height: 1.6; }

/* ══════════════════════════════════════════
   PROMISE / BENTO
══════════════════════════════════════════ */
.promise-section { background: var(--g-deep); padding: var(--pad) 0; }
.promise-header { text-align: center; margin-bottom: 56px; }
.promise-bento { display: grid; grid-template-columns: 1.5fr 0.8fr 1fr; grid-template-rows: auto auto; gap: 20px; }
.bento-card { border-radius: var(--r-xl); overflow: hidden; position: relative; transition: var(--tr); }
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.bento-large { grid-column: 1; grid-row: 1 / 3; background: var(--g-dark); }
.bento-tall { grid-column: 2; grid-row: 1 / 3; background: linear-gradient(160deg, var(--g-mid) 0%, var(--g-dark) 100%); display: flex; flex-direction: column; justify-content: center; }
.bento-sm { background: #0d4528; padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.bento-sm:first-of-type { grid-column: 3; grid-row: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); }
.gold-card { background: linear-gradient(135deg, rgba(201,147,58,0.2) 0%, rgba(201,147,58,0.05) 100%); border: 1px solid rgba(201,147,58,0.25); grid-column: 3; grid-row: 2; }
.bento-img-wrap { position: relative; height: 280px; overflow: hidden; }
.bento-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.bento-card:hover .bento-img-wrap img { transform: scale(1.05); }
.bento-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,26,16,0.85) 0%, transparent 60%); }
.bento-content { padding: 28px; }
.bento-pill { display: inline-block; background: rgba(201,147,58,0.15); color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; padding: 6px 14px; border-radius: var(--r-full); border: 1px solid rgba(201,147,58,0.25); margin-bottom: 12px; }
.bento-large .bento-content h3, .bento-large .bento-content p { color: var(--white); }
.bento-large .bento-content p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.65; margin-top: 8px; }
.bento-tall h3, .bento-tall p, .bento-sm h3, .bento-sm p { color: var(--white); }
.bento-tall p, .bento-sm p { color: rgba(255,255,255,0.7); font-size: 13.5px; line-height: 1.65; }
.bento-icon-large { font-size: 36px; color: var(--gold); margin-bottom: 20px; }
.bento-icon-sm { font-size: 24px; color: var(--gold); margin-bottom: 8px; }
.bento-tall h3 { font-family: var(--f-display); font-size: 22px; margin-bottom: 12px; }
.bento-sm h3 { font-size: 15px; font-weight: 700; }
.bento-time-bar { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.bento-time-bar span { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 600; }
.time-track { flex: 1; height: 4px; background: rgba(255,255,255,0.15); border-radius: 99px; overflow: hidden; }
.time-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); border-radius: 99px; }
.in-view .time-fill { animation: timeFill 1.5s 0.5s ease forwards; }
@keyframes timeFill { to { width: 100%; } }


.bento-icon-sm img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}
.bento-icon-large img{
  width: 50px;
  height: 50px;

}

/* ══════════════════════════════════════════
   MARKET GAP — IMAGE 2 REFERENCE
   Ivory bg, two rounded cards, THE GAP center badge, bottom CTA bar
══════════════════════════════════════════ */
.gap-section { background: var(--ivory); padding: var(--pad) 0; }

.gap-header { text-align: center; margin-bottom: 52px; }
.gap-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.gap-eyebrow-line {
  height: 1px;
  width: 60px;
  background: var(--gold);
  opacity: 0.5;
}
.gap-title { margin-top: 0; }
.gap-sub { max-width: 600px; margin: 0 auto; }

/* Two-card versus wrapper */
.gap-cards-wrap {
  display: grid;
  grid-template-columns: 1fr 68px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 32px;
}

/* Cards */
.gap-card {
  border-radius: 20px;
  padding: 36px 32px;
}
.gap-card-problem {
  background: var(--white);
  border: 1px solid rgba(192,57,43,0.1);
  box-shadow: var(--sh-sm);
}
.gap-card-solution {
  background: var(--white);
  border: 1px solid rgba(46,94,62,0.1);
  box-shadow: var(--sh-sm);
}

/* Card heading */
.gap-card-head { margin-bottom: 24px; }
.gap-card-head-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 14px;
}
.red-circle { background: var(--red); color: var(--white); }
.green-circle { background: var(--g-dark); color: var(--white); }

.gap-card-head h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--txt-dk);
  line-height: 1.3;
  margin-bottom: 10px;
}
.gap-card-underline { height: 2px; width: 40px; border-radius: 99px; }
.red-underline { background: var(--red); }
.green-underline { background: var(--g-dark); }

/* List items */
.gap-card-list { display: flex; flex-direction: column; gap: 18px; }
.gap-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--txt-mid);
  line-height: 1.55;
}
.gap-card-list li strong { color: var(--txt-dk); }
.gap-card-list.solution li strong { color: var(--txt-dk); }

.gap-li-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-li-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}
/* .red-li { background: rgba(192,57,43,0.1); color: var(--red); } */
.green-li { background: rgba(46,94,62,0.1); color: var(--g-mid); }

/* Center THE GAP badge column */
.gap-center-badge-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  gap: 0;
  position: relative;
}
.gap-center-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  margin: 6px 0;
}
.gap-the-badge {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--g-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 0 0 8px rgba(15,36,25,0.08); */
  margin: 8px 0;
  flex-shrink: 0;
}
.gap-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.gap-badge-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.gap-badge-main {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
/* Arrow buttons on badge */
.gap-arrow-left, .gap-arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--g-mid);
  border: none;
  color: var(--white);
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}
.gap-arrow-left { left: -42px; }
.gap-arrow-right { right: -42px; }
.gap-arrow-left:hover, .gap-arrow-right:hover { background: var(--gold); }

/* Bottom CTA bar */
.gap-cta-bar {
  background: var(--white);
  border: 1px solid var(--ivory-dk);
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--sh-sm);
  margin-top: 0;
}
.gap-cta-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--g-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.gap-cta-text { flex: 1; }
.gap-cta-text h4 { font-family: var(--f-display); font-size: 22px; font-weight: 700; color: var(--txt-dk); margin-bottom: 4px; }
.gap-cta-text p { font-size: 14px; color: var(--txt-mid); }
.gap-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--g-deep);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: var(--sh-gold);
  flex-shrink: 0;
}
.gap-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,147,58,0.45); }

/* ══════════════════════════════════════════
   BUSINESS MODEL — IMAGE 3 REFERENCE
   Dark green bg, 2-col 3-row card grid, center diamonds
══════════════════════════════════════════ */
.model-section { background: var(--g-deep); padding: var(--pad) 0; position: relative; overflow: hidden; }
/* Subtle decorative rings */
.model-section::before {
  content: '';
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,147,58,0.06);
  pointer-events: none;
}
.model-section::after {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,147,58,0.04);
  pointer-events: none;
}

.model-header {
  text-align: center;
  margin-bottom: 64px;
}
.model-header-diamond {
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 28px auto 0;
  opacity: 0.7;
}

/* 2-col 3-row grid */
.model-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 20px 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Cards */
.model-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 28px 28px 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--tr);
}
.model-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,147,58,0.2);
  transform: translateY(-2px);
}
.mc-icon-wrap img{
  width: 40px;
  height: 40px;
}

.mc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  /* background: rgba(201,147,58,0.12); */
  /* border: 1px solid rgba(201,147,58,0.2); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--tr);
}
.model-card:hover .mc-icon-wrap {
  background: rgba(201,147,58,0.2);
}

.mc-body { flex: 1; }
.mc-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mc-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.mc-body p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}

/* Center connector column with diamond */
.model-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mc-diamond {
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   INVESTMENT DASHBOARD
══════════════════════════════════════════ */
.invest-section { background: var(--ivory); padding: var(--pad) 0;}
.invest-header { text-align: center; margin-bottom: 48px; }
.invest-tabs { display: flex; align-items: center; justify-content: center; gap: 0; background: var(--white); border-radius: var(--r-full); padding: 5px; border: 1px solid var(--ivory-dk); box-shadow: var(--sh-sm); width: fit-content; margin: 0 auto 40px; }
.invest-tab { padding: 12px 32px; border-radius: var(--r-full); border: none; font-family: var(--f-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--tr); background: transparent; color: var(--txt-mid); }
.invest-tab.active { background: var(--g-dark); color: var(--white); box-shadow: 0 4px 16px rgba(26,58,42,0.3); }
.invest-panel { display: none; }
.invest-panel.active { display: block; }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.panel-left { background: var(--g-deep); border-radius: var(--r-xl); padding: 40px 36px; }
.panel-price-tag { margin-bottom: 32px; }
.price-label { font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; display: block; margin-bottom: 6px; }
.price-big { font-family: var(--f-display); font-size: 60px; font-weight: 700; color: var(--gold); line-height: 1; display: inline; }
.price-sub { font-size: 16px; color: rgba(255,255,255,0.4); margin-left: 8px; }
.panel-price-tag.flagship .price-big { color: var(--gold-lt); }
.panel-metrics { display: flex; flex-direction: column; gap: 28px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.metric-block { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg); padding: 18px 14px; text-align: center; }
.metric-num { font-family: var(--f-display); font-size: 22px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 6px; }
.metric-label { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 600; letter-spacing: 0.5px; }
.royalty-visual { background: rgba(255,255,255,0.04); border-radius: var(--r-md); padding: 20px; border: 1px solid rgba(255,255,255,0.06); }
.royalty-label-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.royalty-pct-bad { color: rgba(192,57,43,0.85); font-weight: 700; }
.royalty-pct-good { color: var(--gold); font-weight: 700; font-size: 14px; }
.royalty-bar-wrap { height: 8px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; }
.royalty-fill { height: 100%; border-radius: 99px; transition: width 1.2s ease; }
.royalty-fill.bad { background: rgba(192,57,43,0.6); width: 0; }
.royalty-fill.good { background: linear-gradient(90deg, var(--gold), var(--gold-lt)); width: 0; }
.in-view .royalty-fill.bad { width: 80%; }
.in-view .royalty-fill.good { width: 20%; }
.flagship-badge-row { display: flex; gap: 12px; flex-wrap: wrap; }
.flagship-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,147,58,0.12); color: var(--gold); border: 1px solid rgba(201,147,58,0.2); border-radius: var(--r-full); padding: 8px 16px; font-size: 12px; font-weight: 600; }
.panel-right { background: var(--white); border-radius: var(--r-xl); padding: 40px 36px; border: 1px solid var(--ivory-dk); box-shadow: var(--sh-sm); }
.panel-specs-head { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--g-dark); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--ivory-dk); }
.panel-specs { display: flex; flex-direction: column; gap: 14px; }
.panel-specs li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--txt-mid); }
.panel-specs li i { color: var(--g-mid); font-size: 14px; flex-shrink: 0; }
.royalty-callout { background: linear-gradient(135deg, var(--g-dark), var(--g-deep)); border-radius: var(--r-xl); margin-top: 24px; overflow: hidden; border: 1px solid rgba(201,147,58,0.15); }
.royalty-callout-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; padding: 44px 48px; }
.royalty-callout-text h3 { font-family: var(--f-display); font-size: 30px; color: var(--white); margin-top: 8px; }
.royalty-callout-text p { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 10px; }
.royalty-callout-stat { display: flex; align-items: center; gap: 32px; flex-shrink: 0; }
.rcstat { text-align: center; }
.rcstat-num { font-family: var(--f-display); font-size: 42px; font-weight: 700; color: var(--gold); line-height: 1; }
.rcstat-lbl { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 6px; line-height: 1.4; max-width: 192px; }
.rcstat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.12); }

/* ══════════════════════════════════════════
   WHY INVEST
══════════════════════════════════════════ */
.why-section { background: var(--ivory); padding: var(--pad) 0;padding-top: 30px; }
.why-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-img-frame { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.why-img-frame img { width: 100%; height: 560px; object-fit: cover; }
.why-img-float { position: absolute; bottom: 24px; left: 24px; background: rgba(15,36,25,0.92); backdrop-filter: blur(16px); border: 1px solid rgba(201,147,58,0.3); border-radius: var(--r-lg); padding: 16px 20px; display: flex; align-items: center; gap: 14px; color: var(--white); }
.why-img-float i { font-size: 22px; color: var(--gold); }
.why-img-float strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.why-img-float small { font-size: 11px; color: rgba(255,255,255,0.55); }
.why-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; margin: 28px 0 36px; }
.wc-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--txt-mid); }
.wc-item i { color: var(--g-mid); font-size: 16px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   ADVANTAGES
══════════════════════════════════════════ */
.advantages-section { background: var(--white); padding: var(--pad) 0; }
.adv-header { text-align: center; margin-bottom: 56px; }
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.adv-card { border-radius: var(--r-xl); overflow: hidden; background: var(--ivory); border: 1px solid var(--ivory-dk); transition: var(--tr); }
.adv-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.adv-card-img { position: relative; height: 240px; overflow: hidden; }
.adv-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.adv-card:hover .adv-card-img img { transform: scale(1.07); }
.adv-card-logo { position: absolute; top: 16px; right: 16px; width: 48px; height: 48px; object-fit: contain; background: rgba(255,255,255,0.9); border-radius: var(--r-md); padding: 6px; }
.adv-card-logo img { width: 100%; height: 100%; object-fit: contain; }
.adv-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,36,25,0.5) 0%, transparent 60%); }
.adv-card-body { padding: 28px; }
.adv-card-body h3 { font-family: var(--f-display); font-size: 22px; font-weight: 700; color: var(--txt-dk); margin-bottom: 12px; }
.adv-card-body p { font-size: 14px; color: var(--txt-mid); line-height: 1.7; margin-bottom: 16px; }
.adv-card-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; color: var(--g-mid); background: var(--g-pale); border-radius: var(--r-full); padding: 6px 14px; border: 1px solid rgba(46,94,62,0.15); }

/* ══════════════════════════════════════════
   TRUST SECTION
══════════════════════════════════════════ */
.trust-section { background: var(--g-dark); padding: var(--pad) 0; }
.trust-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.trust-img-frame { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.trust-img-frame img { width: 100%; height: 520px; object-fit: cover; }
.trust-img-badge { position: absolute; bottom: 24px; right: 24px; background: rgba(10,26,16,0.9); backdrop-filter: blur(16px); border: 1px solid rgba(201,147,58,0.3); border-radius: var(--r-lg); padding: 20px 24px; text-align: center; }
.tib-num { font-family: var(--f-display); font-size: 36px; font-weight: 700; color: var(--gold); line-height: 1; }
.tib-text { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; line-height: 1.4; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.trust-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r-lg); padding: 22px; display: flex; gap: 16px; align-items: flex-start; transition: var(--tr); }
.trust-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,147,58,0.2); transform: translateY(-2px); }
.trust-item-icon { width: 38px; height: 38px; border-radius: var(--r-md);  display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px; flex-shrink: 0; }
.trust-item-body h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.trust-item-body p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ══════════════════════════════════════════
   COMPARISON
══════════════════════════════════════════ */
.compare-section { background: var(--ivory); padding: var(--pad) 0; }
.compare-header { text-align: center; margin-bottom: 56px; }
.compare-table { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--ivory-dk); }
.compare-col { padding: 40px 40px 48px; }
.compare-ours { background: var(--g-deep); position: relative; }
.compare-theirs { background: var(--white); }
.compare-col-head { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; position: relative; }
.compare-head-icon { width: 44px; height: 44px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.green-bg { background: rgba(201,147,58,0.2); color: var(--gold); }
.grey-bg { background: rgba(0,0,0,0.06); color: var(--txt-mid); }
.compare-col-head h3 { font-size: 20px; font-weight: 700; }
.compare-ours .compare-col-head h3 { color: var(--white); }
.compare-theirs .compare-col-head h3 { color: var(--txt-dk); }
.compare-col-head small { font-size: 12px; }
.compare-ours .compare-col-head small { color: rgba(255,255,255,0.45); }
.compare-theirs .compare-col-head small { color: var(--txt-lt); }
.compare-badge { position: absolute; right: 0; top: 0; background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: var(--g-deep); font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: var(--r-full); }
.compare-list { display: flex; flex-direction: column; gap: 16px; }
.compare-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; line-height: 1.5; }
.compare-ours .compare-list li { color: rgba(255,255,255,0.82); }
.compare-theirs .compare-list li { color: var(--txt-mid); }
.compare-ours .compare-list i { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.compare-theirs .compare-list i { color: var(--red); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   WAVE CTA
══════════════════════════════════════════ */
.wave-section { position: relative; padding: var(--pad) 0; overflow: hidden; background: linear-gradient(135deg, var(--g-deep) 0%, var(--g-dark) 40%, #143020 100%); }
.wave-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 50%, rgba(201,147,58,0.08) 0%, transparent 70%); pointer-events: none; }
.wave-content { text-align: center; position: relative; z-index: 2; }
.wave-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); background: rgba(201,147,58,0.1); border: 1px solid rgba(201,147,58,0.25); padding: 8px 18px; border-radius: var(--r-full); margin-bottom: 24px; }
.wave-heading { font-family: var(--f-display); font-size: clamp(32px, 4.5vw, 60px); color: var(--white); line-height: 1.12; margin-bottom: 20px; }
.wave-heading em { color: var(--gold); font-style: italic; }
.wave-sub { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto 40px; line-height: 1.75; }
.wave-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.wave-stats { display: flex; align-items: center; justify-content: center; gap: 0; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-full); padding: 0; overflow: hidden; width: fit-content; margin: 0 auto; }
.ws { padding: 20px 36px; text-align: center; }
.ws-n { font-family: var(--f-display); font-size: 26px; font-weight: 700; color: var(--gold); line-height: 1; }
.ws-l { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 600; margin-top: 4px; letter-spacing: 0.5px; }
.ws-sep { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; }

/* ══════════════════════════════════════════
   FORM SECTION
══════════════════════════════════════════ */
.form-section { background: var(--g-deep); padding: var(--pad) 0; }
.form-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.form-deco-logo { width: 100px; margin-bottom: 28px; }
.form-deco-logo img { width: 100%; height: auto; object-fit: contain; }
.form-perks { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.form-perk { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.78); font-size: 14.5px; }
.form-perk i { width: 36px; height: 36px; border-radius: var(--r-md); background: rgba(201,147,58,0.12); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.form-card { background: var(--white); border-radius: var(--r-xl); padding: 44px 40px; box-shadow: 0 24px 80px rgba(0,0,0,0.3); }
.form-card h3 { font-family: var(--f-display); font-size: 26px; font-weight: 700; color: var(--txt-dk); margin-bottom: 4px; }
.form-card-sub { font-size: 13.5px; color: var(--txt-lt); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--txt-dk); letter-spacing: 0.3px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { font-family: var(--f-body); font-size: 14px; color: var(--txt-dk); background: var(--ivory); border: 1.5px solid var(--ivory-dk); border-radius: var(--r-md); padding: 12px 16px; transition: var(--tr-fast); outline: none; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--g-mid); background: var(--white); box-shadow: 0 0 0 3px rgba(46,94,62,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit-btn { width: 100%; padding: 17px 24px; background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: var(--g-deep); font-family: var(--f-body); font-weight: 800; font-size: 22px; border: none; border-radius: var(--r-full); cursor: pointer; transition: var(--tr); box-shadow: var(--sh-gold); letter-spacing: 0.3px; margin-top: 8px; }
.form-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(201,147,58,0.45); }
.form-privacy { font-size: 12px; color: var(--txt-lt); text-align: center; margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-privacy i { color: var(--g-mid); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
 footer{
  background:#000;
  /* padding:40px 56px; */
  display:flex;align-items:center;justify-content:space-between;  text-align:center;flex-direction:column;text-align:center;;
  border-top:1px solid rgba(201,146,42,.1);flex-wrap:wrap;gap:16px;
}
.footer-brand{display:flex;align-items:center;gap:10px;flex-direction:column;text-align: center;margin-top: 25px;}
.footer-brand .hexmark{width:32px;height:32px}
.footer-brand .hexmark .hm{font-size:13px}
.footer-words .fn{
  font-family: 'Prohibition Test Regular', sans-serif;
  font-weight:600;
  color:rgba(249,245,236,.7);
}
.footer-words .fs{font-family: 'Prohibition Test Regular', sans-serif;font-size:10px;color:#d8b62a;letter-spacing:1.5px;text-transform:uppercase;margin-top:2px}
.footer-center p{font-size:12px;text-align:center}
.footer-right{font-size:11px;text-align:center;line-height:1.7} 


.footer-center p,
.footer-right p{
  color:rgba(249,245,236,.7);
    margin:4px 0;
    margin-bottom: 5px;
}



.htp-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}
.bento-full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}
/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --pad: 72px; }
  .hero-content-wrap { grid-template-columns: 1fr; padding: 40px 32px 0; }
  .hero-right { min-height: 360px; }
  .hero-metrics-stack { position: relative; right: auto; top: auto; transform: none; flex-direction: row; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
  .hm-card { min-width: 160px; }
  .hero-food-img { height: 360px; }
  .opp-inner, .why-inner, .trust-inner, .form-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
  .promise-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .bento-large { grid-column: 1 / 3; grid-row: 1; }
  .bento-tall { grid-column: 1; grid-row: 2 / 4; }
  .bento-sm:first-of-type { grid-column: 2; grid-row: 2; }
  .gold-card { grid-column: 2; grid-row: 3; }
  .gap-cards-wrap { grid-template-columns: 1fr; gap: 16px; }
  .gap-center-badge-col { flex-direction: row; justify-content: center; padding: 0; }
  .gap-arrow-left, .gap-arrow-right { display: none; }
  .gap-the-badge { margin: 0 8px; }
  .model-grid { grid-template-columns: 1fr; }
  .model-connector { display: none; }
  .panel-grid { grid-template-columns: 1fr; gap: 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .compare-table { grid-template-columns: 1fr; }
  .royalty-callout-inner { grid-template-columns: 1fr; gap: 28px; }
  .royalty-callout-stat { justify-content: center; }
}

@media (max-width: 768px) {
  :root { --pad: 56px; }
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content-wrap { padding: 32px 20px 0; text-align: center;}
  .hero-left { padding-right: 0; }
 .hero-actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 12px;
        width: 100%;
    }
    .hero-trust-row,.hero-right{
      display: none;
    }
    .hero-em-top,.hero-em-bottom {
  font-style: italic;
  color: #e0ab16;
  font-weight: 900;
}
.hero-em-top{
  font-size: 35px;
}
.hero-em-bottom{
  font-weight: 700;
  font-size: 25px;
}
    .hero-content-wrap{
      padding-top: 0px;
    }
  .hero-btn-primary, .hero-btn-secondary { justify-content: center; }
  .hero-food-img { height: 280px; }
  .hero-metrics-stack { flex-direction: column; align-items: stretch; }
  .hm-card { min-width: auto; }
  .hero-stats-bar { flex-direction: column; 
    padding: 20px;
        align-items: center;
        justify-content: center;
        text-align: center;}
  .opp-stat-text {
    font-size: 11px;
  }
  .section-eyebrow ,.section-title ,.body-text
{
    text-align: center;
  }
  .body-text{
    font-size: 13px;
  }
  .bento-large .bento-content h3, .bento-large .bento-content p{
    text-align: center;
  }
  .hsb-divider { width: 100%; height: 1px; align-self: auto; }
  .hsb-item { padding: 18px 24px; }
  .promise-bento { grid-template-columns: 1fr; text-align: center;}
  .bento-large, .bento-tall, .bento-sm:first-of-type, .gold-card { grid-column: 1; grid-row: auto; }
  .section-sub.white{
    line-height: 1.3;
  }
  .panel-left{
    text-align: center;
  }
  .rcstat-lbl{
    font-size: 10px;
  }
  .section-title{
    text-align: center;
    font-size: 27px;

  }
  .trust-img-frame img ,.why-img-frame img,.opp-img-wrap img {
    width: 100%;
    height: 327px;}
  .ws-l {
    font-size: 9px;}
    .wave-heading {
      font-size: 23px;
    }
  .gap-cta-bar { flex-direction: column; text-align: center; gap: 16px; }
  .gap-cta-btn { width: 100%; justify-content: center; }
  .model-grid { grid-template-columns: 1fr; }
  .model-connector { display: none; }
  .adv-grid { grid-template-columns: 1fr; }
  .why-checklist { grid-template-columns: 1fr; }
  .wave-stats { flex-wrap: wrap; border-radius: var(--r-xl); }
  .ws { flex: 1; min-width: 120px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .opp-stat-cluster { grid-template-columns: 1fr 1fr;margin-top: 30px; }
  .metric-row { grid-template-columns: 1fr; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
      .invest-tabs {
        width: 100%;
        /* flex-direction: column; */
        border-radius: var(--r-xl);
        padding: 6px;
    }
    .metric-num {
      font-size: 30px;
    }
    .metric-label {
      font-size: 14px;
    }
  .invest-tab { text-align: center; }
  .trust-inner { padding: 0 20px; }
  .pain-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;

        padding: 20px;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);

        gap: 12px;
    }

    .pain-icon img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }
    .gap-card-head {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .gap-card-head h3 {
        margin: 0;
    }
.model-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .model-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .model-connector {
        display: none;
    }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal-up { opacity: 1; transform: none; }
}
@media (min-width: 400px) and (max-width: 768px) {
    .hero-eyebrow {
        display: none;
    }
    .hero-headline {
        font-size: clamp(30px, 67px, 43px);
    }
    .hero-left{
            margin-top: 315px;

    }
}
@media (max-width: 392px) {

  /* Reduce hero height and move content up */
  .hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  /* Align content toward top */
  .hero-content-wrap {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 54px;
  }

  /* Remove excess space above heading */
  .hero-left {
    padding-top: 0;
  }

  .hero-eyebrow {
    margin-bottom: 10px;
  }

  .hero-headline {
    margin-top: 160px;
    /* margin-bottom: 160px; */
    line-height: 0.95;
  }


  /* Push buttons slightly lower */
  .hero-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 16px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-eyebrow {
        display: none;
    }
    .bento-card {
        text-align: center;
    }

    .bento-icon-sm {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 12px;
    }

    .bento-icon-sm img {
        display: block;
        margin: 0 auto;
    }

}

@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
    }

    .nav-hamburger,
    .nav-links,
    .mobile-overlay {
        display: none !important;
    }

    .nav-logo-img {
        height: 60px;
    }
   .hsb-num {
    font-size: 20px;
   }
}