/* ═══════════════════════════════════════════════════════════════
   ProMill — Main Stylesheet
   India's First Protein + Millet Performance QSR Franchise
   ═══════════════════════════════════════════════════════════════ */


/* ─── RESET & BASE ─────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}


@font-face {
  font-family: 'Heavitas';
  src: url('../public/Heavitas.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: 'Heavitas', sans-serif;
  background: #F5F0E8;
  color: #0D2B1F;
  overflow-x: hidden;
  line-height: 1.6;
}
h1,
h2,
.heading {
  font-family: 'Heavitas', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}


/* ─── DESIGN TOKENS ────────────────────────────────────────── */

:root {
  --green-deep:   #0D2B1F;
  --green-mid:    #1A4A30;
  --green-sage:   #4A7C5F;
  --green-light:  #7AB892;
  --saffron:      #E8A020;
  --saffron-dark: #C4851A;
  --cream:        #F5F0E8;
  --cream-dark:   #EAE3D5;
  --white:        #FFFFFF;
  --text-muted:   #6B7A6E;
  --border:       rgba(13, 43, 31, 0.12);

  --section-pad:  80px 0;
  --container:    1320px;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;

  --font-display:'Heavitas', sans-serif;
  --font-body:    'Inter', sans-serif;
  /* --font-mono:    'DM Mono', monospace; */
}


/* ─── UTILITIES ────────────────────────────────────────────── */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(232, 160, 32, 0.12);
  border: 1px solid rgba(232, 160, 32, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.tag::before {
  content: '●';
  font-size: 8px;
}

.section-label {
   font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #075b2b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* .section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--text-muted);
} */


/* ─── TYPOGRAPHY ───────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: 'Heavitas';
  line-height: 1.15;
}

h2 {
  font-size: clamp(32px, 4vw, 47px);
  font-weight: 900;
}

h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
}


/* ─── BUTTONS ──────────────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f4b019;
  color: var(--green-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--saffron);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background:#fc761d;
  border-color: var(--saffron-dark);
  transform: translateY(-1px);
  /* box-shadow: 0 8px 24px rgba(232, 160, 32, 0.35); */
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
 font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  color: var(--green-deep);
  border-color: var(--border);
}

.btn-outline-dark:hover {
  border-color: #fff9ed;
  background: rgba(13, 43, 31, 0.06);
}


/* ─── NAVBAR ───────────────────────────────────────────────── */

.navbar {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 140px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #fff9ed;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.nav-logo img {
  height: 30px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}


/* ─── MOBILE NAV ───────────────────────────────────────────── */

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--green-deep);
  padding: 24px 40px 32px;
  z-index: 99;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--saffron);
}

.mobile-nav .btn-primary {
  margin-top: 16px;
  justify-content: center;
}


/* ─── HERO ─────────────────────────────────────────────────── */

.hero {
  background: #075b2b;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 70px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(26, 74, 48, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232, 160, 32, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative grid lines */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--saffron);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(42px, 5.5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
   font-family: 'Heavitas', sans-serif;
}

.hero-title sm {
  /* font-style: italic; */
  color: #f4b019;
}

.hero-title .line-accent {
  display: block;
  color: #009743;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
  max-width: 500px;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
    font-family: 'Inter', sans-serif;
  
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Inter', sans-serif;
    margin-top: -20px;
}

.hero-metric {
  background: rgba(13, 43, 31, 0.6);
  padding: 20px 16px;
  text-align: center;
    font-family: 'Inter', sans-serif;
}

.hero-metric-value {
  /* font-family: var(--font-display); */
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.hero-metric-value span {
  color: #f4b019;
    font-family: 'Inter', sans-serif;
}

.hero-metric-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  /* font-family: var(--font-mono); */
  letter-spacing: 0.05em;
  line-height: 1.4;
    font-family: 'Inter', sans-serif;
}


/* ─── HERO IMAGE SIDE ──────────────────────────────────────── */

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/5;
  max-height: 600px;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(13, 43, 31, 0.7) 100%);
} */

