/* ============================================================
   CENTURY 21 BE3 — AGENT RECRUITING SITE
   Design System & Global Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ========================= RESET ========================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--color-black); color: var(--color-white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; cursor: pointer; background: none; font: inherit; }

/* ========================= VARIABLES ========================= */
:root {
  --color-black:       #080808;
  --color-dark:        #111111;
  --color-card:        #181818;
  --color-card-hover:  #202020;
  --color-border:      #252525;
  --color-border-light:#333333;
  --color-gold:        #b6a888;
  --color-gold-light:  #c9bb9e;
  --color-gold-dim:    rgba(182, 168, 136, 0.12);
  --color-gold-glow:   rgba(182, 168, 136, 0.25);
  --color-green:       #3a7d44;
  --color-green-bright:#4fa857;
  --color-white:       #ffffff;
  --color-muted:       #777777;
  --color-light:       #bbbbbb;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-serif:   'Playfair Display', serif;

  --nav-height: 88px;

  --ease-out:  cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in:   cubic-bezier(0.4, 0.0, 1, 1);
  --ease-both: cubic-bezier(0.4, 0.0, 0.2, 1);

  --shadow-gold: 0 4px 30px rgba(182, 168, 136, 0.3);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.6);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* ========================= TYPOGRAPHY ========================= */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.05; }
h4, h5, h6 { font-family: var(--font-body); font-weight: 700; }

.display-xl { font-size: clamp(3.5rem, 9vw, 9rem); letter-spacing: 0.01em; }
.display-lg { font-size: clamp(2.5rem, 6vw, 6rem); letter-spacing: 0.02em; }
.display-md { font-size: clamp(2rem,   4vw, 4rem); letter-spacing: 0.02em; }
.display-sm { font-size: clamp(1.5rem, 3vw, 2.5rem); letter-spacing: 0.03em; }

.text-gold    { color: var(--color-gold); }
.text-green   { color: var(--color-green-bright); }
.text-muted   { color: var(--color-muted); }
.text-light   { color: var(--color-light); }
.text-center  { text-align: center; }
.text-italic  { font-style: italic; font-family: var(--font-serif); }

/* ========================= LAYOUT ========================= */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.section        { padding: 7rem 0; }
.section-sm     { padding: 4rem 0; }
.section-dark   { background: var(--color-dark); }
.section-card   { background: var(--color-card); }
.section-black  { background: var(--color-black); }
.pt-nav         { padding-top: var(--nav-height); }

/* Grid utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

/* Responsive 2-column section grid — collapses to 1 col on mobile */
.split-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ========================= NAVIGATION ========================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  transition: background 0.4s var(--ease-both), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--color-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-img { height: 60px; width: auto; flex-shrink: 0; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--color-white);
}

.nav-logo-text span { color: var(--color-gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-light);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--color-gold);
  transition: width 0.25s var(--ease-out);
}

.nav-links a:hover { color: var(--color-white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--color-gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--color-gold) !important;
  color: var(--color-black) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 3px;
  font-weight: 700 !important;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--color-gold-light) !important;
  box-shadow: var(--shadow-gold) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-both), opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--color-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-both);
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer a {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.08em;
  color: var(--color-light);
  transition: color 0.2s;
}

.nav-drawer a:hover { color: var(--color-gold); }
.nav-drawer .nav-cta-mobile {
  background: var(--color-gold);
  color: var(--color-black);
  padding: 1rem 3rem;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
}

/* ========================= BUTTONS ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s;
  white-space: nowrap;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-black);
}
.btn-gold:hover {
  background: var(--color-gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-black);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--color-white);
  background: transparent;
}
.btn-outline-white:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.1);
}

.btn-dark {
  background: var(--color-black);
  color: var(--color-gold);
  border: 2px solid transparent;
}
.btn-dark:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.65rem 1.5rem; font-size: 0.95rem; }
.btn-lg { padding: 1.25rem 3.5rem; font-size: 1.3rem; }

/* ========================= HERO (Full Screen) ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 4rem) 0 8rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -15% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(8, 8, 8, 0.92) 0%,
    rgba(8, 8, 8, 0.75) 45%,
    rgba(8, 8, 8, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 2px;
  background: var(--color-gold);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-light);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-muted);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--color-muted), transparent);
}

/* ========================= PAGE HERO (Sub-page) ========================= */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 6rem) 0 5rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 8, 0.93) 0%,
    rgba(8, 8, 8, 0.8) 60%,
    rgba(8, 8, 8, 0.6) 100%
  );
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--color-gold);
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--color-light);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ========================= SECTION HEADERS ========================= */
.section-header {
  max-width: 680px;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--color-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--color-light);
  line-height: 1.75;
}

