:root {
  --dark: #0a0c0a;
  --dark2: #111411;
  --dark3: #1a1f1a;
  --green: #1d6b3e;
  --green-l: #27924f;
  --green-xl: #32b362;
  --gold: #d4a017;
  --gold-l: #f0b829;
  --off-white: #f5f2eb;
  --cream: #faf8f3;
  --text: #1a1f1a;
  --muted: #5a6b5a;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(26, 107, 62, 0.15);
}

@font-face {
  font-family: 'Heavitas';
  src: url('../Heavitas.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

h1,
h2,
.heading {
  font-family: 'Heavitas';
}



*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {

  background: white;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- NAV --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff9ed;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content:
    space-between;
  padding: 0 5%;
  height: 70px;
}


/* LOGO */
.nav-logo-img {
  height: 30px;
  width: 200px;
  object-fit: contain;
}



.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;

  font-weight: 800;
  letter-spacing: 0.04em;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin-left: auto;
  margin-right: 28px;
}

.nav-links a {

  font-size: 16px;
  font-weight: 500;
  color: black;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}

.nav-links a:hover {
  color: var(--gold-l);
}

.nav-apply {
  background: #0f6a4e;
  color: white !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 400 !important;
  font-size: 16px !important;
  transition: background 0.2s !important;
  /* font-family: 'Basic Sans'; */
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.nav-apply:hover {
  background: #dea810 !important;
}



/* --- HERO --- */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero img.png');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.9;
}

.hero-left {
  position: relative;
  z-index: 2;
  padding: 140px 6% 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--gold-l);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-eyebrow::before {
  content: '⚡';
  font-size: 12px;
}

.hero h1 {
  font-family: 'Heavitas';
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  color: white;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 .accent {
  color: #f4b019;
  display: block;
}

.hero h1 .green {
  color: #f4b019;
  font-family: 'Heavitas';
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.hero-hooks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 40px;
  max-width: 450px;
}

.hook {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* .hook-icon {
  font-size: 20px;
  flex-shrink: 0;
} */
/* 
.hook i {
  width: 28px;
  height: 28px;
  color: #fc761d;

} */

.hook svg {
  width: 28px;
  height: 28px;
  stroke: #fc761d;
  /* your color */
}

.hook-val {
  font-size: 17px;
  font-weight: 700;
  color: white;
  display: block;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
}

.hook-lbl {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f4b019;
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
}

/* .btn-gold:hover { 
  background: var(--gold-l);
   transform: translateY(-1px);
   } */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fc761d;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.2s;
}


/* --- STATS STRIP --- */
.stats-strip {
  background: #009743;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-cell {
  padding: 24px 16px;
  text-align: center;
  border-right: 2px solid rgba(254, 250, 250, 0.05);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-n {
  font-family: 'Heavitas';
  font-size: 28px;
  font-weight: 800;
  color: #ffcb0a;
  display: block;
  letter-spacing: -0.01em;
}

.stat-l {
  font-size: 16px;
  color: white;
  margin-top: 3px;
  font-weight: 500;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}

/* --- SECTIONS --- */
.section {
  padding: 88px 5%;
  background-color: white;
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.section-dark {
  background: #fff9ed;
}

.section-darker {
  background: var(--dark3);
}

.section-light {
  background: #ffff;
}

.section-off {
  background: #fff9ed;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #009743;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;

}

.eyebrow-gold {
  color: #009743;
  font-family: 'Inter', sans-serif;
}

.section-title {
  font-family: 'Heavitas';
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: black;
}

.light .section-title {
  color: white;
}

.dark-title {
  color: white;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 52px;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.section-sub-light {
  color: rgba(255, 255, 255, 0.55);
}

/* --- PROBLEM SECTION --- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

.problem-side {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-side.dark {
  background: var(--dark3);
}

.problem-side.light {
  background: var(--off-white);
}

.problem-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
}

.problem-label.bad {
  background: rgba(220, 50, 50, 0.12);
  color: #e05555;
}

.problem-label.good {
  background: rgba(39, 146, 79, 0.15);
  color: var(--green-xl);
}

.prob-h {

  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.prob-h.light-h {
  color: white;
}

.prob-h.dark-h {
  color: var(--text);
}

.prob-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prob-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.prob-item.bad {
  color: rgba(255, 255, 255, 0.65);
}

.prob-item.good {
  color: var(--text);
  font-weight: 500;
}

.prob-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  font-weight: 700;
}

.prob-dot.x {
  background: rgba(220, 50, 50, 0.2);
  color: #e05555;
}

.prob-dot.c {
  background: rgba(39, 146, 79, 0.2);
  color: var(--green-xl);
}

.problem-tagline {
  background: var(--dark);
  color: white;
  padding: 22px 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.problem-tagline strong {
  color: var(--gold-l);
}

/* --- MARKET STATS --- */
.mkt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mkt-card {
  background: #fff9ed;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s;
}

.mkt-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateY(-3px);
}

.mkt-num {
  /* font-family: 'Barlow Condensed', sans-serif; */
  font-size: 40px;
  font-weight: 900;
  color: #ffcb0a;
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.mkt-title {
  font-size: 20px;
  font-weight: 600;
  color: black;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.mkt-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
}

/* --- DIFF SECTION --- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.diff-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.diff-card:hover {
  box-shadow: 0 8px 32px rgba(26, 107, 62, 0.12);
  transform: translateY(-2px);
}

.diff-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26, 107, 62, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.diff-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.diff-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
}

.diff-card .diff-law {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(26, 107, 62, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Heavitas';
}

/* --- PRODUCT --- */
.product-section {
  background: var(--dark);
}

.wrap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.wrap-card {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  position: relative;
  cursor: pointer;
}

.wrap-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.wrap-card:hover img {
  transform: scale(1.07);
}

.wrap-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 55%);
}

.wrap-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 1;
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wrap-type {
  font-size: 12px;
  color: var(--gold-l);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  font-family: 'Inter', sans-serif;
}

.protein-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 36px;
}

.protein-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
}

.protein-chip-name {
  font-size: 18px;
  font-weight: 600;
  color: white;
  display: block;
  font-family: 'Inter', sans-serif;
}

.protein-chip-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  font-family: 'Inter', sans-serif;
}