/* Floating card on hero image */
.hero-float-card {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(13, 43, 31, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.hero-float-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.hero-float-text span {
  font-size: 12px;
  color: rgba(209, 12, 12, 0.55);
}

/* Accent corner badge */
.hero-corner-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 90px;
  height: 90px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-corner-badge strong {
  font-size: 22px;
  font-family: var(--font-display);
  display: block;
  line-height: 1;
}


/* ─── TICKER STRIP ─────────────────────────────────────────── */

.ticker-strip {
  background: var(--saffron);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  width: max-content;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4b019;
  white-space: nowrap;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-deep);
  opacity: 0.4;
}


/* ─── STATS SECTION ────────────────────────────────────────── */

.stats-section {
  padding: var(--section-pad);
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat-cell {
  padding: 36px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell:hover {
  background: var(--cream);
}

.stat-number {
   font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--saffron);
}

.stat-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-family: 'Inter', sans-serif;
  /* font-family: var(--font-mono); */
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #075b2b;
  margin-bottom: 10px;
}


/* ─── MARKET SECTION ───────────────────────────────────────── */

.market-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.market-header {
  max-width: 680px;
  margin-bottom: 64px;
}

.market-header h2 {
  margin-bottom: 20px;
   font-family: 'Heavitas', sans-serif;
   /* text-transform: uppercase; */
}

.market-header p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
    font-family: 'Inter', sans-serif;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.market-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.market-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #075b2b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.market-card:hover::before {
  transform: scaleX(1);
}

.market-card:hover {
  box-shadow: 0 12px 40px rgba(13, 43, 31, 0.08);
  transform: translateY(-2px);
}

.market-card-num {
  /* font-family: var(--font-display); */
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--green-deep);
   font-family: 'Heavitas', sans-serif;
}

.market-card-num span {
  color: #f4b019;
}

.market-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.market-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

/* Large featured card */
.market-card.featured {
  grid-column: span 1;
  background:#075b2b;
  color: var(--white);
}

.market-card.featured::before {
  /* background: var(--saffron); */
  transform: scaleX(1);
}

.market-card.featured .market-card-num {
  color: var(--white);
}

.market-card.featured h3 {
  color: var(--white);
}

.market-card.featured p {
  color: rgba(255, 255, 255, 0.6);
}

.market-card.featured .stat-label {
  color: rgba(255, 255, 255, 0.4);
}


/* ─── REINVENTION SECTION ──────────────────────────────────── */

.reinvention-section {
  padding: var(--section-pad);
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.reinvention-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.reinvention-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.reinvention-header h2 {
  color: var(--white);
}

.reinvention-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

.reinvention-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.reinv-card {
  background: rgba(13, 43, 31, 0.8);
  padding: 36px 32px;
  transition: background 0.2s;
}

.reinv-card:hover {
  background: rgba(26, 74, 48, 0.9);
}

.reinv-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.reinv-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(232, 160, 32, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 14px;
}

.reinv-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.reinv-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}


/* ─── PRODUCT SECTION ──────────────────────────────────────── */

.product-section {
  padding: var(--section-pad);
  background: var(--white);
}

.product-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.product-header .section-label {
  justify-content: center;
}

.product-header .section-label::after {
  display: none;
}

.product-header h2 {
  margin-bottom: 16px;
  font-family: 'Heavitas', sans-serif;
}

.product-header p {
  font-size: 17px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.wraps-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.wrap-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.wrap-card:hover {
  transform: scale(1.02);
}

.wrap-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrap-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13, 43, 31, 0.9));
  padding: 24px 20px 20px;
}

.wrap-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.wrap-card-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
      font-family: 'Inter', sans-serif;
}

/* Wrap color accents */
.wrap-spinach .wrap-card-overlay  { background: linear-gradient(transparent, rgba(34, 85, 34, 0.92)); }
.wrap-beetroot .wrap-card-overlay { background: linear-gradient(transparent, rgba(100, 20, 40, 0.92)); }
.wrap-carrot .wrap-card-overlay   { background: linear-gradient(transparent, rgba(160, 70, 10, 0.92)); }
.wrap-classic .wrap-card-overlay  { background: linear-gradient(transparent, rgba(13, 43, 31, 0.92)); }

.protein-sources {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 40px;
}

.protein-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.protein-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.protein-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  transition: all 0.2s;
}

.protein-tag:hover {
  border-color: var(--green-sage);
  background: var(--green-deep);
  color: var(--white);
}

