

/* =============================================
   FONTS
   ============================================= */
@font-face {
  font-family: 'Heavitas';
  src: url('../Heavitas.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* @font-face {
  font-family: 'Basic Sans';
  src: url('../fonnts.com-basicsansalt-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
} */

/* =============================================
   DESIGN TOKENS
   ============================================= */



   :root {
  /* Brand palette — Primary */
  --green:        #0F6A4E;
  --green-light:  #89C94F;
  --green-pale:   #e6f5ed;
  --yellow:       #DEA810;
  --yellow-dark:  #b98900;
  --yellow-light: #FFC010;
  --dark:         #0f1a0f;
  --dark-2:       #1c2e1c;
  --text:         #1a2a1a;
  --text-muted:   #4a6450;
  --border:       rgba(15, 106, 78, 0.15);
  --white:        #ffffff;
  --off-white:    #f7faf8;
  --card-bg:      #ffffff;
  --shadow:       0 4px 32px rgba(15, 106, 78, 0.10);

  /* Secondary palette */
  --teal-deep:    #015A54;
  --green-accent: #89C94F;
  --gold-accent:  #FFC010;
  --orange-accent:#FF781D;

  /* Backward-compat aliases */
  --green-deep:  #0F6A4E;
  --green-mid:   #89C94F;
  --gold:        #DEA810;
  --gold-light:  #FFC010;
  --gold-pale:   #e6f5ed;
  --cream:       #f7faf8;
  --cream-dark:  #dceee5;
  --text-dark:   #1a2a1a;
  --text-mid:    #4a6450;

  --shadow-sm:   0 2px 12px rgba(15, 106, 78, 0.08);
  --shadow-md:   0 8px 32px rgba(15, 106, 78, 0.12);
  --shadow-lg:   0 20px 60px rgba(15, 106, 78, 0.16);

  --font-display: 'Heavitas', Georgia, serif;
  --font-body:    'Poppins', system-ui, sans-serif;

  --max-w:       1440px;
  --section-py:  50px;
  --section-px:  64px;
}

body {
  font-family: var(--font-body);
}
/* :root {

  --green:        #1a7a4a;
  --green-light:  #22a35f;
  --green-pale:   #e6f5ed;
  --yellow:       #f5c518;
  --yellow-dark:  #d4a800;
  --yellow-light: #f7d84b;
  --dark:         #0f1a0f;
  --dark-2:       #1c2e1c;
  --text:         #1a2a1a;
  --text-muted:   #4a6450;
  --border:       rgba(26, 122, 74, 0.15);
  --white:        #ffffff;
  --off-white:    #f7faf8;
  --card-bg:      #ffffff;
  --shadow:       0 4px 32px rgba(26, 122, 74, 0.10);

 
  --green-deep:  #1a7a4a;
  --green-mid:   #22a35f;
  --gold:        #f5c518;
  --gold-light:  #f7d84b;
  --gold-pale:   #e6f5ed;
  --cream:       #f7faf8;
  --cream-dark:  #dceee5;
  --text-dark:   #1a2a1a;
  --text-mid:    #4a6450;

  --shadow-sm:   0 2px 12px rgba(26, 122, 74, 0.08);
  --shadow-md:   0 8px 32px rgba(26, 122, 74, 0.12);
  --shadow-lg:   0 20px 60px rgba(26, 122, 74, 0.16);

  --font-display: 'Heavitas', Georgia, serif;
  --font-body:    'Basic Sans', system-ui, sans-serif;

  --max-w:       1440px;
  --section-py:  50px;
  --section-px:  64px;
} */

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  /* font-family: var(--font-body); */
    font-family: 'Poppins', sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, .section-title {
  font-family: 'Heavitas', Georgia, serif;
}

/* Times New Roman for all numeric display values */
.hero-stat-val,
.tailwind-val,
.format-inv-val,
.payout-val,
.inv-val,
.market-item-val,
.fico-num {
  font-family: 'Times New Roman', Times, serif !important;
}

/* Inline SVG icon base */
svg.lucide {
  display: block;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Logo image */
.nav-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
  /* text-align: center; */
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 122, 74, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.25);
  transition: all 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--section-px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Heavitas', Georgia, serif;
  font-weight: 700; font-size: 18px;
  color: var(--dark); letter-spacing: -0.5px; flex-shrink: 0;
}
.logo-text-wrap { line-height: 1.1; }
.logo-go   { font-family: 'Heavitas', Georgia, serif; font-weight: 700; font-size: 22px; color: var(--white); letter-spacing: -0.5px; }
.logo-mill { font-family: 'Heavitas', Georgia, serif; font-weight: 700; font-size: 22px; color: var(--yellow); letter-spacing: -0.5px; }
.logo-tagline {
  font-size: 9px; color: rgba(255,255,255,0.55);
  font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase;
  display: block; margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.78); letter-spacing: 0.3px; transition: color 0.2s; }
