/* ── ARGUS LEADS — styles.css ─────────────────────────────────────────────── */

/* ── Custom Properties ─────────────────────────────────────────────────────── */
:root {
  --dark:       #080E1A;
  --navy:       #0B2545;
  --surface:    #111827;
  --gold:       #C9A84C;
  --gold-dim:   #8B6914;
  --gold-faint: rgba(201, 168, 76, 0.12);
  --blue:       #3B82F6;
  --white:      #F0F4FF;
  --muted:      #8892A4;
  --danger:     #EF4444;
  --border:     rgba(201, 168, 76, 0.15);
  --border-mid: rgba(201, 168, 76, 0.25);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h: 72px;
  --section-pad: 100px;
  --container:   1200px;
  --radius:      4px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── Utility ───────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 60px; } }

/* ── Fade-up animation ─────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  will-change: opacity, transform;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger children in grids */
.problems-grid  .fade-up:nth-child(2),
.agents-grid    .fade-up:nth-child(2),
.pricing-grid   .fade-up:nth-child(2) { transition-delay: 0.1s; }

.problems-grid  .fade-up:nth-child(3),
.agents-grid    .fade-up:nth-child(3),
.pricing-grid   .fade-up:nth-child(3) { transition-delay: 0.2s; }

.steps-grid     .fade-up:nth-child(2) { transition-delay: 0.12s; }
.steps-grid     .fade-up:nth-child(3) { transition-delay: 0.24s; }

.industries-grid .fade-up:nth-child(4n+2) { transition-delay: 0.08s; }
.industries-grid .fade-up:nth-child(4n+3) { transition-delay: 0.16s; }
.industries-grid .fade-up:nth-child(4n+4) { transition-delay: 0.24s; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.2s var(--ease),
              box-shadow 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #d6b45e;
  border-color: #d6b45e;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(240, 244, 255, 0.28);
}
.btn-outline:hover {
  border-color: rgba(240, 244, 255, 0.65);
  background: rgba(240, 244, 255, 0.05);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.25);
}

.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ── Section anatomy ───────────────────────────────────────────────────────── */
.section { padding: var(--section-pad) 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  max-width: 700px;
  margin: 0 auto 20px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── NAVIGATION ────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease),
              border-color 0.35s var(--ease),
              backdrop-filter 0.35s var(--ease);
}

#nav.scrolled {
  background: rgba(8, 14, 26, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  gap: 20px;
}

@media (min-width: 768px)  { .nav-inner { padding: 0 40px; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 60px; } }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  line-height: 1;
}
.logo-argus {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.logo-dot {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--gold);
  margin: 0 5px;
  line-height: 1;
}
.logo-leads {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.08em;
}

.nav-center {
  display: none;
  align-items: center;
  gap: 36px;
}
@media (min-width: 900px) { .nav-center { display: flex; } }

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--gold); }

.nav-right { display: none; }
@media (min-width: 900px) { .nav-right { display: flex; } }

/* Hamburger */
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(240, 244, 255, 0.15);
  border-radius: var(--radius);
  color: var(--white);
  padding: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.nav-hamburger:hover { border-color: var(--gold); color: var(--gold); }

@media (min-width: 900px) { .nav-hamburger { display: none; } }

/* Drawer */
.nav-drawer {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(8, 14, 26, 0.97);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease);
  opacity: 0;
}
.nav-drawer.open {
  max-height: 500px;
  opacity: 1;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  padding: 16px 24px 8px;
  gap: 4px;
}

.drawer-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}
.drawer-link:hover { color: var(--gold); }

.drawer-cta {
  margin: 16px 24px 24px;
  text-align: center;
}

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  background: var(--dark);
  overflow: hidden;

  /* Fine grid */
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  background-color: var(--dark);
}

/* Central pulsing glow — pure CSS, no JS */
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 72% 65% at 50% 52%,
    rgba(201, 168, 76, 0.075) 0%,
    rgba(201, 168, 76, 0.03) 40%,
    transparent 70%
  );
  animation: hero-pulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes hero-pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.9;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.hero-line { display: block; color: var(--white); }