/* Left-aligned variant */
.section-header.left { margin-left: 0; text-align: left; }
.section-header.left .section-eyebrow { justify-content: flex-start; }
.section-header.left .section-eyebrow::before { display: none; }

/* ========================= FEATURE CARDS ========================= */
.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 2.5rem;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(182, 168, 136, 0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 30px var(--color-gold-dim);
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 54px; height: 54px;
  background: var(--color-gold-dim);
  border: 1px solid rgba(182,168,136,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.card-text {
  color: var(--color-light);
  font-size: 0.93rem;
  line-height: 1.75;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap 0.2s;
}

.card-link:hover { gap: 0.85rem; }

/* Horizontal card variant */
.card-horizontal {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.card-horizontal .card-icon { flex-shrink: 0; }

/* ========================= STATS ========================= */
.stats-band {
  background: var(--color-black);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.stat-item {
  padding: 3.5rem 1rem;
  text-align: center;
  border-right: 1px solid var(--color-border);
  position: relative;
  transition: background 0.3s;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(182,168,136,0.04); }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ========================= TWO-COLUMN SPLIT ========================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}

.split-content {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-image {
  position: relative;
  overflow: hidden;
}

.split-image img,
.split-image .split-img-bg {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.split-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.split-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1.5px;
  background: var(--color-gold);
}

.split h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.split p {
  color: var(--color-light);
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 1rem;
}

/* ========================= FEATURE LIST ========================= */
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; }

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: var(--color-light);
}

.feature-item::before {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b6a888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

/* ========================= FAQ ========================= */
.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--color-border); }

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
}

.faq-btn:hover { color: var(--color-gold); }

.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--color-border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease-both);
  font-size: 1.2rem;
  color: var(--color-gold);
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-black);
  transform: rotate(45deg);
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease-out), padding 0.3s;
}

.faq-item.open .faq-body { max-height: 500px; padding-bottom: 1.5rem; }

.faq-body p {
  color: var(--color-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-body a { color: var(--color-gold); border-bottom: 1px solid transparent; }
.faq-body a:hover { border-bottom-color: var(--color-gold); }

/* ========================= CTA BANNER ========================= */
.cta-banner {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1100 0%, #0a0800 50%, #0d1106 100%);
}

.cta-banner-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(182,168,136,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--color-light);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========================= TESTIMONIAL ========================= */
.testimonial {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-gold);
  border-radius: 6px;
  padding: 2.5rem;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-gold-dim);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-gold);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

/* ========================= PROCESS STEPS ========================= */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  position: relative;
  padding-bottom: 3rem;
}

.step:last-child { padding-bottom: 0; }

.step-number-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 56px; height: 56px;
  background: var(--color-gold-dim);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

.step-line {
  width: 1px;
  flex: 1;
  background: var(--color-border);
  margin-top: 0.5rem;
}

.step:last-child .step-line { display: none; }

.step-content { padding-top: 0.75rem; }

.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.step-text {
  color: var(--color-light);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ========================= HIGHLIGHT BOX ========================= */
.highlight-box {
  background: var(--color-gold-dim);
  border: 1px solid rgba(182,168,136,0.3);
  border-radius: 6px;
  padding: 2rem 2.5rem;
}

.highlight-box-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.highlight-box-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.highlight-box-text {
  color: var(--color-light);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-top: 0.75rem;
}

/* ========================= COMPARISON TABLE ========================= */
.comparison-table { width: 100%; border-collapse: collapse; }

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.93rem;
}

.comparison-table th {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  background: var(--color-card);
}

.comparison-table .col-be3 { background: var(--color-gold-dim); border-left: 2px solid var(--color-gold); border-right: 2px solid var(--color-gold); }
.comparison-table .col-be3-header { background: var(--color-gold); color: var(--color-black); border-left: 2px solid var(--color-gold); border-right: 2px solid var(--color-gold); }
.comparison-table .col-be3-footer { border-bottom: 2px solid var(--color-gold); }
.comparison-table td:first-child { text-align: left; color: var(--color-light); }
.comparison-table .check { color: var(--color-green-bright); font-size: 1.1rem; }
.comparison-table .cross { color: #e05252; font-size: 1.1rem; }

/* ========================= CALCULATOR ========================= */
.calc-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 3rem;
}