.nav-links a:hover { color: var(--yellow-light); }
.nav-cta {
  background: var(--yellow); color: var(--dark) !important;
  padding: 9px 22px; border-radius: 8px;
  font-weight: 700 !important; font-size: 13.5px !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--yellow-light) !important; transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(245, 197, 24, 0.2);
  z-index: 999; padding: 24px var(--section-px);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu ul li a { display: block; padding: 14px 0; color: rgba(255,255,255,0.85); font-weight: 500; font-size: 15px; }
.mobile-menu ul li:last-child { border: none; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--dark) url('images/hero-banner.png') center center / cover no-repeat;
  padding-top: 72px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(245,197,24,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 15% 80%, rgba(26,122,74,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none;
}
.hero-mobile-image { display: none; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  width: 100%; padding: 80px var(--section-px);
  max-width: var(--max-w); margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 100px; padding: 6px 16px 6px 10px; margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; background: var(--yellow);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}
.hero-eyebrow span { font-size: 11.5px; font-weight: 600; color: var(--yellow-light); letter-spacing: 1.5px; text-transform: uppercase; }
.hero-headline {
  font-family: 'Heavitas', Georgia, serif;
  font-size: clamp(38px, 4.5vw, 72px);
  font-weight: 700; line-height: 1.07;
  color: var(--white); letter-spacing: -1.5px; margin-bottom: 12px;
  white-space: nowrap;
}
.hero-headline .accent { color: var(--yellow); }
.hero-sub { font-family: var(--font-body); font-size: clamp(16px,1.8vw,22px); font-style: italic; color: var(--yellow-light); margin-bottom: 20px; }
.hero-desc { font-size: clamp(14px,1.1vw,16px); color: rgb(255 255 255); line-height: 1.75; max-width: 480px; margin-bottom: 36px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.hero-pill {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 8px 14px;
  font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500;
}
.hero-pill-icon {
  width: 24px; height: 24px; background: var(--yellow);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  color: var(--dark); flex-shrink: 0;
}
.hero-pill-icon svg { width: 13px; height: 13px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-primary {
  background: var(--yellow); color: var(--dark);
  padding: 15px 32px; border-radius: 10px;
  font-weight: 700; font-size: 15px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.2px; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.btn-primary:hover { background: var(--yellow-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,0.35); }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 14px 30px; border-radius: 10px; font-weight: 600; font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.3); cursor: pointer; transition: all 0.2s;
  white-space: nowrap; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow-light); }

.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.hero-truck-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(245,197,24,0.2);
  border-radius: 20px; overflow: hidden; padding: 28px;
  display: flex; align-items: center; gap: 24px;
  transition: transform 0.3s, border-color 0.3s;
}
.hero-truck-card:hover { transform: translateY(-3px); border-color: rgba(245,197,24,0.45); }
.hero-truck-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1px solid rgba(245,197,24,0.2); color: var(--white);
}
.hero-truck-icon svg { width: 30px; height: 30px; }
.hero-truck-info h3 { font-family: 'Heavitas', Georgia, serif; font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.hero-truck-info p  { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.hero-truck-tag {
  background: rgba(245,197,24,0.18); border: 1px solid rgba(245,197,24,0.3);
  border-radius: 6px; padding: 4px 10px;
  font-size: 12px; font-weight: 700; color: var(--yellow-light); display: inline-block;
}
.hero-stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.hero-stat {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 18px 16px; text-align: center;
}
.hero-stat-val { font-family: 'Heavitas', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 6px; }
.hero-stat-lab { font-size: 11.5px; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* =============================================
   DIVIDER
   ============================================= */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* =============================================
   SECTION CHROME
   ============================================= */
.section-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.mob-br { display: none; }
.eyebrow-line { width: 32px; height: 2px; background: var(--yellow); border-radius: 2px; }
.eyebrow-text { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); }
.section-title {
  font-family: 'Heavitas', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 52px); font-weight: 700;
  line-height: 1.1; color: var(--green); letter-spacing: -1px; margin-bottom: 16px;
}
.section-title .accent { color: var(--yellow-dark); }
.section-lead { font-size: clamp(14px,1.2vw,17px); color: var(--text-muted); line-height: 1.7; max-width: 600px; margin-bottom: 56px; }

/* =============================================
   PROBLEM SECTION
   ============================================= */
.problem-section { background: var(--white); padding: var(--section-py) 0; }
.problem-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; margin-bottom: 48px;
}
.problem-card {
  background: var(--off-white); border: 1px solid var(--cream-dark);
  border-radius: 20px; padding: 36px 20px 28px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.problem-icon {
  width: 64px; height: 64px; background: var(--white);
  border: 1.5px solid var(--cream-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green); margin-bottom: 20px;
}
.problem-icon svg { width: 26px; height: 26px; }
.problem-text h4 { font-size: 14px; font-weight: 700; color: var(--green); line-height: 1.4; margin-bottom: 8px; }
.problem-text p  { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.problem-cta-bar {
  background: var(--green); border-radius: 16px; padding: 40px 48px; text-align: center;
}
.problem-cta-bar p { font-family: 'Heavitas', Georgia, serif; font-size: clamp(18px,2vw,26px); font-weight: 700; color: var(--white); line-height: 1.6; }
.problem-cta-bar p strong { color: var(--yellow); }

/* =============================================
   AMPLIFY
   ============================================= */
.amplify-section { background: var(--off-white); padding: var(--section-py) 0; }
.tailwinds-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 40px; }
.tailwind-card {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: 18px; padding: 30px 24px; text-align: center;
  transition: box-shadow 0.2s, transform 0.2s; position: relative; overflow: hidden;
}
.tailwind-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  opacity: 0; transition: opacity 0.2s;
}
.tailwind-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tailwind-card:hover::before { opacity: 1; }
.tailwind-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; color: var(--white);
}
.tailwind-icon svg { width: 26px; height: 26px; }
.tailwind-val { font-family: 'Heavitas', Georgia, serif; font-size: clamp(18px,2vw,26px); font-weight: 700; color: var(--green); line-height: 1.1; margin-bottom: 8px; }
.tailwind-val .gold { color: var(--yellow-dark); }
.tailwind-label { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.market-row {
  background: var(--white); border: 1px solid var(--cream-dark); border-radius: 16px;
  padding: 28px 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.market-item { text-align: center; flex: 1; min-width: 120px; }
.market-item-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.market-item-val { font-family: 'Heavitas', Georgia, serif; font-size: 20px; font-weight: 700; color: var(--green); }
.market-arrow { color: var(--yellow-dark); font-size: 22px; font-weight: 700; }
.market-note { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 20px; font-style: italic; }

/* =============================================
   SOLUTION
   ============================================= */
.solution-section { background: var(--green); padding: var(--section-py) 0; position: relative; overflow: hidden; }
.solution-section::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.solution-section .section-title { color: var(--white); }
.solution-section .section-lead  { color: rgba(255,255,255,0.65); }
.solution-section .eyebrow-text  { color: var(--yellow); }
.solution-section .eyebrow-line  { background: var(--yellow); }
.differentiators-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.diff-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(245,197,24,0.18);
  border-radius: 16px; padding: 28px;
  display: flex; align-items: flex-start; gap: 18px;
  transition: background 0.2s, border-color 0.2s;
}
.diff-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(245,197,24,0.35); }
.diff-icon {
  width: 48px; height: 48px;
  background: rgba(245,197,24,0.15); border: 1px solid rgba(245,197,24,0.25);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--yellow);
}
.diff-icon svg { width: 22px; height: 22px; }
.diff-content h4 { font-size: 16px; font-weight: 700; color: var(--yellow-light); margin-bottom: 4px; }
.diff-content p  { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.55; }
.diff-bottom {
  margin-top: 40px; background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 16px; padding: 28px 36px; text-align: center;
}
.diff-bottom p { font-family: 'Heavitas', Georgia, serif; font-size: clamp(16px,1.8vw,22px); font-weight: 700; color: var(--white); }
.diff-bottom p strong { color: var(--yellow); }