.nonneg-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px 24px;
}

.nonneg-item {
  text-align: center;
}

.nonneg-val {
  font-size: 13px;
  font-weight: 700;
  color: white;
  display: block;
}

.nonneg-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px;
  font-family: 'Inter', sans-serif;
}

.nonneg-item.bad .nonneg-val {
  font-size: 18px;
  color: white;
  font-family: 'Inter', sans-serif;
}

.nonneg-item.good .nonneg-val {
  font-size: 18px;
  color: white;
  font-family: 'Inter', sans-serif;
}

/* --- FOCO SECTION --- */

.foco-section {
  background: var(--off-white);
}

.foco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.foco-img {
  border-radius: 16px;
  overflow: hidden;
  height: 460px;
}

.foco-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foco-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.foco-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-light);
  transition: box-shadow 0.2s;
}

.foco-step:hover {
  box-shadow: 0 4px 24px rgba(26, 107, 62, 0.1);
}

.foco-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green);
  color: white;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

.foco-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.foco-step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

/* --- FRANCHISE MODELS --- */

.models-section {
  background: var(--dark);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.model-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.model-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateY(-4px);
}

/* .model-card.featured { 
  border: 2px solid var(--gold);
 } */

.model-img {
  height: 160px;
  overflow: hidden;
  position: relative;
}

.model-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-img::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: rgba(10,12,10,0.35); */
}

.model-feat-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.model-body {
  padding: 24px;
}

.model-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.model-name {
  font-family: 'Heavitas';
  font-size: 25px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.model-size {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

.model-invest {
  font-family: 'Heavitas';
  font-size: 34px;
  font-weight: 900;
  color: var(--gold-l);
  margin-bottom: 18px;
}

.model-rows {
  display: flex;
  flex-direction: column;
}

.model-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.model-row:last-child {
  border-bottom: none;

}

.model-row span:first-child {

  color: rgba(255, 255, 255, 0.45);
  font-family: 'Inter', sans-serif;
}

.model-row span:last-child {
  font-weight: 600;
  color: white;
  text-align: right;
  font-family: 'Inter', sans-serif;
}

.model-tag {

  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--green);
  color: white;
  font-family: 'Inter', sans-serif;
}

.model-card.featured .model-tag {
  /* background: var(--gold);  */
  background: var(--green);
  color: white;
  /* color: var(--dark);  */
}

/* --- ROI SECTION --- */
.roi-section {
  background: var(--green);
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;

  margin-bottom: 40px;
}

.roi-cell {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.roi-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: white;
  display: block;
  line-height: 1;
}

.roi-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);

  margin-top: 8px;
}

.roi-detail {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.roi-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.roi-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* --- WHY INVEST --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-img {
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
}

.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: white;
  border-radius: 12px;
  border-left: 3px solid var(--green);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--green);
}

.why-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
  font-family: 'Inter', sans-serif;
}

.why-item p {
  font-size: 13px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}






/* --- PROCESS SECTION --- */
.process-section {
  background: var(--dark3);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}

.process-card:hover {
  border-color: rgba(50, 179, 98, 0.3);
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.process-day {
  font-size: 10px;
  font-weight: 700;
  color: var(--green-xl);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Heavitas';
}

.process-num {
  font-family: 'Heavitas';
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 12px;
  right: 18px;
  line-height: 1;
}

.process-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.process-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

/* --- EXPANSION PHASES --- */
.phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.phase-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  height: 240px;
}

.phase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phase-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 10, 0.9) 0%, rgba(10, 12, 10, 0.3) 60%, transparent 100%);
}

.phase-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 1;
}

.phase-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-l);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.phase-title {
  /* font-family: 'Barlow Condensed', sans-serif; */
  font-size: 20px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.phase-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
}

/* --- SUPPLY CHAIN --- */
.supply-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.supply-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #fc761d;
  border-radius: 10px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
}

