/* ================================================================
   Business Buyers International — Stylesheet
   Self-hosted rebuild. Edit freely.
   ================================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-900: #081427;
  --navy-800: #112642;
  --navy-700: #1f3b5f;
  --navy-600: #31527e;
  --cream-50:  #f9f4eb;
  --cream-100: #f2e8d8;
  --cream-200: #e7d8bf;
  --amber-500: #d59a37;
  --amber-600: #b97d25;
  --amber-400: #e8b257;
  --teal-500: #1b8f90;
  --ink-900: #151d29;
  --ink-700: #3a4657;
  --ink-500: #667284;
  --ink-300: #a7b2c1;
  --line: rgba(21,29,41,0.12);
  --line-dark: rgba(255,255,255,0.12);
  --shadow-sm: 0 4px 12px rgba(8,20,39,0.08);
  --shadow-md: 0 18px 36px rgba(8,20,39,0.12), 0 4px 12px rgba(8,20,39,0.08);
  --shadow-lg: 0 35px 80px rgba(8,20,39,0.2), 0 12px 30px rgba(8,20,39,0.14);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
  --container-narrow: 900px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background:
    radial-gradient(ellipse 110% 80% at 0% 0%, rgba(213,154,55,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 90% 75% at 100% 25%, rgba(27,143,144,0.08) 0%, transparent 56%),
    var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--amber-500); color: var(--navy-900); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.15rem; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 1rem;
  display: inline-block;
}

.eyebrow-light { color: var(--amber-400); }

p.lead { font-size: 1.2rem; line-height: 1.55; color: var(--ink-700); }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow { max-width: var(--container-narrow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-400));
  color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(213,154,55,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--amber-400), #f0c16e);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(213,154,55,0.45);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.4) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.45s var(--ease);
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--cream-50);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: var(--cream-50); color: var(--navy-900); }

.btn-arrow::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,247,241,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled { background: rgba(250,247,241,0.98); box-shadow: var(--shadow-md); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--cream-50);
  line-height: 0;
}
.nav-logo-image {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(230px, 52vw);
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-500), var(--teal-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-menu a:hover { color: var(--amber-600); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-menu > li { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-dropdown-trigger::after {
  content: "▾";
  font-size: 0.7rem;
  transition: transform 0.2s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-trigger::after { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  font-size: 0.88rem;
}
.nav-dropdown-menu a:hover { background: var(--cream-100); color: var(--navy-900); }

.nav-cta { padding: 0.65rem 1.2rem; font-size: 0.85rem; }
.nav-toggle { display: none; background: none; color: var(--navy-900); font-size: 1.5rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream-50);
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(130deg, #081427 5%, #0e2745 45%, #10325b 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(213,154,55,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(20,65,109,0.62) 0%, transparent 50%),
    radial-gradient(ellipse 70% 80% at 100% 65%, rgba(27,143,144,0.25) 0%, transparent 52%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-inner {
  max-width: 1020px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  background: rgba(200,155,60,0.12);
  border: 1px solid rgba(200,155,60,0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--amber-400);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s var(--ease-out) both;
}
.hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--amber-400);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(214,179,94,0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.4); opacity: 0.6; } }

.hero h1 {
  color: var(--cream-50);
  font-weight: 400;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s 0.1s var(--ease-out) both;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber-400);
  font-weight: 500;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--cream-200);
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
  line-height: 1.5;
  animation: fadeUp 1s 0.2s var(--ease-out) both;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeUp 1.1s 0.3s var(--ease-out) both;
}

.hero-video {
  width: min(100%, 860px);
  margin: 0 auto 2.4rem;
  padding: 0.5rem;
  border-radius: calc(var(--radius-md) + 6px);
  background: linear-gradient(135deg, rgba(226,177,81,0.34), rgba(33,120,137,0.28));
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: 0 30px 70px rgba(3,12,24,0.45), 0 10px 26px rgba(3,12,24,0.32);
  animation: fadeUp 1.15s 0.35s var(--ease-out) both;
}

.hero-video video {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.14);
  background: #000;
}

.hero-features {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  width: 100%;
  padding: 0;
  animation: fadeUp 1.2s 0.4s var(--ease-out) both;
}
.hero-feature {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255,255,255,0.06);
  font-size: 0.92rem;
  color: var(--cream-100);
  font-weight: 500;
}
.hero-feature i {
  color: var(--amber-400);
  margin-right: 0.45rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Generic Section ---------- */
section {
  padding: 6rem 0;
  position: relative;
}
.section-header { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-header p { color: var(--ink-700); font-size: 1.1rem; margin-top: 1rem; }

.reveal { transition-duration: 0.65s; }

.section-dark {
  background: var(--navy-900);
  color: var(--cream-100);
}
.section-dark h2, .section-dark h3 { color: var(--cream-50); }
.section-dark .section-header p { color: var(--cream-200); }

.section-cream { background: var(--cream-100); }

/* ---------- Intro Block ---------- */
.intro {
  text-align: center;
  padding: 7rem 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, var(--cream-50) 40%, rgba(242,232,216,0.65) 100%);
  position: relative;
}
.intro::before {
  content: "❦";
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber-500);
  margin-bottom: 1.5rem;
}
.intro h2 {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-style: italic;
  font-weight: 400;
}
.intro p { max-width: 680px; margin: 0 auto 2rem; font-size: 1.15rem; color: var(--ink-700); }