/* =============================================
   FORMATS
   ============================================= */
.formats-section { background: var(--white); padding: var(--section-py) 0; }
.formats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 24px; }
.format-card {
  border: 1.5px solid var(--cream-dark); border-radius: 20px; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s; background: var(--off-white);
}
.format-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.format-card.featured { border-color: var(--green); position: relative; }
/* .format-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: 16px; right: 16px;
  background: var(--green); color: var(--yellow);
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  padding: 4px 10px; border-radius: 6px; z-index: 1;
} */
.format-header { background: var(--green); padding: 28px; display: flex;  gap: 16px; }
.format-icon {
  width: 52px; height: 52px;
  background: rgba(245,197,24,0.15); border: 1px solid rgba(245,197,24,0.3);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
}
.format-icon svg { width: 24px; height: 24px; }
.format-header-text h3 { font-family: 'Heavitas', Georgia, serif; font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 4px; }
.format-header-text p  { font-size: 12.5px; color: rgba(255,255,255,0.55); }
.format-body { padding: 28px; }
.format-investment { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }
.format-inv-label  { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.format-inv-val    { font-family: 'Heavitas', Georgia, serif; font-size: 36px; font-weight: 700; color: var(--green); line-height: 1; }
.format-inv-suffix { font-size: 13px; color: var(--text-muted); }
.format-features   { list-style: none; margin-bottom: 24px; }
.format-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--cream-dark);
  font-size: 13.5px; color: var(--text-muted);
}
.format-features li:last-child { border: none; }
.format-features li::before {
  content: '✓'; width: 20px; height: 20px;
  background: var(--green-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--green); font-weight: 800; flex-shrink: 0;
}
.format-best { background: var(--green-pale); border-radius: 10px; padding: 12px 16px; margin-bottom: 20px; }
.format-best-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow-dark); margin-bottom: 4px; }
.format-best p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.btn-format {
  width: 100%; background: var(--green); color: var(--white);
  padding: 13px 20px; border-radius: 10px; font-weight: 700; font-size: 14px;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.2s;
  text-align: center; display: block;
}
.btn-format:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-format.gold-btn { background: var(--yellow); color: var(--dark); }
.btn-format.gold-btn:hover { background: var(--yellow-light); }