.hero-line-gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.72;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
@media (min-width: 480px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 4px;
  font-size: 13px;
  color: rgba(136, 146, 164, 0.7);
  letter-spacing: 0.04em;
}
.trust-sep { color: rgba(136, 146, 164, 0.35); margin: 0 2px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.hero-scroll:hover { opacity: 1; }

.scroll-chevron {
  animation: bounce-chevron 2.4s ease-in-out infinite;
}
@keyframes bounce-chevron {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── HERO TWO-COLUMN LAYOUT ─────────────────────────────────────────────── */
.hero-columns {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: var(--container);
  width: 100%;
}

.hero-col-figure {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-col-figure svg {
  width: 100%;
  height: auto;
  max-width: 380px;
  overflow: visible;
}

.hero-col-text {
  flex: 1;
  text-align: left;
}

.hero-col-text .hero-sub {
  margin-left: 0;
  margin-right: 0;
}

.hero-col-text .hero-ctas {
  justify-content: flex-start;
}

.hero-col-text .hero-trust {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .hero-columns {
    flex-direction: column;
    align-items: center;
  }
  .hero-col-figure {
    flex: none;
    width: 75%;
    max-width: 300px;
  }
  .hero-col-text {
    text-align: center;
  }
  .hero-col-text .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-col-text .hero-ctas {
    justify-content: center;
  }
  .hero-col-text .hero-trust {
    justify-content: center;
  }
}

/* ── FISHERMAN ANIMATIONS ────────────────────────────────────────────────── */
@keyframes net-cast {
  0%, 100% { transform: scale(0.3); opacity: 0.4; }
  40%, 60%  { transform: scale(1.0); opacity: 1.0; }
}

@keyframes card-drift {
  0%, 100% { transform: translate(0, 0);         opacity: 0.5; }
  50%      { transform: translate(30px, -20px);  opacity: 0.9; }
}

@keyframes node-pulse {
  0%   { opacity: 0.4; }
  100% { opacity: 1.0; }
}

@keyframes circuit-flow {
  0%   { stroke-dashoffset: 60; }
  100% { stroke-dashoffset: 0; }
}

@keyframes eye-glow {
  0%   { opacity: 0.4; }
  100% { opacity: 1.0; }
}

.net-group {
  transform-origin: 238px 54px;
  animation: net-cast 4s ease-in-out infinite;
}

.net-node {
  animation: node-pulse 2s ease-in-out infinite alternate;
}

.circuit-line {
  stroke-dasharray: 30 10;
  animation: circuit-flow 3s linear infinite;
}

.eye-slit {
  animation: eye-glow 2s ease-in-out infinite alternate;
}

.data-card-g {
  animation: card-drift 4s ease-in-out infinite;
}

/* ── THE PROBLEM ───────────────────────────────────────────────────────────── */
.section-problem { background: #0D1117; }

.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .problems-grid { grid-template-columns: repeat(3, 1fr); }
}

.problem-card {
  background: var(--surface);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 36px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(201, 168, 76, 0.1);
}

.card-icon { margin-bottom: 22px; }

.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}

.card-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── HOW IT WORKS ──────────────────────────────────────────────────────────── */
.section-how { background: var(--dark); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(16.66% + 18px);
    right: calc(16.66% + 18px);
    height: 1px;
    background: repeating-linear-gradient(
      90deg,
      rgba(201, 168, 76, 0.45) 0px,
      rgba(201, 168, 76, 0.45) 6px,
      transparent 6px,
      transparent 14px
    );
    pointer-events: none;
  }
}

.step {
  position: relative;
  padding-top: 4px;
}

.step-bg-num {
  position: absolute;
  top: -28px;
  left: -12px;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-num-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.step-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
  position: relative;
  z-index: 1;
}

/* Mobile vertical connector */
@media (max-width: 767px) {
  .step:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: repeating-linear-gradient(
      180deg,
      rgba(201, 168, 76, 0.4) 0px,
      rgba(201, 168, 76, 0.4) 5px,
      transparent 5px,
      transparent 10px
    );
    margin: 24px 0 0 27px;
  }
}

/* ── THE AGENTS ────────────────────────────────────────────────────────────── */
.section-agents { background: var(--surface); }

.agents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .agents-grid { grid-template-columns: repeat(3, 1fr); }
}