/* ---------- Benefits Grid ---------- */
.benefits {
  padding: 7rem 0;
  background: linear-gradient(180deg, rgba(249,244,235,0.8) 0%, rgba(242,232,216,0.9) 100%);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

/* Give the homepage benefits cards a bit more horizontal room */
#what-youll-get .container {
  max-width: 1360px;
}

/* Homepage: keep all 5 cards in one row on desktop */
#what-youll-get .benefits-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.benefit-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
  padding: 2.5rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  text-align: center;
  transition: all 0.3s var(--ease);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,0) 30%, rgba(213,154,55,0.14) 55%, rgba(27,143,144,0.14) 90%);
  opacity: 0;
  transform: translateX(-20%);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(213,154,55,0.45);
}
.benefit-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.benefit-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  color: var(--amber-400);
  transition: all 0.3s var(--ease);
}
.benefit-card:hover .benefit-icon {
  background: var(--amber-500);
  color: var(--navy-900);
  transform: rotate(-5deg) scale(1.05);
}
.benefit-icon i { font-size: 1.25rem; }
.benefit-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.benefit-card p { color: var(--ink-700); font-size: 0.95rem; line-height: 1.5; }

/* ---------- Two-column feature blocks ---------- */
.feature-row {
  padding: 5rem 0;
}
.feature-row .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-row.reverse .container { direction: rtl; }
.feature-row.reverse .container > * { direction: ltr; }

.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(140deg, #17345a, #0d1f38);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-img.placeholder::after {
  content: "Image placeholder — replace in /assets";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--cream-200);
  font-size: 0.85rem;
  font-style: italic;
}

.feature-content h2 { margin-bottom: 1.25rem; }
.feature-list { list-style: none; margin-top: 1.5rem; }
.feature-list li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--ink-700);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0; top: 0.6rem;
  color: var(--teal-500);
}

/* ---------- Process Steps ---------- */
.process { padding: 7rem 0; background: var(--cream-50); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  counter-reset: step;
}
.process-card {
  background: linear-gradient(180deg, #ffffff 0%, #fff9ee 100%);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  position: relative;
  counter-increment: step;
  transition: all 0.3s var(--ease);
}
.process-card::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3rem;
  color: #e8ddca;
  line-height: 1;
  font-weight: 400;
  transition: color 0.3s var(--ease);
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process-card:hover::before { color: var(--amber-500); }
.process-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.process-card p { color: var(--ink-700); }
.process-card .step-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-600);
}

/* ---------- Why Us / Trust ---------- */
.trust {
  padding: 7rem 0;
  background: var(--navy-900);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at top right, rgba(200,155,60,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(26,47,74,0.4) 0%, transparent 50%);
}
.trust .container { position: relative; }
.trust h2 { color: var(--cream-50); }
.trust .lead { color: var(--cream-200); font-style: italic; max-width: 720px; }
.trust-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem 2rem;
}
.trust-grid li {
  list-style: none;
  padding: 1rem 0 1rem 2.5rem;
  position: relative;
  color: var(--cream-100);
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line-dark);
}
.trust-grid li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--amber-500);
  color: var(--navy-900);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---------- Team ---------- */
.team { padding: 7rem 0; background: var(--cream-50); }
.team-intro {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.team-intro p {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink-700);
  margin: 1rem 0;
  line-height: 1.5;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  gap: 2rem;
  justify-content: center;
}
.team-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
  transform-origin: center top;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-photo {
  aspect-ratio: 1 / 1;
  background: var(--navy-800);
  position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo.placeholder::after {
  content: "Photo placeholder";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--cream-200);
  font-style: italic;
  font-size: 0.9rem;
}
.team-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.team-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-600);
  font-weight: 600;
  margin-bottom: 1rem;
}
.team-social {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--cream-50);
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
  margin-left: auto;
  margin-top: -0.95rem;
}
.team-social:hover { background: var(--amber-500); color: var(--navy-900); transform: translateY(-2px); }
.team-social svg { width: 16px; height: 16px; }