/* =============================================
   REVENUE
   ============================================= */
.revenue-section  { background: var(--off-white); padding: var(--section-py) 0; overflow: hidden; }
.revenue-grid     { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-bottom: 16px; }
.revenue-grid-2   { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.rev-card {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: 14px; padding: 22px 18px; text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.rev-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.rev-icon {
  width: 44px; height: 44px; background: var(--green-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; color: var(--green);
}
.rev-icon svg { width: 22px; height: 22px; }
.rev-title { font-size: 13.5px; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.rev-desc  { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* =============================================
   FICO MODEL
   ============================================= */
.fico-section { background: var(--white); padding: 20px 0 var(--section-py); }
.fico-flow {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-bottom: 40px;
  background: var(--off-white); border: 1px solid var(--cream-dark);
  border-radius: 20px; overflow: hidden;
}
.fico-step { padding: 36px 28px; text-align: center; position: relative; }
.fico-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%); font-size: 24px; color: var(--yellow-dark); z-index: 1; font-weight: 700;
}
.fico-num {
  width: 40px; height: 40px; background: var(--green); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; margin: 0 auto 16px;
  font-family: 'Heavitas', Georgia, serif;
}
.fico-step-icon {
  width: 48px; height: 48px; background: var(--green-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; color: var(--green);
}
.fico-step-icon svg { width: 26px; height: 26px; }
.fico-step h4 { font-size: 14.5px; font-weight: 700; color: var(--green); margin-bottom: 6px; line-height: 1.3; }
.fico-step p  { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }
.fico-bottom-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.commercial-box { background: var(--green); border-radius: 20px; padding: 40px; color: var(--white); }
.commercial-box h3 { font-family: 'Heavitas', Georgia, serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--yellow-light);text-align: center; }
.commercial-box .sub { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 10px; line-height: 1.5; }
.investment-range { display: flex; align-items: center; gap: 6px; }
.inv-label { font-size: 13px; color: rgba(255,255,255,0.55); }
.inv-val   { font-family: 'Heavitas', Georgia, serif; font-size: 40px; font-weight: 700; color: var(--yellow); }
.payout-row { display: flex; gap: 16px; align-items: stretch; }
.payout-option {
  flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 18px; text-align: center;
}
.payout-val   { font-family: 'Heavitas', Georgia, serif; font-size: 32px; font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 4px; }
.payout-label { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.4; }
.payout-or    { display: flex; align-items: center; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.4); }
.comfort-box  { background: var(--off-white); border: 1px solid var(--cream-dark); border-radius: 20px; padding: 40px; }
.comfort-box h3  { font-family: 'Heavitas', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--green); margin-bottom: 8px; text-align: center; }
.comfort-box .sub{ font-size: 13px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }
.comfort-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.comfort-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.comfort-list li::before {
  content: '✓'; width: 22px; height: 22px;
  background: var(--green); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}

/* =============================================
   PROMISE
   ============================================= */
.promise-section { background: var(--green) url('images/native-touch.png') center center / cover no-repeat; padding: var(--section-py) 0; text-align: center; position: relative; overflow: hidden; }
.promise-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(26, 122, 74, 0.78);
  pointer-events: none;
}
.promise-inner { position: relative; z-index: 1; }
.promise-quote {
  font-family: 'Heavitas', Georgia, serif;
  font-size: clamp(22px,3vw,44px); font-weight: 700; color: var(--white);
  line-height: 1.25; max-width: 900px; margin: 0 auto 12px; letter-spacing: -0.5px;
}
.promise-quote .gold { color: var(--yellow); }
.promise-sub { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 48px; }
.promise-badges { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.promise-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgb(255 255 255 / 25%); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 14px 22px;
}
.promise-badge-icon {
  width: 36px; height: 36px; background: rgba(245,197,24,0.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); flex-shrink: 0;
}
.promise-badge-icon svg { width: 20px; height: 20px; }
.promise-badge-text { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.85); }