.protein-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot-veg     { background: #2D8B4E; }
.dot-vegan   { background: #7AB892; }
.dot-nonveg  { background: #C0392B; }
.dot-seafood { background: #2980B9; }
.dot-egg     { background: #F39C12; }

.brand-nonneg {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid #075b2b;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.nonneg-item {
  background: var(--white);
  padding: 24px 20px;
  text-align: center;
  transition: background 0.2s;
}

.nonneg-item:hover {
  background: #075b2b;
  color: var(--white);
}

.nonneg-item:hover .nonneg-label {
  color: rgba(255, 255, 255, 0.6);
}

.nonneg-item:hover .nonneg-value {
  color: var(--white);
}

.nonneg-value {
      font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.nonneg-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
      font-family: 'Inter', sans-serif;
}


/* ─── BUSINESS MODEL ───────────────────────────────────────── */

.model-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.model-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.model-content h2 {
  margin-bottom: 20px;
      font-family: 'Heavitas', sans-serif;
}

.model-content > p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.75;
  font-family: 'Inter', sans-serif;
}

.model-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: -20px;
}

.model-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.model-step:last-child {
  border-bottom: none;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #009743;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-body h4 {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 6px;
   font-family: 'Heavitas', sans-serif;
}

.step-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
   font-family: 'Inter', sans-serif;
}

.model-visual {
  position: relative;
}

.model-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.model-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-overlay-card {
  position: absolute;
  top: 32px;
  right: -24px;
  background: var(--green-deep);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-md);
  max-width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.model-overlay-card .big-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 8px;
}

.model-overlay-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}


/* ─── FRANCHISE CARDS ──────────────────────────────────────── */

.franchise-section {
  padding: var(--section-pad);
  background: var(--white);
}

.franchise-header {
  max-width: 620px;
  margin-bottom: 64px;
}

.franchise-header h2 {
  margin-bottom: 16px;
  font-family: 'Heavitas', sans-serif;
}

.franchise-header p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  font-family: 'Inter', sans-serif;
}

.franchise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.franchise-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.franchise-card:hover {
  box-shadow: 0 20px 60px rgba(13, 43, 31, 0.12);
  transform: translateY(-4px);
}

.franchise-card.highlighted {
  border-color: var(--saffron);
  box-shadow: 0 0 0 1px var(--saffron);
}

.franchise-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.franchise-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.franchise-card:hover .franchise-img img {
  transform: scale(1.04);
}

.franchise-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--saffron);
  color: var(--green-deep);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

.franchise-card.highlighted .franchise-badge {
  background: var(--green-deep);
  color: var(--white);
}

.franchise-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.franchise-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.franchise-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}

.franchise-price {
 font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 24px;
}

.franchise-price span {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-weight: 400;
}

.franchise-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
}



.spec-key {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.spec-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-deep);
}

.franchise-best {
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}

.franchise-best strong {
  color: var(--green-deep);
  font-family: 'Inter', sans-serif;
}


/* ─── WHY SECTION ──────────────────────────────────────────── */

.why-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-sticky {
  position: sticky;
  top: 100px;
}

.why-sticky h2 {
  margin-bottom: 20px;
}

.why-sticky > p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.why-item:first-child {
  border-top: 1px solid var(--border);
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(74, 124, 95, 0.15);
  color: var(--green-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}

.why-item h4 {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ─── ROADMAP SECTION ──────────────────────────────────────── */

.roadmap-section {
  padding: var(--section-pad);
  background: url(../images/Image-7.png);
  position: relative;
  overflow: hidden;
}

.roadmap-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.roadmap-header h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-family: 'Heavitas', sans-serif;
}

.roadmap-header p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
  font-family: 'Inter', sans-serif;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.roadmap-step {
  background: rgba(13, 43, 31, 0.7);
  padding: 36px 32px;
  transition: background 0.2s;
}

.roadmap-step:hover {
  background: rgba(26, 74, 48, 0.8);
}

.roadmap-day {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.roadmap-day::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(232, 160, 32, 0.2);
}

.roadmap-step h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.roadmap-step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}


/* ─── SUPPLY / GOVERNANCE ──────────────────────────────────── */

.supply-section {
  padding: var(--section-pad);
  background: var(--white);
}

.supply-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.supply-content h2 {
  margin-bottom: 20px;
  font-family: 'Heavitas', sans-serif;
}

.supply-content > p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.75;
  font-family: 'Inter', sans-serif;
}

.supply-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.supply-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  font-family: 'Inter', sans-serif;
}

.supply-pill::before {
  content: '✓';
  color: #075b2b;
  font-weight: 700;
}