/* ---------- Lead Form ---------- */
.lead-form-section {
  padding: 7rem 0;
  background: linear-gradient(130deg, #081427 5%, #123055 50%, #11395b 100%);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.lead-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200,155,60,0.15) 0%, transparent 60%);
}
.lead-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.lead-form-wrap .section-header h2 { color: var(--cream-50); }
.lead-form-wrap .section-header p { color: var(--cream-200); }

.lead-form {
  background: rgba(255,252,245,0.95);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-bottom: 0.45rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--ink-900);
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(200,155,60,0.15);
}
.lead-form .btn { width: 100%; justify-content: center; padding: 1.1rem; font-size: 1rem; }
.lead-form .h-captcha { margin-bottom: 0.45rem; }
.captcha-error {
  color: #b42318;
  font-size: 0.84rem;
  font-weight: 500;
}
#form-status {
  min-height: 1rem;
  font-size: 0.82rem;
  color: var(--ink-500);
  margin-top: 0.3rem;
}
.form-success {
  display: none;
  padding: 1.25rem;
  background: rgba(200,155,60,0.15);
  border: 1px solid var(--amber-500);
  border-radius: var(--radius-sm);
  color: var(--navy-900);
  font-weight: 500;
  text-align: center;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, #f7efdf 0%, #f3e8d6 100%);
  color: var(--ink-700);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo-image {
  height: 62px;
  max-width: min(260px, 60vw);
}
.footer-brand p {
  margin-top: 1.25rem;
  color: var(--ink-700);
  max-width: 380px;
  font-size: 0.95rem;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: var(--ink-700);
  font-size: 0.92rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--navy-900); }

/* Keep the long industry list tidy in 2-3 columns */
.footer-grid .footer-col:last-child ul {
  column-count: 2;
  column-gap: 2rem;
}
.footer-grid .footer-col:last-child li {
  break-inside: avoid;
  margin-bottom: 0.75rem;
}
@media (min-width: 1280px) {
  .footer-grid .footer-col:last-child ul { column-count: 3; }
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--ink-500);
}
.footer-bottom a { color: var(--navy-900); }
.footer-bottom a:hover { color: var(--amber-600); }

/* ---------- Footer Reach Out reveal ---------- */
.footer-reachout-btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}
.footer-obfuscated-email[hidden] { display: none; }
.footer-obfuscated-email:not([hidden]) {
  font-size: 0.92rem;
  color: var(--ink-700);
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-block;
  animation: fadeUp 0.35s var(--ease-out) both;
}

/* ---------- Sub-page Hero (industry) ---------- */
.subhero {
  padding: 10rem 0 5rem;
  background: var(--navy-900);
  color: var(--cream-50);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(200,155,60,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(26,47,74,0.6) 0%, transparent 50%);
  z-index: -1;
}
.subhero .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.subhero h1 {
  color: var(--cream-50);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.subhero h1 em { font-style: italic; color: var(--amber-400); font-weight: 500; }
.subhero p { font-size: 1.15rem; color: var(--cream-200); margin-bottom: 2rem; max-width: 540px;}
.subhero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  background: rgba(200,155,60,0.12);
  border: 1px solid rgba(200,155,60,0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: 2rem;
}
.subhero-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  border: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
}
.subhero-visual::after {
  content: attr(data-industry);
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--amber-400);
  line-height: 1.1;
}
.subhero-visual svg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  color: var(--amber-500);
  opacity: 0.4;
}

/* ---------- Privacy Policy ---------- */
.policy-page {
  padding: 10rem 0 5rem;
  background: var(--cream-50);
}
.policy-page .container { max-width: 800px; }
.policy-page h1 { margin-bottom: 1rem; }
.policy-page p, .policy-page li { color: var(--ink-700); margin-bottom: 1rem; line-height: 1.7; }
.policy-page h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.policy-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-meta { color: var(--ink-500); font-size: 0.9rem; margin-bottom: 3rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 4rem 0; }
  .hero { padding-top: 7rem; }
  .hero-inner { max-width: 760px; }
  .hero-sub { margin-bottom: 2rem; }
  .hero-cta-row { margin-bottom: 1.5rem; }
  .hero-video {
    margin-bottom: 1.75rem;
    padding: 0.35rem;
    border-radius: var(--radius-md);
  }
  .hero-features { grid-template-columns: repeat(2, 1fr); }
  .hero-feature { border: 1px solid rgba(255,255,255,0.16); }
  .feature-row .container,
  .subhero .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row.reverse .container { direction: ltr; }
  .feature-row.reverse .feature-img { order: -1; }
  #what-youll-get .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid .footer-col:last-child ul { column-count: 1; }
  .lead-form { grid-template-columns: 1fr; padding: 2rem; }
  .nav-menu {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--cream-50);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1.5rem;
    border-top: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 0.3s var(--ease);
    height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-logo-image {
    height: 42px;
    max-width: min(190px, 60vw);
  }
  .nav-menu > li {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0.5rem 0 0 1rem;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .hero { padding: 6.7rem 1rem 3.25rem; }
  .hero-sub {
    font-size: 1.05rem;
    margin-bottom: 1.6rem;
  }
  .hero-video { margin-bottom: 1.35rem; }
  .hero-features { gap: 0.65rem; }
  .hero-feature {
    font-size: 0.86rem;
    padding: 0.75rem 0.7rem;
  }
  #what-youll-get .benefits-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Misc ---------- */
.hide-mobile { }
@media (max-width: 700px) { .hide-mobile { display: none; } }