/* =============================================
   FORM SECTION
   ============================================= */
.form-section { background: var(--off-white); padding: var(--section-py) 0; }
.form-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.form-left { position: sticky; top: 90px; }
.form-left h2 {
  font-family: 'Heavitas', Georgia, serif;
  font-size: clamp(26px,3vw,42px); font-weight: 700; color: var(--green);
  line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 16px;
}
.form-left h2 span { color: var(--yellow-dark); }
.form-left p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.form-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.form-contact-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-muted); }
.contact-icon {
  width: 36px; height: 36px; background: var(--green); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--white);
}
.contact-icon svg { width: 16px; height: 16px; }
.form-card {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: 24px; padding: 44px 40px; box-shadow: var(--shadow-md);
}
.form-card h3 { font-family: 'Heavitas', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.form-card > p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12.5px; font-weight: 700; color: var(--green); letter-spacing: 0.3px; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--cream-dark); border-radius: 10px;
  font-size: 14.5px; font-family: var(--font-body); color: var(--text);
  background: var(--off-white); transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,122,74,0.08); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-interest-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.interest-opt {
  border: 1.5px solid var(--cream-dark); border-radius: 10px; padding: 12px 10px;
  text-align: center; cursor: pointer; transition: all 0.2s;
  font-size: 12.5px; font-weight: 600; color: var(--text-muted); user-select: none;
}
.interest-opt:hover { border-color: var(--green); color: var(--green); }
.interest-opt.selected { border-color: var(--green); background: var(--green-pale); color: var(--green); }
.interest-opt .opt-val { font-family: 'Heavitas', Georgia, serif; font-size: 16px; font-weight: 700; color: var(--yellow-dark); display: block; margin-bottom: 3px; }
.form-submit {
  width: 100%; background: var(--green); color: var(--white);
  padding: 16px 24px; border-radius: 12px; font-weight: 700; font-size: 16px;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px;
}
.form-submit:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,122,74,0.25); }
.form-note { font-size: 11.5px; color: var(--text-muted); text-align: center; margin-top: 12px; line-height: 1.5; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--dark); padding: 13px 0 32px; border-top: 1px solid rgba(245,197,24,0.2); text-align: center; }
.footer-grid { display: flex; flex-direction: column; align-items: center; gap: 24px; margin-bottom: -18px; }
.footer-brand { display: flex; flex-direction: column; align-items: center; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: -17px; max-width: 480px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--yellow-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 8px; display: flex; align-items: center; justify-content: center; flex-direction: column; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 11.5px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.25); line-height: 1.6; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }

/* =============================================
   FORM SUCCESS
   ============================================= */
