@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Assistant:wght@300;400;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark-red:   #370302;
  --gold:       #C9A24A;
  --gold-light: #d4b06a;
  --black:      #000000;
  --white:      #ffffff;
  --gray-dark:  #111111;
  --gray-mid:   #1a1a1a;
  --gray-light: #2a2a2a;
  --text-light: #e8e8e8;
  --text-muted: #999999;
  --border:     rgba(201, 162, 74, 0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Assistant', sans-serif;
  background-color: var(--black);
  color: var(--text-light);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Cardo', serif; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cardo', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Assistant', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.15s;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Assistant', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid var(--white);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: 'Assistant', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar-logo img {
  height: 44px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar-links a,
.navbar-links .nav-dropdown-trigger {
  font-family: 'Assistant', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 10px;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-links a:hover,
.navbar-links .nav-dropdown-trigger:hover { color: var(--white); }

.navbar-links a.active { color: var(--gold); }

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 4px;
  min-width: 200px;
  overflow: hidden;
  z-index: 100;
  animation: dropIn 0.18s ease;
  margin-top: 0;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--gray-mid); color: var(--gold); }

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  position: relative;
  padding: 6px;
  transition: color 0.2s;
}

.cart-btn:hover { color: var(--white); }

.cart-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 12px 0;
}

.mobile-menu a {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, background 0.2s;
}

.mobile-menu a:hover { color: var(--gold); background: var(--gray-mid); }

.mobile-menu.open { display: flex; }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 72px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(55, 3, 2, 0.88) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.hero-text { max-width: 620px; }

.hero-title {
  font-family: 'Cardo', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: rgba(232, 232, 232, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── SHOP BY INDUSTRY ── */
#shop-by-industry {
  padding: 96px 0;
  background: var(--black);
}

.section-header { margin-bottom: 52px; }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.industry-card {
  position: relative;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card:hover img { transform: scale(1.06); }

.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(55,3,2,0.95) 0%, rgba(0,0,0,0.4) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.3s ease;
}

.industry-card:hover .industry-card-overlay {
  background: linear-gradient(to top, rgba(55,3,2,0.98) 0%, rgba(55,3,2,0.6) 55%, rgba(0,0,0,0.2) 100%);
}

.industry-card-icon { font-size: 28px; margin-bottom: 10px; }

.industry-card h3 {
  font-family: 'Cardo', serif;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 14px;
  color: rgba(232,232,232,0.75);
  line-height: 1.6;
  margin-bottom: 16px;
}

.industry-card-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  display: inline-block;
}

.industry-card:hover .industry-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ── SHOP KITS ── */
#shop-kits {
  padding: 96px 0;
  background: var(--gray-dark);
}

.kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.kit-card {
  background: var(--gray-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.kit-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.kit-card-image {
  height: 240px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}

.kit-card-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.kit-card:hover .kit-card-image img { transform: scale(1.05); }

.kit-card-body { padding: 24px; }

.kit-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.kit-card-body h3 {
  font-family: 'Cardo', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}

.kit-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.kit-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px !important;
}

.kits-cta { text-align: center; }

/* ── FEATURED RADIOS ── */
#featured-radios {
  padding: 96px 0;
  background: var(--black);
}

.radios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.radio-card {
  background: var(--gray-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.radio-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.radio-card-image {
  height: 200px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

.radio-card-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.radio-card:hover .radio-card-image img { transform: scale(1.05); }

.radio-card-body { padding: 20px; }

.radio-card-body h3 {
  font-family: 'Cardo', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.radio-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.radio-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px !important;
}

.radios-cta { text-align: center; }

/* ── WHY CHOOSE US ── */
#why-us {
  padding: 96px 0;
  background: var(--dark-red);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.why-card { text-align: center; }

.why-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 18px;
  color: var(--gold);
}

.why-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
}

.why-card h3 {
  font-family: 'Cardo', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: rgba(232,232,232,0.7);
  line-height: 1.7;
}

/* ── BULK CTA BANNER ── */
#bulk-cta {
  padding: 72px 0;
  background: var(--gray-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bulk-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.bulk-cta-text h2 {
  font-family: 'Cardo', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
  margin-bottom: 10px;
}

.bulk-cta-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 520px;
}

.bulk-cta-action { flex-shrink: 0; }

/* ── GUIDES PREVIEW ── */
#guides-preview {
  padding: 96px 0;
  background: var(--black);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.guide-card {
  background: var(--gray-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}

.guide-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.guide-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.guide-card h3 {
  font-family: 'Cardo', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.guide-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.guide-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}

.guide-link:hover { color: var(--gold-light); }

.guides-cta { text-align: center; }

/* ── FOOTER ── */
#footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-logo {
  height: 60px;
  width: auto;
  mix-blend-mode: screen;
  margin-bottom: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s;
}

.footer-social a:hover { color: var(--gold); border-color: var(--gold); }

.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: 'Assistant', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  height: 520px;
  margin-top: 72px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(55,3,2,0.92) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.4) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.page-hero-content {
  max-width: 600px;
}