.agent-card {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 40px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.agent-card:hover {
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.12), 0 20px 60px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

.agent-designation {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.agent-role {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.agent-note {
  font-size: 13px;
  font-style: italic;
  color: rgba(136, 146, 164, 0.65);
  margin-bottom: 20px;
}

.agent-divider {
  height: 1px;
  background: rgba(201, 168, 76, 0.18);
  margin-bottom: 20px;
}

.agent-desc {
  font-size: 15px;
  color: rgba(240, 244, 255, 0.8);
  line-height: 1.72;
  margin-bottom: 22px;
}

.agent-caps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.agent-caps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(240, 244, 255, 0.75);
  line-height: 1.5;
}
.agent-caps li svg { flex-shrink: 0; margin-top: 3px; }

/* Beyond banner */
.agents-beyond {
  background: var(--dark);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 52px 48px;
  text-align: center;
}

.beyond-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.beyond-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.beyond-body {
  font-size: 15px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.beyond-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.beyond-link:hover { color: #d6b45e; text-decoration: underline; }

/* ── INDUSTRIES ─────────────────────────────────────────────────────────────── */
.section-industries { background: var(--dark); }

.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px)  { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }

.industry-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}
.industry-tile:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

.industry-icon { margin-bottom: 16px; }

.industry-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.industry-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* CTA tile */
.industry-tile-cta {
  background: var(--surface);
  border: 1px dashed rgba(201, 168, 76, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.industry-tile-cta:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.industry-name-cta {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.industry-desc-cta {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
}

.industry-cta-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.2s;
  margin-top: 6px;
}
.industry-cta-link:hover { color: #d6b45e; text-decoration: underline; }

/* ── PROOF ──────────────────────────────────────────────────────────────────── */
.section-proof { background: var(--navy); }

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .stats-row {
    flex-direction: row;
    justify-content: center;
    gap: 0;
    align-items: stretch;
  }
}

.stat-block {
  text-align: center;
  flex: 1;
  padding: 16px 32px;
}

.stat-divider {
  display: none;
  width: 1px;
  background: rgba(201, 168, 76, 0.25);
  align-self: stretch;
  min-height: 80px;
}
@media (min-width: 768px) { .stat-divider { display: block; } }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  min-height: 1.1em;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

/* Pull quote */
.proof-quote {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  border-left: none;
  padding: 0;
}
.proof-quote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 20px;
}
.proof-quote cite {
  font-size: 14px;
  font-style: normal;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ── PRICING ─────────────────────────────────────────────────────────────────── */
.section-pricing { background: var(--surface); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.pricing-card {
  background: var(--dark);
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.pricing-card-featured {
  border-color: var(--gold);
  background: var(--navy);
}

.pricing-card-custom {
  border: 1px dashed var(--gold);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.pricing-plan {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.pricing-period {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.pricing-price-custom {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
  font-style: italic;
}

.pricing-save {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.pricing-subtitle {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.pricing-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
}

.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 20px;
}
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(240, 244, 255, 0.72);
  line-height: 1.5;
}
.pricing-includes li svg { flex-shrink: 0; margin-top: 3px; }

.pricing-fine {
  font-size: 12px;
  font-style: italic;
  color: rgba(136, 146, 164, 0.55);
  line-height: 1.5;
  margin-bottom: 24px;
}

.pricing-btn { width: 100%; justify-content: center; }

/* ── CONTACT ─────────────────────────────────────────────────────────────────── */
.section-contact { background: var(--dark); }

.contact-form {
  max-width: 580px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(136, 146, 164, 0.75);
}

input,
textarea {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  appearance: none;
}
input::placeholder, textarea::placeholder { color: rgba(136, 146, 164, 0.45); }
input:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

textarea { resize: vertical; min-height: 130px; }

.contact-submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px;
  margin-top: 4px;
}

.contact-alt {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}
.contact-alt a {
  color: var(--gold);
  transition: color 0.2s;
}
.contact-alt a:hover { color: #d6b45e; text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 40px;
  }
}

.footer-logo { margin-bottom: 14px; }

.footer-tagline {
  font-size: 14px;
  font-style: italic;
  color: rgba(136, 146, 164, 0.7);
  line-height: 1.5;
}

.footer-col-nav nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-nav nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col-nav nav a:hover { color: var(--gold); }

.footer-col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.social-link:hover { color: var(--gold); }

.footer-email {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-email:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 20px 60px;
  }
}

.footer-bottom span {
  font-size: 13px;
  color: rgba(136, 146, 164, 0.5);
  letter-spacing: 0.02em;
}

/* ── Responsive tweaks ─────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .section { padding: 72px 0; }

  .section-header { margin-bottom: 44px; }

  .agents-beyond { padding: 36px 28px; }

  .stats-row { padding: 0; }
  .stat-block { padding: 12px 20px; }

  .pricing-card { padding: 32px 28px; }
}

@media (max-width: 479px) {
  .hero-ctas .btn { width: 100%; }
  .beyond-link, .industry-cta-link { font-size: 14px; }
}