.form-success { display: none; text-align: center; padding: 40px; }
.form-success-icon {
  width: 72px; height: 72px; background: var(--green-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--green);
}
.form-success-icon svg { width: 36px; height: 36px; }
.form-success h3 { font-family: 'Heavitas', Georgia, serif; font-size: 24px; font-weight: 700; color: var(--green); margin-bottom: 10px; }
.form-success p  { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   RESPONSIVE — 2560px Ultra-wide
   ============================================= */
@media (min-width: 2000px) {
  :root { --max-w: 1920px; --section-px: 100px; --section-py: 68px; }
  html { font-size: 18px; }
  .hero-headline { font-size: 88px; }
  .section-title { font-size: 64px; }
  .hero-truck-icon { width: 80px; height: 80px; }
  .hero-truck-icon svg { width: 38px; height: 38px; }
  .tailwinds-grid { gap: 28px; }
  .revenue-grid, .revenue-grid-2 { gap: 24px; }
  .nav-inner { height: 80px; }
  .hero { padding-top: 80px; }
  .problem-grid { gap: 28px; }
  .problem-icon { width: 76px; height: 76px; }
  .formats-grid { gap: 32px; }
  .diff-card { padding: 36px; }
  .rev-card { padding: 28px 22px; }
  .form-card { padding: 56px 48px; }
}

/* =============================================
   RESPONSIVE — 1600px
   ============================================= */
@media (max-width: 1600px) {
  :root { --section-px: 56px; --max-w: 1360px; }
}

/* =============================================
   RESPONSIVE — 1440px Standard Desktop
   ============================================= */
@media (max-width: 1440px) {
  :root { --section-px: 48px; --max-w: 1280px; }
  .tailwinds-grid { grid-template-columns: repeat(4,1fr); }
  .revenue-grid, .revenue-grid-2 { grid-template-columns: repeat(5,1fr); }
}

/* =============================================
   RESPONSIVE — 1280px
   ============================================= */
@media (max-width: 1280px) {
  :root { --section-px: 40px; --section-py: 42px; }
  .hero-inner { gap: 44px; }
  .tailwinds-grid { gap: 16px; }
}

/* =============================================
   RESPONSIVE — 1024px Compact Desktop
   ============================================= */
@media (max-width: 1024px) {
  :root { --section-px: 32px; --section-py: 38px; }
  .nav-links { gap: 20px; }
  .nav-links li:nth-child(n+4):not(:last-child) { display: none; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 36px; padding: 60px var(--section-px); }
  .problem-grid { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .tailwinds-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .differentiators-grid { grid-template-columns: repeat(2,1fr); }
  .formats-grid { gap: 16px; }
  .revenue-grid, .revenue-grid-2 { grid-template-columns: repeat(3,1fr); }
  .revenue-grid-2 .rev-card:nth-child(n+4) { display: none; }
  .fico-flow { grid-template-columns: repeat(2,1fr); }
  .fico-step:nth-child(2)::after,
  .fico-step:nth-child(4)::after { display: none; }
  .fico-bottom-row { gap: 20px; }
  .form-layout { gap: 40px; }
}

/* =============================================
   RESPONSIVE — 992px Large Tablet
   ============================================= */
@media (max-width: 992px) {
  :root { --section-px: 28px; --section-py: 34px; }
  /* Nav */
  .nav-links   { display: none; }
  .nav-hamburger { display: none; }
  .mobile-menu { display: none !important; }
  .nav-inner { justify-content: center; }
  .mob-br { display: block; }
  /* Global mobile center */
  .section-eyebrow { display: flex; width: max-content; margin-left: auto; margin-right: auto; justify-content: center; }
  .section-title { text-align: center; }
  .section-lead { text-align: center; margin-left: auto; margin-right: auto; }
  /* Hero */
  .hero { min-height: 100vh; background-image: url('images/mobile-banner.png'); background-position: center center; background-size: cover; }
  .hero-inner  { grid-template-columns: 1fr; gap: 40px; padding: 48px var(--section-px) 60px; text-align: center; }
  .hero-content { order: 1; }
  .hero-visual  { order: 2; }
  .hero-eyebrow { display: none; }
  .hero-desc    { margin: 0 auto 36px; }
  .hero-pills   { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-truck-card { padding: 20px; gap: 16px; }
  /* Problem */
  .problem-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .problem-card { text-align: center; }
  .problem-text { text-align: center; }
  .problem-cta-bar { padding: 32px 36px; text-align: center; }
  .problem-cta-bar p { margin-left: auto; margin-right: auto; }
  /* Amplify / Tailwinds */
  .tailwind-card { text-align: center; align-items: center; }
  /* Solution */
  .diff-card { text-align: center; align-items: center; }
  .diff-icon { margin-left: auto; margin-right: auto; }
  /* Revenue */
  .rev-card { text-align: center; }
  .rev-icon { margin-left: auto; margin-right: auto; }
  /* FICO */
  .fico-step { text-align: center; align-items: center; }
  .fico-bottom-row { grid-template-columns: 1fr; }
  .commercial-box { text-align: center; }
  .comfort-box { text-align: center; }
  /* Formats */
  .formats-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 24px; }
  .format-card { text-align: center; }
  /* Form */
  .form-layout { grid-template-columns: 1fr; gap: 32px; }
  .form-left   { position: static; text-align: center; }
  .form-left p { margin: 0 auto 10px; max-width: 520px; }
  .form-contact-list { align-items: center; }
}

/* =============================================
   RESPONSIVE — 768px Tablet
   ============================================= */
@media (max-width: 768px) {
  :root { --section-px: 24px; --section-py: 30px; }
  /* Hero */
  .hero { min-height: unset; aspect-ratio: 414 / 896; background-image: url('images/mobile-banner.png') !important; background-size: cover; background-position: top center; align-items: flex-start; }
  .hero-mobile-image { display: none !important; }
  .hero-inner { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 36px 28px 0; gap: 0; width: 100%; }
  .hero-content { order: 1; width: 100%; max-width: 100%; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-visual { order: 2; }
  .hero-eyebrow { margin-bottom: 16px; justify-content: center; }
  .hero-headline { font-size: clamp(32px, 8vw, 42px); line-height: 1.1; margin-bottom: 12px; text-align: center; white-space: normal; }
  .hero-sub { display: none !important; }
  .hero-desc { margin-bottom: 28px !important; max-width: 90%; text-align: center; font-size: 14px; line-height: 1.65; }
  .hero-pills { display: none !important; }
  .hero-actions { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-secondary { width: 85%; max-width: 320px; justify-content: center; }
  /* Problem */
  .problem-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .problem-card { padding: 28px 16px 22px; }
  .problem-icon { width: 56px; height: 56px; margin-bottom: 14px; }
  .problem-cta-bar { padding: 28px 24px; }
  /* Opportunity */
  .tailwinds-grid  { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .market-row      { flex-direction: column; align-items: center; text-align: center; gap: 20px; padding: 24px; }
  .market-item     { width: 100%; text-align: center; }
  .market-item-label, .market-item-val { text-align: center; }
  .market-arrow    { font-size: 0; width: 80%; height: 1px; background: var(--cream-dark); border: none; transform: none; align-self: center; margin: 4px 0; }
  .market-note     { text-align: center; max-width: 90%; margin: 20px auto 0; }
  /* Solution */
  .differentiators-grid { grid-template-columns: 1fr; }
  /* Revenue */
  .revenue-grid, .revenue-grid-2 { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .revenue-grid-2 .rev-card { display: block !important; }
  /* FICO */
  .fico-flow  { grid-template-columns: 1fr; border-radius: 16px; }
  .fico-step  { padding: 28px 20px; }
  .fico-step::after { display: none !important; }
  .payout-row { flex-direction: column; gap: 12px; }
  .payout-or  { justify-content: center; }
  .commercial-box, .comfort-box { padding: 32px 28px; }
  /* Form */
  .form-row  { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .form-interest-row { grid-template-columns: repeat(3,1fr); }
  .form-card { padding: 28px 20px; }
  /* Promise */
  .promise-badges { gap: 14px; }
  .promise-badge  { flex-direction: column; text-align: center; padding: 16px 14px; gap: 6px; }
  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 10px 20px; }
  /* Typography */
  .section-lead { font-size: 14px; margin-bottom: 40px; }
}

/* =============================================
   RESPONSIVE — 576px Mobile
   ============================================= */
@media (max-width: 576px) {
  :root { --section-px: 20px; --section-py: 26px; }
  /* Hero */
  .hero-inner  { padding: 32px 20px 0; }
  .hero-actions { flex-direction: column; }
  .hero-truck-card { flex-direction: column; text-align: center; padding: 18px; gap: 12px; }
  .hero-truck-icon { width: 48px; height: 48px; }
  .hero-truck-icon svg { width: 22px; height: 22px; }
  .hero-stats-row { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .hero-stat  { padding: 12px 8px; }
  .hero-stat-val { font-size: 16px; }
  .hero-stat-lab { font-size: 10px; }
  /* Problem */
  .problem-grid  { grid-template-columns: 1fr; }
  .problem-cta-bar { padding: 24px 20px; }
  /* Opportunity */
  .tailwinds-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tailwind-card  { padding: 22px 14px; }
  /* Revenue */
  .revenue-grid, .revenue-grid-2 { grid-template-columns: 1fr; gap: 12px; }
  .revenue-grid-2 .rev-card:nth-child(n+4) { display: block; }
  .revenue-grid-2 .rev-card:last-child { display: block; }
  .rev-card { padding: 18px 16px; }
  /* Formats */
  .formats-grid { max-width: 100%; }
  /* Form */
  .form-interest-row { grid-template-columns: 1fr; }
  .interest-opt { display: flex; align-items: center; gap: 12px; text-align: left; }
  .interest-opt .opt-val { min-width: 60px; }
  .form-card { padding: 24px 16px; }
  /* Nav logo */
  .logo-tagline { display: none; }
  /* Typography */
  .section-title { font-size: clamp(22px, 6vw, 36px); letter-spacing: -0.5px; }
  .section-lead  { font-size: 13.5px; margin-bottom: 32px; }
  .promise-quote { font-size: clamp(18px, 5vw, 26px); }
  .fico-section .section-title { font-size: clamp(13px, 4vw, 18px); letter-spacing: -0.3px; }
}

/* =============================================
   RESPONSIVE — 480px Small Mobile
   ============================================= */
@media (max-width: 480px) {
  :root { --section-px: 16px; }
  /* Nav */
  .logo-go, .logo-mill { font-size: 18px; }
  /* Hero */
  .hero-inner { padding: 24px 18px 0; }
  .hero-headline { font-size: 30px; letter-spacing: -0.8px; }
  .hero-desc { font-size: 11px; }
  .hero-mobile-image { margin-top: 32px; }
  /* Problem */
  .problem-cta-bar { padding: 20px; }
  .problem-icon { width: 52px; height: 52px; margin-bottom: 12px; }
  .problem-card { padding: 24px 14px 20px; }
  .problem-text h4 { font-size: 13px; }
  /* Opportunity */
  .tailwind-icon { width: 48px; height: 48px; }
  .tailwind-icon svg { width: 22px; height: 22px; }
  /* Solution */
  .diff-card { padding: 20px; gap: 14px; }
  .diff-icon { width: 40px; height: 40px; }
  /* Revenue */
  .rev-card { padding: 18px 12px; }
  .rev-icon { width: 38px; height: 38px; }
  /* FICO */
  .fico-step  { padding: 24px 14px; }
  .fico-num   { width: 34px; height: 34px; font-size: 14px; }
  .commercial-box, .comfort-box { padding: 24px 18px; }
  .payout-val { font-size: 28px; }
  .inv-val    { font-size: 32px; }
  .fico-section .section-title { font-size: clamp(13px, 4.8vw, 17px); }
  /* Form */
  .form-card { padding: 20px 14px; }
  .form-submit { font-size: 15px; padding: 14px 20px; }
  /* Footer */
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 10px 16px; }
}

/* =============================================
   RESPONSIVE — 375px Small Phone
   ============================================= */
@media (max-width: 375px) {
  :root { --section-px: 14px; }
  /* Hero */
  .hero-headline { font-size: 28px; }
  .hero-sub { display: none !important; }
  .hero-desc { font-size: 12.5px; }
  .hero-content { max-width: 100%; }
  /* Opportunity */
  .tailwinds-grid { grid-template-columns: 1fr; }
  /* Revenue */
  .revenue-grid, .revenue-grid-2 { grid-template-columns: 1fr; gap: 10px; }
  .revenue-grid-2 .rev-card { display: block !important; }
  /* Form */
  .form-interest-row { grid-template-columns: 1fr; }
  .form-card { padding: 18px 12px; }
  /* Promise */
  .promise-badge { padding: 12px 10px; }
}

/* =============================================
   RESPONSIVE — 320px Tiny Phone
   ============================================= */
@media (max-width: 320px) {
  :root { --section-px: 12px; }
  /* Nav */
  .logo-mark { width: 36px; height: 36px; font-size: 15px; }
  .logo-go, .logo-mill { font-size: 16px; }
  .nav-inner { height: 60px; }
  .hero { padding-top: 60px; }
  .mobile-menu { top: 60px; }
  /* Hero */
  .hero-headline { font-size: 26px; letter-spacing: -0.5px; }
  .btn-primary, .btn-secondary { max-width: 100%; font-size: 14px; padding: 12px 18px; }
  /* Typography */
  .section-title { font-size: 22px; }
  /* Form */
  .form-card { padding: 16px 10px; }
}


@media (max-width: 768px) {
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
    font-size: 17px;
  }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; } }
/* .solution-section .section-eyebrow {
  justify-content: center;
  text-align: center;
} */
 .solution-section .section-eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.solution-section .section-title,
.solution-section .section-lead {
  text-align: center;
  /* max-width: 700px; */
  margin-left: auto;
  margin-right: auto;
}


.section-eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-title,
.section-lead {
  text-align: center;
  /* max-width: 700px; */
  margin-left: auto;
  margin-right: auto;
}

.amplify-section .section-eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.amplify-section .section-title,
.amplify-section .section-lead {
  text-align: center;
  /* max-width: 700px; */
  margin-left: auto;
  margin-right: auto;
}

.amplify-section .tailwinds-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.amplify-section .tailwind-card {
  flex: 0 1 340px;
}


@media (max-width: 768px) {
  .diff-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .diff-icon {
    margin-bottom: 8px;
  }

  .diff-content h4 {
    margin: 0 0 8px 0;
  }

  .diff-content p {
    margin: 0;
  }

    .comfort-list li {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }

  .comfort-list li::before,
  .comfort-list li .check-icon {
    flex-shrink: 0;
    margin-top: 2px;
  }
  .format-header-text h3
  {
    text-align: left;
  }
  .diff-bottom p 
  {
    font-size: 12px;
  }
}