.page-hero-content h1 {
  font-family: 'Cardo', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  margin-top: 8px;
}

.page-hero-content p {
  font-size: 16px;
  color: rgba(232,232,232,0.85);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

/* ── PROBLEM SECTION ── */
.problem-section {
  padding: 80px 0;
  background: var(--gray-dark);
}

.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.problem-card {
  background: var(--gray-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  transition: border-color 0.25s;
}

.problem-card:hover { border-color: var(--gold); }

.problem-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--gold);
}

.problem-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
}

.problem-card h3 {
  font-family: 'Cardo', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── SOLUTION SECTION ── */
.solution-section {
  padding: 96px 0;
  background: var(--black);
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-text .section-title { margin-bottom: 16px; }

.solution-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-light);
}

.solution-list li svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.solution-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px;
  min-height: 400px;
}

.solution-image img {
  max-height: 320px;
  width: auto;
  object-fit: contain;
}

/* ── WHY IT WORKS ── */
.why-works-section {
  padding: 96px 0;
  background: var(--gray-dark);
}

.why-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.why-works-card { text-align: center; }

.why-works-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
}

.why-works-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
}

.why-works-card h3 {
  font-family: 'Cardo', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}

.why-works-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── TEAM SIZE SECTION ── */
.team-size-section {
  padding: 96px 0;
  background: var(--black);
}