.calc-input-group {
  margin-bottom: 1.5rem;
}

.calc-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.calc-input {
  width: 100%;
  background: var(--color-black);
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-white);
  transition: border-color 0.2s;
}

.calc-input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.calc-result {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.calc-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.calc-result-item { text-align: center; }

.calc-result-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.calc-result-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-gold);
  line-height: 1;
}

.calc-result-value.be3 { color: var(--color-gold); }
.calc-result-value.typical { color: var(--color-muted); text-decoration: line-through; font-size: 1.8rem; }

/* ========================= ICON GRID (Tech showcase) ========================= */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
}

.tech-item {
  background: var(--color-card);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.3s;
  cursor: default;
}

.tech-item:hover { background: var(--color-card-hover); }

.tech-item-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tech-item-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.tech-item-desc {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ========================= TIMELINE ========================= */
.timeline { position: relative; padding-left: 3rem; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -3.6rem;
  top: 0.25rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 3px solid var(--color-black);
  box-shadow: 0 0 0 2px var(--color-gold);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--color-light);
  line-height: 1.7;
}

/* ========================= VALUE PROP BAND ========================= */
.value-band {
  background: var(--color-gold);
  padding: 1.5rem 0;
  overflow: hidden;
}

.value-band-track {
  display: flex;
  gap: 4rem;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

.value-band-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--color-black);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.value-band-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-black);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ========================= CONTACT FORM ========================= */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--color-card);
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-dim);
}

.form-select { cursor: pointer; }
.form-select option { background: var(--color-card); }

.form-textarea { resize: vertical; min-height: 140px; }

/* ========================= FOOTER ========================= */
.footer {
  background: #050505;
  border-top: 1px solid var(--color-border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-brand .footer-logo-text span { color: var(--color-gold); }

.footer-tagline {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 0.75rem; }

.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover { border-color: var(--color-gold); color: var(--color-gold); }

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-links a {
  color: var(--color-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--color-muted);
  font-size: 0.8rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* ========================= ANIMATIONS ========================= */
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Hero entrance animations */
.hero-animate {
  animation: fadeInUp 0.9s var(--ease-out) both;
}

.hero-animate.delay-1 { animation-delay: 0.15s; }
.hero-animate.delay-2 { animation-delay: 0.3s; }
.hero-animate.delay-3 { animation-delay: 0.5s; }
.hero-animate.delay-4 { animation-delay: 0.65s; }

/* Pulse glow */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(182, 168, 136, 0.3); }
  50% { box-shadow: 0 0 0 10px rgba(182, 168, 136, 0); }
}

.pulse-glow { animation: pulseGlow 2.5s ease-in-out infinite; }

/* ========================= SECTION DIVIDER ========================= */
.angle-top {
  position: relative;
  z-index: 1;
}

.angle-top::before {
  content: '';
  display: block;
  height: 5rem;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  margin-top: -5rem;
  position: relative;
  z-index: -1;
}

/* ========================= BADGE ========================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge-gold { background: var(--color-gold-dim); color: var(--color-gold); border: 1px solid rgba(182,168,136,0.3); }
.badge-green { background: rgba(58,125,68,0.15); color: var(--color-green-bright); border: 1px solid rgba(79,168,87,0.3); }

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  /* Switch split to flex so we can use order to force image-first */
  .split { display: flex; flex-direction: column; }
  .split .split-image { order: 1; }
  .split .split-content { order: 2; }
  .split-image { height: 50vw; min-height: 350px; position: relative; width: 100%; }
  .split-image .split-img-bg { inset: 0; height: 100%; }
  .split-content { padding: 4rem 2rem; }
}

@media (max-width: 900px) {
  .split-2col { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 76px; }
  .section { padding: 5rem 0; }
  .section-header { margin-bottom: 3rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-right: 1px solid var(--color-border); }
  .stat-item:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .calc-result-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.82rem; }
  .comparison-table th, .comparison-table td { padding: 0.9rem 0.75rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .nav { padding: 0 1.25rem; }
  .container { padding: 0 1.25rem; }
  .split-content { padding: 3rem 1.25rem; }
  .calc-card { padding: 1.75rem; }
}