.supply-check {
  color: var(--green-xl);
  font-size: 16px;
  flex-shrink: 0;
  font-weight: 700;
}

.supply-text {
  font-size: 18px;
  font-weight: 500;
  color: black;
  font-family: 'Inter', sans-serif;
}

/* --- FINAL CTA --- */
.final-cta {
  background: url(../images/bg.jpg);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 146, 79, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.25);
  color: var(--gold-l);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.final-cta h2 {
  font-family: 'Heavitas';
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
}

.final-cta h2 span {
  color: var(--gold-l);
}

.final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
}

/* --- BOTTOM FORM --- */
.bottom-form-section {
  background: var(--dark2);
  padding: 88px 5%;
  font-family: 'Inter', sans-serif;
}

.bottom-form-inner {
  max-width: 800px;
  margin: 0 auto;
}

.bottom-form {
  background: #fff9ed;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 52px;
}

.bform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.bform-full {
  grid-column: 1/-1;
}

.bform-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bform-group label {
  font-size: 14px;
  font-weight: 700;
  color: black;
  letter-spacing: 0.08em;
  /* text-transform: uppercase; */
}

.bform-group input,
.bform-group select {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid black;
  border-radius: 8px;
  color: black;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  appearance: none;
  transition: border-color 0.2s;
}

.bform-group input:focus,
.bform-group select:focus {
  border-color: var(--green-xl);
  font-family: 'Inter', sans-serif;
}

.bform-group input::placeholder {
  /* color: rgba(255, 255, 255, 0.2); */
  /* background: #1a1f1a; */
  color: black;
  font-family: 'Inter', sans-serif;
}

.bform-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  background: #f4b019;
  color: var(--dark);

  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

/* .bform-submit:hover {

  background: var(--gold-l);

  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 160, 23, 0.25);
} */

.bform-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-top: 12px;
}

/* --- FOOTER --- */

footer {
  background: #f4b019;
  padding: 32px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.footer-brand .pro {
  color: white;
}

.footer-logo {
  height: 25px;
  /* width: 100px;  */
  /* adjust based on your design */
  width: auto;
  object-fit: contain;
}

.footer-brand .mill {
  color: var(--gold-l);
}


footer p {
  font-size: 14px;
  color: black;
  font-family: 'Inter', sans-serif;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }



  .hero-right {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 48px 5%;
  }



  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {


  .problem-grid {
    grid-template-columns: 1fr;
  }

  .mkt-grid {
    grid-template-columns: 1fr 1fr;
  }

  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }

  .foco-grid {
    grid-template-columns: 1fr;
  }

  .models-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-img {
    height: 280px;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
  }

  .phases-grid {
    grid-template-columns: 1fr;
  }

  .supply-row {
    grid-template-columns: 1fr 1fr;
  }

  .roi-grid {
    grid-template-columns: 1fr;
  }

  .roi-detail {
    grid-template-columns: 1fr;
  }

  .wrap-grid {
    grid-template-columns: 1fr 1fr;
  }

  .protein-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .nonneg-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .bform-grid {
    grid-template-columns: 1fr;
  }

  .bform-full {
    grid-column: auto;
  }

  .bottom-form {
    padding: 28px 20px;
  }

  .nav-logo-img {
    width: 140px;
    height: auto;
  }

  .nav-links {
    display: none;
  }

  .nav-apply {
    margin-left: auto;
    padding: 8px 16px;
    font-size: 14px !important;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .hero-hooks {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 50px;
    max-width: none;
    width: 100%;
  }

  .hook {
    padding: 12px 10px;
    align-items: flex-start;
    gap: 8px;
  }

  .hook-icon {
    font-size: 18px;
    margin-top: 3px;
  }

  .hook-val {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .hook-lbl {
    font-size: 10px;
    line-height: 1.2;
  }

  .btn-gold,
  .btn-outline-white {
    padding: 10px 22px;
    font-size: 13px;
  }

  .hero-btns {
    gap: 10px;
  }

  .mkt-grid {
    grid-template-columns: 1fr;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .supply-row {
    grid-template-columns: 1fr;
  }

  .wrap-grid {
    grid-template-columns: 1fr;
  }

  .protein-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .nonneg-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content-anim>* {
  animation: fadeUp 0.7s ease both;
}

.hero-content-anim>*:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-content-anim>*:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-content-anim>*:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-content-anim>*:nth-child(4) {
  animation-delay: 0.4s;
}

.hero-content-anim>*:nth-child(5) {
  animation-delay: 0.5s;
}


/*  */
@media (max-width: 900px) {
  .hero-bg {
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
  }

  .hero h1 {
    font-family: 'Heavitas';
    font-size: clamp(35px, 5.5vw, 72px);
    font-weight: 900;
    color: white;
    line-height: 0.95;
    letter-spacing: -0.01em;
    /* margin-bottom: 24px; */
    text-transform: uppercase;
  }

  .hero h1 .accent {
    color: #f4b019;
    display: block;
  }

  .hero h1 .green {
    color: #f4b019;
    font-family: 'Heavitas';
  }

  .hero-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
  }



}