.team-size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.team-size-card {
  background: var(--gray-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.team-size-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.team-size-card.featured {
  border-color: var(--gold);
  background: var(--gray-light);
}

.team-size-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  white-space: nowrap;
}

.team-size-card h3 {
  font-family: 'Cardo', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}

.team-size-range {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.team-size-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ── BOTTOM CTA ── */
.bottom-cta-section {
  padding: 96px 0;
  background: var(--dark-red);
}

.bottom-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.bottom-cta-inner h2 {
  font-family: 'Cardo', serif;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--white);
  margin-bottom: 12px;
}

.bottom-cta-inner p {
  font-size: 16px;
  color: rgba(232,232,232,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}
.bottom-cta-inner .hero-buttons {
  justify-content: center;
}

/* ── RECOMMENDED RADIOS ── */
.recommended-section {
  padding: 96px 0;
  background: var(--black);
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
  margin-bottom: 48px;
}

.recommended-card {
  background: var(--gray-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.recommended-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.recommended-card.featured-radio {
  border-color: var(--gold);
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  white-space: nowrap;
}

.recommended-image {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.recommended-image img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.recommended-card h3 {
  font-family: 'Cardo', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}

.recommended-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.recommended-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.recommended-cta { text-align: center; }

/* ── USE CASES ── */
.use-cases-section {
  padding: 80px 0;
  background: var(--gray-dark);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.use-case-card {
  background: var(--gray-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 20px;
  text-align: center;
  transition: border-color 0.25s;
}

.use-case-card:hover { border-color: var(--gold); }

.use-case-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
}

.use-case-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
}

.use-case-card h3 {
  font-family: 'Cardo', serif;
  font-size: 16px;
  color: var(--white);
}

.solution-image {
  background: #111111;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 1px solid rgba(201, 162, 74, 0.2);
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* ── KITS SECTION ── */
.kits-section {
  padding: 80px 0;
  background: var(--black);
}

.kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.kit-card {
  background: #111111;
  border: 1px solid rgba(201, 162, 74, 0.15);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.kit-card:hover {
  border-color: rgba(201, 162, 74, 0.4);
}

.featured-kit {
  border-color: rgba(201, 162, 74, 0.5);
}

.kit-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Assistant', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 2;
}

.kit-card-image {
  width: 100%;
  height: 260px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}

.kit-card-image img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
}

.kit-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kit-industry-label {
  font-family: 'Assistant', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.kit-card-body h3 {
  font-family: 'Cardo', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}

.kit-card-body p {
  font-family: 'Assistant', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}

.kit-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kit-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Assistant', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.kit-includes li svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.kit-card-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .kits-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── COMPARE TABLE ── */
.compare-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.compare-table-wrap {
  overflow-x: auto;
  margin-top: 48px;
  border-radius: 4px;
  border: 1px solid rgba(201, 162, 74, 0.15);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Assistant', sans-serif;
}

.compare-table thead tr {
  background: #111111;
  border-bottom: 1px solid rgba(201, 162, 74, 0.3);
}

.compare-table thead th {
  padding: 20px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

.compare-table thead th.compare-feature-col {
  text-align: left;
  color: var(--gold);
}

.compare-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}

.compare-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.compare-table tbody td {
  padding: 18px 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  vertical-align: middle;
}

.compare-table tbody td svg {
  margin: 0 auto;
  display: block;
}

.compare-feature-col {
  text-align: left !important;
  font-weight: 600;
  color: var(--white) !important;
  min-width: 180px;
}

.compare-highlight {
  background: rgba(201, 162, 74, 0.06);
  border-left: 1px solid rgba(201, 162, 74, 0.2);
  border-right: 1px solid rgba(201, 162, 74, 0.2);
  color: var(--white) !important;
}

.compare-table thead th.compare-highlight {
  color: var(--gold) !important;
  background: rgba(201, 162, 74, 0.1);
}

@media (max-width: 768px) {
  .compare-table-wrap {
    font-size: 13px;
  }
  .compare-table thead th,
  .compare-table tbody td {
    padding: 14px 12px;
  }
  .compare-feature-col {
    min-width: 120px;
  }
}

/* ── BULK FORM SECTION ── */
.bulk-form-section {
  padding: 80px 0;
  background: var(--black);
}

.bulk-form-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.bulk-form-text h2 {
  font-family: 'Cardo', serif;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--white);
  margin-bottom: 16px;
}

.bulk-form-text p {
  font-family: 'Assistant', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

.bulk-form-promises {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bulk-form-promises li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Assistant', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

.bulk-form-promises li svg {
  stroke: var(--gold);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.bulk-form-card {
  background: #111111;
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-radius: 4px;
  padding: 40px;
}

.bulk-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Assistant', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: 'Assistant', sans-serif;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: #1a1a1a;
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.bulk-form-success {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bulk-form-success h3 {
  font-family: 'Cardo', serif;
  font-size: 28px;
  color: var(--white);
}

.bulk-form-success p {
  font-family: 'Assistant', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 900px) {
  .bulk-form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .bulk-form-card {
    padding: 24px;
  }
}

/* ── PRODUCT PAGE ── */
.product-hero-section {
  padding: 80px 0;
  background: var(--black);
}

.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-hero-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-main-image {
  background: #111111;
  border: 1px solid rgba(201, 162, 74, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 420px;
}

.product-main-image img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s;
}

.product-thumbnails {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-thumb {
  width: 72px;
  height: 72px;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumb:hover,
.product-thumb.active {
  border-color: var(--gold);
}

.product-hero-details {
  padding-top: 8px;
}

.product-hero-details h1 {
  font-family: 'Cardo', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 12px;
}

.product-tagline {
  font-family: 'Assistant', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-price-large {
  font-family: 'Cardo', serif;
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 28px;
}

.product-quick-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.product-quick-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Assistant', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.product-quick-features li svg {
  stroke: var(--gold);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.product-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── SPECS SECTION ── */
.specs-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.specs-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.specs-table-wrap {
  border: 1px solid rgba(201, 162, 74, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Assistant', sans-serif;
}

.specs-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.spec-label {
  font-weight: 600;
  color: var(--white) !important;
  width: 40%;
  background: #111111;
}

.specs-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spec-highlight-card {
  background: #111111;
  border: 1px solid rgba(201, 162, 74, 0.15);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-highlight-icon svg {
  stroke: var(--gold);
  width: 32px;
  height: 32px;
}

.spec-highlight-card h3 {
  font-family: 'Cardo', serif;
  font-size: 18px;
  color: var(--white);
}

.spec-highlight-card p {
  font-family: 'Assistant', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .product-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .specs-inner {
    grid-template-columns: 1fr;
  }

  .product-main-image {
    min-height: 300px;
  }
}

/* ── PLACEHOLDER PAGES ── */
.placeholder-hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.placeholder-inner {
  max-width: 680px;
}

.placeholder-inner h1 {
  font-family: 'Cardo', serif;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.placeholder-inner p {
  font-family: 'Assistant', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}

.placeholder-note {
  font-size: 14px !important;
  color: rgba(255,255,255,0.4) !important;
  margin-bottom: 32px !important;
}

.placeholder-contact-email {
  margin-bottom: 32px !important;
}

.placeholder-contact-email a {
  font-family: 'Cardo', serif;
  font-size: 28px;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.placeholder-contact-email a:hover {
  opacity: 0.8;
}