.supply-visual {
  background: #075b2b;
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

/* .supply-visual::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(232, 160, 32, 0.08);
  pointer-events: none;
} */

.supply-visual-label {
 font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.supply-visual-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 2.2rem;
}

.supply-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.supply-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.supply-metric:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.supply-metric-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Inter', sans-serif;
}

.supply-metric-val {
 font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #f4b019;
  font-weight: 500;
}


/* ─── EXPANSION SECTION ────────────────────────────────────── */

.expansion-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.expansion-header {
  max-width: 620px;
  margin-bottom: 64px;
}

.expansion-header h2 {
  margin-bottom: 16px;
  font-family: 'Heavitas', sans-serif;
}

.expansion-header p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
      font-family: 'Inter', sans-serif;
}

.expansion-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.phase-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.phase-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.phase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.phase-card:hover .phase-img img {
  transform: scale(1.06);
}

.phase-body {
  background: var(--white);
  padding: 28px 28px 32px;
  border: 1px solid var(--border);
  border-top: none;
}

.phase-num {
   font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}

.phase-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-family: 'Heavitas', sans-serif;
}

.phase-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.phase-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.phase-city {
  font-size: 12px;
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--text-muted);
  font-weight: 500;
}


/* ─── CTA SECTION ──────────────────────────────────────────── */

.cta-section {
  padding: var(--section-pad);
  background: #075b2b;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232, 160, 32, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 24px;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 20px;
  line-height: 1.1;
   font-family: 'Heavitas', sans-serif;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
}

.cta-section .btn-primary {
  font-size: 16px;
  padding: 18px 40px;
  font-family: 'Inter', sans-serif;
}


/* ─── FORM SECTION ─────────────────────────────────────────── */

.form-section {
  padding: var(--section-pad);
  background: var(--white);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-content h2 {
  margin-bottom: 16px;
   font-family: 'Heavitas', sans-serif;
}

.form-content > p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.75;
  font-family: 'Inter', sans-serif;
}

.form-trust-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--green-deep);
  font-family: 'Inter', sans-serif; 
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(74, 124, 95, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
}

.form-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
     font-family: 'Heavitas', sans-serif;
}

.form-card > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif; 
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  font-family: 'Inter', sans-serif; 
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
 font-family: 'Inter', sans-serif; 
  font-size: 15px;
  color: var(--green-deep);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--green-sage);
  box-shadow: 0 0 0 3px rgba(74, 124, 95, 0.12);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit-btn {
  width: 100%;
  background: #f4b019;
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 18px 32px;
  font-family: 'Inter', sans-serif; 
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.form-submit-btn:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 43, 31, 0.25);
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}


/* ─── FOOTER ───────────────────────────────────────────────── */

.footer {
  text-align: center;
  padding: 0 50px;
  background: #075b2b;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand img {
  width: 350px;
  margin-bottom: 22px;
  margin-top: 50px;
}

.footer-brand p {
  max-width: 500px; /* keeps the paragraph from stretching edge to edge */
  margin: 0 auto;
  color: white;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 40px;
  color: #b2b8b3;
}

/* ─── SCROLL ANIMATIONS ────────────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════ */


/* ─── 2560px (Ultra-wide) ──────────────────────────────────── */

@media (min-width: 2560px) {
  :root { --container: 2000px; }

  body        { font-size: 18px; }
  .hero-title { font-size: 96px; }
  h2          { font-size: 64px; }

  .stats-grid { grid-template-columns: repeat(6, 1fr); }
  .navbar     { padding: 0 80px; height: 84px; }
  .container  { padding: 0 80px; }
  .hero       { padding: 140px 0 100px; }
}


/* ─── 1920px ───────────────────────────────────────────────── */

@media (max-width: 1920px) {
  :root { --container: 1400px; }
}


/* ─── 1600px ───────────────────────────────────────────────── */

@media (max-width: 1600px) {
  :root { --container: 1320px; }
}


/* ─── 1440px ───────────────────────────────────────────────── */

@media (max-width: 1440px) {
  :root { --container: 1200px; }
  .hero-title { font-size: 68px; }
}


/* ─── 1280px ───────────────────────────────────────────────── */

