:root {
  --navy: #071e31;
  --green: #075f36;
  --green-dark: #034526;
  --gold: #f2c94c;
  --gold-dark: #ddb22f;
  --ink: #17212a;
  --muted: #5d6870;
  --paper: #f4f7f5;
  --line: #d7e0dc;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.wholesale-header {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 5vw;
  color: var(--white);
  background: var(--navy);
}
.wholesale-brand {
  width: max-content;
  display: flex;
  flex-direction: column;
  line-height: .9;
  text-decoration: none;
}
.wholesale-brand span { font-size: 11px; font-weight: 650; }
.wholesale-brand strong { font-size: 19px; }
.wholesale-header nav { display: flex; gap: 28px; }
.wholesale-header nav a { font-size: 14px; font-weight: 700; text-decoration: none; }
.header-cta {
  justify-self: end;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.wholesale-hero {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  align-items: center;
  gap: 5vw;
  padding: 54px 6vw;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}
.hero-copy { max-width: 720px; }
.eyebrow {
  margin-bottom: 14px;
  color: #c8e7d5;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--green); }
.wholesale-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}
.hero-summary {
  max-width: 670px;
  margin-bottom: 24px;
  font-size: 19px;
  line-height: 1.55;
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  background: rgba(255,255,255,.25);
  border: 1px solid rgba(255,255,255,.25);
}
.hero-facts li { min-height: 100px; padding: 18px; background: var(--green); }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { margin-bottom: 7px; font-size: 15px; }
.hero-facts span { color: #d7e8df; font-size: 12px; line-height: 1.4; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.primary-cta, .gold-cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 4px;
  font-weight: 850;
  text-decoration: none;
}
.primary-cta:hover, .gold-cta:hover, .header-cta:hover { background: var(--gold-dark); }
.text-link { color: var(--white); font-weight: 750; text-underline-offset: 5px; }
.legal-note { margin: 18px 0 0; color: #d5e3dd; font-size: 12px; }
.hero-product { min-width: 0; display: grid; place-items: center; }
.hero-product img { width: min(100%, 650px); filter: drop-shadow(0 24px 28px rgba(0,0,0,.28)); }

.pricing-section { padding: 76px 6vw; background: var(--paper); }
.section-heading { max-width: 800px; margin-bottom: 34px; }
.section-heading h2, .product-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}
.section-heading > p:last-child, .product-copy > p { color: var(--muted); line-height: 1.6; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.price-grid article {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.price-grid .featured-tier { border: 2px solid var(--green); }
.tier-label { margin-bottom: 28px; color: var(--green); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.price-grid h3 { margin-bottom: 8px; font-size: 23px; }
.price-grid strong { margin-bottom: 5px; font-size: 36px; }
.price-grid span { color: var(--muted); font-size: 13px; }
.price-grid a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  color: var(--white);
  background: var(--green);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}
.price-grid a:hover { background: var(--green-dark); }
.pricing-note { margin: 24px 0 0; color: var(--muted); font-size: 13px; }

.use-cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 6vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.use-cases div { min-height: 230px; padding: 42px 32px; }
.use-cases div + div { border-left: 1px solid var(--line); }
.use-cases span { color: var(--green); font-size: 12px; font-weight: 850; }
.use-cases h3 { margin: 28px 0 10px; font-size: 22px; }
.use-cases p { margin: 0; color: var(--muted); line-height: 1.55; }

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 6vw;
  padding: 76px 6vw;
}
.product-image { background: var(--paper); }
.product-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-copy { max-width: 650px; }
.product-copy dl { margin: 28px 0; border-top: 1px solid var(--line); }
.product-copy dl div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.product-copy dt { font-weight: 800; }
.product-copy dd { margin: 0; color: var(--muted); line-height: 1.45; }

.terms-section { padding: 72px 6vw; color: var(--white); background: var(--navy); }
.section-heading.light > p:last-child { color: #d8e2e8; }
.terms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 32px 0;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.2);
}
.terms-grid div { min-height: 120px; padding: 22px; background: var(--navy); }
.terms-grid strong, .terms-grid span { display: block; }
.terms-grid strong { margin-bottom: 8px; }
.terms-grid span { color: #d8e2e8; font-size: 13px; line-height: 1.45; }

footer {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 6vw;
  color: #dce5e9;
  background: #04131f;
  font-size: 13px;
}
footer div { display: flex; flex-direction: column; gap: 6px; }

@media (max-width: 1000px) {
  .wholesale-hero { grid-template-columns: minmax(0, 1fr) minmax(330px, .75fr); }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts li { min-height: 0; }
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .terms-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .wholesale-header { width: 100%; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; padding: 14px 16px; }
  .wholesale-brand { min-width: 0; }
  .wholesale-header nav { display: none; }
  .header-cta { min-width: 0; padding: 0 12px; white-space: nowrap; font-size: 12px; }
  .wholesale-hero { width: 100%; min-height: 0; grid-template-columns: minmax(0, 1fr); padding: 44px 22px; }
  .hero-copy, .hero-product { width: 100%; max-width: 100%; }
  .hero-product { grid-row: 1; }
  .hero-product img { width: 100%; max-height: 280px; object-fit: contain; }
  .wholesale-hero h1 { max-width: 100%; overflow-wrap: anywhere; font-size: clamp(34px, 11vw, 42px); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .text-link { text-align: center; }
  .pricing-section, .product-section, .terms-section { padding: 54px 22px; }
  .price-grid, .use-cases, .product-section, .terms-grid { grid-template-columns: 1fr; }
  .use-cases { padding: 0 22px; }
  .use-cases div { min-height: 0; padding: 34px 0; }
  .use-cases div + div { border-left: 0; border-top: 1px solid var(--line); }
  footer { align-items: flex-start; flex-direction: column; padding: 28px 22px; }
}