@media (max-width: 1280px) {
  :root { --container: 1080px; }

  .hero-title { font-size: 58px; }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-cell {
    border-bottom: 1px solid var(--border);
  }

  .stat-cell:nth-child(3) {
    border-right: none;
  }

  .stat-cell:nth-child(4),
  .stat-cell:nth-child(5),
  .stat-cell:nth-child(6) {
    border-bottom: none;
  }

  .model-overlay-card {
    right: -8px;
  }
}


/* ─── 1024px (Tablet landscape) ────────────────────────────── */

@media (max-width: 1024px) {
  :root { --container: 960px; }

  .container  { padding: 0 32px; }
  .nav-links  { display: none; }
  /* .hamburger  { display: flex; } */
  .nav-cta    { display: flex; }

  .hero-inner          { gap: 40px; }
  .hero-title          { font-size: 48px; }
  .hero-corner-badge   { width: 72px; height: 72px; }
  .hero-corner-badge strong { font-size: 18px; }

  .model-overlay-card  { display: none; }

  .brand-nonneg {
    grid-template-columns: repeat(3, 1fr);
  }

  .nonneg-item:nth-child(3) {
    border-right: none;
  }

  .nonneg-item:nth-child(4),
  .nonneg-item:nth-child(5),
  .nonneg-item:nth-child(6) {
    border-top: 1px solid var(--border);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}


/* ─── 992px ────────────────────────────────────────────────── */

@media (max-width: 992px) {
  :root { --container: 100%; }

  .container { padding: 0 28px; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    max-width: 82%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas    { justify-content: center; }
  .hero-metrics { max-width: 520px; margin: 0 auto; }
  .hero-visual  { display: none; }

  .market-grid          { grid-template-columns: 1fr 1fr; }
  .market-card.featured { grid-column: span 2; }

  .reinvention-header { grid-template-columns: 1fr; gap: 24px; }
  .reinvention-grid   { grid-template-columns: 1fr 1fr; }

  .wraps-showcase { grid-template-columns: 1fr 1fr; }

  .model-inner  { grid-template-columns: 1fr; gap: 48px; }
  .model-visual { order: -1; max-width: 560px; margin: 0 auto; }
  .model-img    { aspect-ratio: 16/9; }

  .franchise-grid { grid-template-columns: 1fr 1fr; }
  .franchise-grid .franchise-card:last-child {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
  }

  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-sticky { position: static; }

  .roadmap-grid { grid-template-columns: 1fr 1fr; }

  .supply-inner { grid-template-columns: 1fr; gap: 48px; }

  .expansion-phases {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .form-layout { grid-template-columns: 1fr; gap: 48px; }

  .protein-sources {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-cell:nth-child(4) { border-right: none; }
  .stat-cell:nth-child(5) { border-right: 1px solid var(--border); }
  .stat-cell:nth-child(6) { border-right: none; }
}


/* ─── 768px (Tablet portrait) ──────────────────────────────── */

@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }

  .container { padding: 0 24px; }

  .hero       { padding: 100px 0 64px; }
  .hero-title { font-size: 40px; }

  .hero-metrics { grid-template-columns: repeat(3, 1fr); }

  .market-grid          { grid-template-columns: 1fr; }
  .market-card.featured { grid-column: span 1; }

  .reinvention-grid { grid-template-columns: 1fr; }

  .wraps-showcase { grid-template-columns: 1fr 1fr; gap: 16px; }

  .brand-nonneg { grid-template-columns: repeat(2, 1fr); }
  .nonneg-item:nth-child(2n) { border-right: none; }

  .roadmap-grid { grid-template-columns: 1fr; }

  .franchise-grid { grid-template-columns: 1fr; }
  .franchise-grid .franchise-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .expansion-phases { max-width: 100%; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .form-card { padding: 32px 28px; }
}


/* ─── 576px (Mobile landscape) ─────────────────────────────── */

@media (max-width: 576px) {
  :root { --section-pad: 56px 0; }

  .container { padding: 0 20px; }

  .hero-title { font-size: 34px; }

  .hero-metrics { grid-template-columns: 1fr 1fr; }
  .hero-metric:last-child { grid-column: span 2; }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    justify-content: center;
  }

  .btn-primary,
  .btn-outline {
    padding: 15px 24px;
    font-size: 14px;
  }

  .stats-grid      { grid-template-columns: 1fr 1fr; }
  .wraps-showcase  { grid-template-columns: 1fr 1fr; }
  .protein-sources { padding: 24px 20px; }
  .brand-nonneg    { grid-template-columns: repeat(2, 1fr); }
  .supply-visual   { padding: 32px 28px; }

  .cta-section h2 { font-size: 32px; }

  .form-row    { grid-template-columns: 1fr; }
  .footer-top  { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .navbar     { padding: 0 20px; }
  .mobile-nav { padding: 24px 20px 32px; }
}


/* ─── 480px (Mobile portrait) ──────────────────────────────── */

@media (max-width: 480px) {
  :root { --section-pad: 48px 0; }

  .hero-title      { font-size: 42px; }
  .wraps-showcase  { grid-template-columns: 1fr; }
  .brand-nonneg    { grid-template-columns: repeat(2, 1fr); }
  .franchise-specs { grid-template-columns: 1fr; }
  .form-card       { padding: 24px 20px; }
  .reinv-card      { padding: 28px 24px; }
  .roadmap-step    { padding: 28px 24px; }
}


/* ─── 375px (Small mobile) ─────────────────────────────────── */

@media (max-width: 375px) {
  :root { --section-pad: 40px 0; }

  .container  { padding: 0 16px; }
  .hero-title { font-size: 27px; }
  h2          { font-size: 26px; }

  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metric:last-child { grid-column: span 1; }

  .stats-grid  { grid-template-columns: 1fr; }
  .stat-cell   { border-right: none; }
  .brand-nonneg { grid-template-columns: 1fr 1fr; }

  .franchise-price { font-size: 28px; }
  .form-card       { padding: 20px 16px; }
  .navbar          { padding: 0 16px; }
  .mobile-nav      { padding: 20px 16px 28px; }
}


/* ─── 320px (Smallest screens) ─────────────────────────────── */

@media (max-width: 320px) {
  .hero-title        { font-size: 24px; }
  h2                 { font-size: 22px; }
  .hero-badge        { font-size: 10px; padding: 5px 12px; }
  .hero-metric-value { font-size: 20px; }
  .stat-number       { font-size: 28px; }
  .brand-nonneg      { grid-template-columns: 1fr; }
}


/*  */

.trust-icon {
  font-size: 24px;
  color: #075b2b; /* Gold */
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}


@media (max-width: 768px) {

  /* Section headers: tag, h2, p */
  .market-header,
  .model-content,
  .franchise-header,
  .supply-content,
  .expansion-header,
  .form-content {
    text-align: center;
  }

  .market-header .section-label,
  .model-content .section-label,
  .franchise-header .section-label,
  .supply-content .section-label,
  .expansion-header .section-label,
  .form-content .section-label {
    justify-content: center;
  }

  .market-header p,
  .model-content > p,
  .franchise-header p,
  .supply-content > p,
  .expansion-header p,
  .form-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  /* Market opportunity cards (₹45K Cr, 70% etc) */
  .market-card {
    text-align: center;
  }

  .market-card .section-label {
    justify-content: center;
  }

  /* Business model numbered steps */
  .model-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Roadmap steps (Commitment & Agreement, Site Selection...) */
  .roadmap-step {
    text-align: center;
  }

  .roadmap-day {
    justify-content: center;
  }

  /* Supply chain pills */
  .supply-pills {
    justify-content: center;
  }

  /* Expansion phase cards */
  .phase-body {
    text-align: center;
  }

  .phase-cities {
    justify-content: center;
  }

  /* Franchise cards body content */
  .franchise-body {
    text-align: center;
  }

  .franchise-specs {
    justify-content: center;
  }

  .trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--green-deep);
  font-family: 'Inter', sans-serif; 
}

}
/*  */
.nav-cta .btn-primary {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .navbar {
    height: 64px;
    padding: 0 20px;
  }

  .nav-logo img {
    height: 32px;
  }

  .nav-cta .btn-primary {
    padding: 8px 14px;
    font-size: 13px;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 60px;
    padding: 0 26px;
  }

  .nav-logo img {
    height: 18px;
  }

  .nav-cta .btn-primary {
    padding: 6px 10px;
    font-size: 11px;
    gap: 4px;
  }
}

@media (max-width: 375px) {
  .nav-logo img {
    height: 20px;
  }

  .nav-cta .btn-primary {
    padding: 8px 8px;
    font-size: 10px;
  }
}



@media (max-width: 992px) {
  .hero {
    background-image: url('../images/Mobile.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .hero::before,
  .hero::after {
    display: none;
  }
}