/* ═══════════════════════════════════════════════════════
   NLCFirm.com — styles.css
   New Level Consultants · Premium Dark Theme
   ═══════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────── */
:root {
  --bg: #0a0c10;
  --bg-card: #12151c;
  --bg-elevated: #181c26;
  --bg-glass: rgba(18, 21, 28, 0.75);
  --surface: #1e2230;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #9a7a2e;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --text: #f0ece3;
  --text-dim: rgba(240, 236, 227, 0.55);
  --text-muted: rgba(240, 236, 227, 0.35);
  --border: rgba(201, 168, 76, 0.12);
  --border-strong: rgba(201, 168, 76, 0.3);
  --success: #2d6a4f;
  --danger: #e8785e;
  --radius: 6px;
  --font: "Inter", sans-serif;
  --font-display: "Playfair Display", serif;
  --font-mono: "JetBrains Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── SCROLL PROGRESS ───────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-light)
  );
  z-index: 1000;
  width: 0;
  transition: width 0.1s;
}

/* ─── NAVIGATION ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(10, 12, 16, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

nav.scrolled {
  padding: 0.7rem 4rem;
  background: rgba(10, 12, 16, 0.95);
}

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

.nav-logo img {
  height: 36px;
  width: auto;
}

nav.scrolled .nav-logo img {
  height: 30px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

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

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--bg) !important;
  padding: 0.55rem 1.5rem !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  transition: all 0.25s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--gold-glow) !important;
}

.nav-phone {
  color: var(--gold) !important;
  font-family: var(--font-mono) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.02em !important;
}

/* ─── HAMBURGER ─────────────────────────────────────── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── MOBILE DRAWER ─────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 150;
  padding: 5rem 2rem 2rem;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--border);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer a {
  display: block;
  font-size: 1rem;
  color: var(--text-dim);
  text-decoration: none;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-drawer a:hover {
  color: var(--gold);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  padding: 0.85rem 2rem;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--surface);
  color: var(--text);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}
.full-width {
  width: 100%;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-sm-gold {
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
}

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 5rem 6rem;
  position: relative;
  z-index: 1;
}

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

.eyebrow::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
}

h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 48ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

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

.hero-stats {
  display: flex;
  gap: 3.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  letter-spacing: 0.03em;
}

.hero-right {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

.hero-geo {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border: 1px solid var(--border);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-geo2 {
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -15px);
  }
}

.hero-cards {
  width: 100%;
  max-width: 380px;
}

.hero-card {
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 1.6rem;
  margin-bottom: 0.8rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-card.visible {
  animation: fadeUp 0.6s ease forwards;
}
.hero-card:nth-child(1) {
  animation-delay: 0.2s;
}
.hero-card:nth-child(2) {
  animation-delay: 0.4s;
}
.hero-card:nth-child(3) {
  animation-delay: 0.6s;
}

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

.hc-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.hc-title {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.hc-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}
.hc-price small {
  font-family: var(--font);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── STICKY CTA ────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: -60px;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10, 12, 16, 0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 0.7rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
  bottom: 0;
}
.sticky-cta-text {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.sticky-cta-text strong {
  color: var(--gold);
  font-weight: 600;
}
.sticky-cta-btns {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

/* ─── SECTIONS ──────────────────────────────────────── */
.section {
  padding: 7rem 6rem;
  position: relative;
}
.section-dark {
  background: var(--bg-card);
}
.section-warm {
  background: var(--bg-elevated);
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-tag::before {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-body {
  color: var(--text-dim);
  font-size: 0.93rem;
  line-height: 1.8;
  max-width: 56ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.section-header {
  margin-bottom: 3.5rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

/* Utility: center section tag */
.section-tag-center {
  justify-content: center;
  color: rgba(13, 15, 20, 0.45);
  margin-bottom: 1rem;
}
.section-tag-center::before {
  display: none;
}
.section-title-center {
  margin-bottom: 1rem;
}

/* ─── ANIMATE ON SCROLL ─────────────────────────────── */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.anim.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  padding: 2.5rem 6rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

.trust-icon {
  font-size: 1.1rem;
}

/* ─── PROCESS ───────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  background: var(--bg-elevated);
  transition: all 0.3s;
}

.step:hover .step-num {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 30px var(--gold-glow);
}

.step-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ─── BILLING TOGGLE ────────────────────────────────── */
.billing-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.toggle-track {
  width: 48px;
  height: 26px;
  background: var(--surface);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
  border: 1px solid var(--border);
}

.toggle-track.on {
  background: var(--gold);
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.toggle-track.on .toggle-knob {
  transform: translateX(22px);
}

.t-label {
  font-size: 0.83rem;
  color: var(--text-muted);
}
.t-label.active {
  color: var(--text);
  font-weight: 600;
}

.save-badge {
  background: var(--success);
  color: white;
  font-size: 0.65rem;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  font-weight: 600;
  transition: opacity 0.3s;
}

.save-badge-dim {
  opacity: 0.4;
}

/* ─── PLANS ─────────────────────────────────────────── */
.plans-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.plan {
  background: var(--bg);
  padding: 2.5rem;
  position: relative;
  transition: background 0.3s;
}
.plan:hover {
  background: var(--bg-card);
}
.plan.featured {
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.08), var(--bg-card));
}
.plan.featured:hover {
  background: linear-gradient(
    180deg,
    rgba(201, 168, 76, 0.12),
    var(--bg-elevated)
  );
}

.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

.plan-name {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}

.plan-price .cur {
  font-size: 1.3rem;
  margin-top: 0.8rem;
  color: var(--text-dim);
}
.plan-cadence {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}
.plan-saving {
  font-size: 0.76rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
  min-height: 1.2em;
}

.plan-urgency {
  font-size: 0.72rem;
  color: var(--danger);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.plan-urgency::before {
  content: "🔥";
}

.plan-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-dim);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  font-size: 0.82rem;
  padding: 0.45rem 0;
  display: flex;
  gap: 0.7rem;
  line-height: 1.45;
  color: var(--text-dim);
}

.plan-features li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.plan-features li.dimmed {
  opacity: 0.3;
  text-decoration: line-through;
}

/* ─── SERVICES ──────────────────────────────────────── */
.service-cat {
  margin-bottom: 4rem;
}

.cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.cat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cat-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-item {
  background: var(--bg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: all 0.25s;
}
.service-item:hover {
  background: var(--bg-card);
}
.service-name {
  font-size: 0.9rem;
  font-weight: 600;
}
.service-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.55;
  flex: 1;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.service-price small {
  font-family: var(--font);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.tags {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  align-items: center;
}
.tag {
  font-size: 0.6rem;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.tag-auto {
  background: rgba(45, 106, 79, 0.2);
  color: #5ad19b;
}
.tag-rec {
  background: rgba(26, 74, 110, 0.2);
  color: #6db3e8;
}
.tag-hot {
  background: rgba(160, 82, 26, 0.2);
  color: #e8a35e;
}
.tag-new {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-light);
}

.add-btn {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
  font-family: var(--font);
}

.add-btn:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ─── PRODUCT CARDS ─────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.product-card {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.1);
}
.product-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
}
.product-price small {
  font-family: var(--font);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.instant-badge {
  font-size: 0.6rem;
  background: var(--gold);
  color: var(--bg);
  padding: 0.22rem 0.55rem;
  border-radius: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* ─── TESTIMONIALS ──────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.tcard {
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
}

.tcard:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.tcard-stars {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.tcard-quote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  color: rgba(240, 236, 227, 0.8);
  margin-bottom: 1.5rem;
}
.tcard-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.tcard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bg);
  flex-shrink: 0;
}
.tcard-name {
  font-size: 0.83rem;
  font-weight: 600;
}
.tcard-role {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ─── ROI CALCULATOR ────────────────────────────────── */
.roi-calc {
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 600px;
}

.roi-field {
  margin-bottom: 1.2rem;
}
.roi-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-dim);
}
.roi-field input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
}
.roi-field .range-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.roi-result {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.1),
    rgba(201, 168, 76, 0.05)
  );
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}

.roi-result .big {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
}
.roi-result .sub {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

/* ─── FAQ ───────────────────────────────────────────── */
.faq-list {
  max-width: 680px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--gold);
}
.faq-arrow {
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--text-dim);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s;
}

.faq-item.open .faq-a {
  max-height: 250px;
  padding-bottom: 1.25rem;
}

/* ─── COMPARISON TABLE ──────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.82rem;
}
.compare-table th {
  text-align: left;
  padding: 1rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 2px solid var(--border-strong);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.compare-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.compare-table tr:hover td {
  background: var(--bg-card);
}
.compare-table .check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}
.compare-table .cross {
  color: rgba(240, 236, 227, 0.15);
  font-size: 1rem;
}

/* ─── CTA SECTION ───────────────────────────────────── */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-light)
  );
  padding: 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.cta-section .section-title {
  color: var(--bg) !important;
}
.cta-section .section-title em {
  -webkit-text-fill-color: var(--bg) !important;
}
.cta-section p {
  color: rgba(10, 12, 16, 0.6);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.cta-section .btn-dark {
  background: var(--bg);
  color: var(--gold);
}
.cta-section .btn-dark:hover {
  background: var(--bg-card);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.cta-section .btn-outline {
  border-color: var(--bg);
  color: var(--bg);
}
.cta-section .btn-outline:hover {
  background: var(--bg);
  color: var(--gold);
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  padding: 5rem 6rem 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-brand span {
  color: var(--gold);
}
.footer-brand img {
  height: 28px;
  width: auto;
}
.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.75;
  max-width: 32ch;
}
.footer-heading {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: var(--font-mono);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.74rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── MODAL ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 2.5rem;
  width: 90%;
  max-width: 500px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--gold);
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.modal-sub {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-field {
  margin-bottom: 1.1rem;
}
.form-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
  color: var(--text-dim);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.84rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.25s;
}

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

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.step-indicators {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.step-dot {
  width: 100%;
  height: 3px;
  background: var(--surface);
  border-radius: 2px;
}
.step-dot.active {
  background: var(--gold);
}
.step-dot.done {
  background: var(--gold-dark);
}
.form-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.form-nav-back {
  flex: 1;
}
.form-nav-next {
  flex: 2;
}
.form-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  text-align: center;
}

/* Form loading & success states */
.form-loading {
  pointer-events: none;
  opacity: 0.6;
}
.form-success {
  text-align: center;
  padding: 2rem 0;
}
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.form-success-msg {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.form-success-sub {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ─── CHATBOT ───────────────────────────────────────── */
.chatbot-trigger {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  box-shadow: 0 4px 20px var(--gold-glow);
  transition: all 0.3s;
  border: none;
  font-size: 1.4rem;
}

.chatbot-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.3);
}

.chatbot-window {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 380px;
  max-height: 500px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  z-index: 200;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.chatbot-window.open {
  display: flex;
}

.chatbot-header {
  background: var(--gold);
  color: var(--bg);
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.chatbot-close {
  background: none;
  border: none;
  color: var(--bg);
  font-size: 1.2rem;
  cursor: pointer;
}
.chatbot-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  max-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.chat-msg {
  max-width: 85%;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.5;
}
.chat-msg.bot {
  background: var(--surface);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}
.chat-msg.user {
  background: var(--gold);
  color: var(--bg);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chatbot-input {
  display: flex;
  border-top: 1px solid var(--border);
  padding: 0.6rem;
}
.chatbot-input input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.55rem 0.8rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.82rem;
}
.chatbot-input input:focus {
  outline: none;
  border-color: var(--gold);
}
.chatbot-input button {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  margin-left: 0.4rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.82rem;
}

/* ─── SOCIAL PROOF TOAST ────────────────────────────── */
.social-toast {
  position: fixed;
  bottom: 5rem;
  left: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  max-width: 320px;
  z-index: 180;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.4s ease;
  pointer-events: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.social-toast.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.toast-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--bg);
  flex-shrink: 0;
}
.toast-text {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.4;
}
.toast-text strong {
  color: var(--text);
  font-weight: 600;
}
.toast-time {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ─── EXIT INTENT ───────────────────────────────────── */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 600;
  display: none;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.exit-overlay.show {
  display: flex;
}

.exit-modal {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 3rem;
  max-width: 460px;
  width: 90%;
  text-align: center;
}

.exit-modal h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.exit-modal h3 em {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.exit-modal p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.exit-modal input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  font-family: var(--font);
}
.exit-modal input:focus {
  outline: none;
  border-color: var(--gold);
}
.exit-dismiss {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 0.8rem;
  cursor: pointer;
  font-family: var(--font);
}
.exit-dismiss:hover {
  color: var(--text);
}

/* ─── COOKIE CONSENT ────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 300;
  transform: translateY(100%);
  transition: transform 0.4s;
}

.cookie-bar.show {
  transform: translateY(0);
}
.cookie-bar p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
  flex: 1;
}
.cookie-bar a {
  color: var(--gold);
}
.cookie-btns {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cookie-btns button {
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  border: none;
}
.cookie-accept {
  background: var(--gold);
  color: var(--bg);
}
.cookie-decline {
  background: var(--surface);
  color: var(--text-dim);
  border: 1px solid var(--border) !important;
}

/* ─── HERO CARDS LABEL ────────────────────────────────── */
.hero-cards-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  opacity: 0.7;
}

/* ─── HERO STATS ENLARGED ─────────────────────────────── */
.hero-stats .stat-num {
  font-size: 2.5rem;
}

/* ─── EDITORIAL STEPS (How It Works) ──────────────────── */
.editorial-steps {
  position: relative;
  padding-left: 0;
}
.e-step {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.e-step:last-child {
  border-bottom: none;
}
.e-step:hover {
  padding-left: 0.5rem;
}
.e-step-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  min-width: 2.5rem;
  line-height: 1;
  padding-top: 0.15rem;
  opacity: 0.6;
}
.e-step-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.e-step-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ─── COLLAPSIBLE SERVICE CATEGORIES ──────────────────── */
.cat-header {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}
.cat-chevron {
  margin-left: auto;
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--text-muted);
}
.cat-header[aria-expanded="false"] .cat-chevron {
  transform: rotate(-90deg);
}
.cat-collapsible {
  max-height: 2000px;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 1;
}
.cat-collapsible.collapsed {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
}

/* ─── STICKY CTA HIDES WHEN CHATBOT OPEN ──────────────── */
body.chatbot-open .sticky-cta {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.sticky-cta {
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO CANVAS ───────────────────────────────────── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ─── SOLUTION FINDER QUIZ ─────────────────────────── */
.quiz-container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 2.5rem;
}
.quiz-progress {
  height: 4px;
  background: var(--surface);
  border-radius: 4px;
  margin-bottom: 2rem;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 4px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.quiz-step {
  display: none;
}
.quiz-step.active {
  display: block;
  animation: fadeUp 0.4s ease;
}
.quiz-question {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.quiz-option {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: all 0.25s;
  text-align: left;
}
.quiz-option:hover {
  border-color: var(--gold);
  background: var(--bg-card);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--gold-glow);
}
.quiz-option.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  color: var(--gold);
}
.quiz-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.quiz-result-card {
  text-align: center;
  padding: 1.5rem 0;
}
.quiz-result-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.quiz-result-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.quiz-result-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.quiz-result-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── INDUSTRIES GRID ──────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.industry-card {
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.industry-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.1);
}
.industry-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.industry-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.industry-desc {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ─── SERVICE FILTERS ──────────────────────────────── */
.service-filters {
  margin-bottom: 3rem;
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}
.filter-group {
  margin-bottom: 1rem;
}
.filter-group:last-of-type {
  margin-bottom: 0.5rem;
}
.filter-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.filter-pills {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.filter-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
  white-space: nowrap;
}
.filter-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  font-weight: 600;
}
.filter-results-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}
.filter-results-count span {
  color: var(--gold);
  font-weight: 600;
}

/* Service item data attributes for filtering */
.service-cat[data-category] {
  transition: all 0.35s ease;
}
.service-cat.filter-hidden {
  display: none;
}
.service-item[data-need] {
  transition: all 0.35s ease;
}
.service-item.filter-hidden {
  display: none;
}

/* ─── CASE STUDIES ─────────────────────────────────── */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.case-card {
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
}
.case-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.1);
}
.case-industry {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.case-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.case-metrics {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: 1rem;
  background: rgba(201,168,76,0.05);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  justify-content: center;
}
.case-metric {
  text-align: center;
}
.case-metric-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}
.case-metric-highlight {
  color: var(--gold);
}
.case-metric-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.case-metric-arrow {
  font-size: 1.5rem;
  color: var(--gold);
}
.case-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(240,236,227,0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.case-link {
  font-size: 0.78rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.case-link:hover {
  color: var(--gold-light);
}

/* ─── TESTIMONIAL MARQUEE ──────────────────────────── */
.testimonial-marquee {
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0;
}
.testimonial-marquee::before,
.testimonial-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}
.marquee-track {
  display: flex;
  gap: 1.2rem;
  animation: marquee 45s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-track .tcard {
  min-width: 380px;
  max-width: 380px;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── NEWSLETTER ───────────────────────────────────── */
.newsletter-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}
.newsletter-form {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.88rem;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.newsletter-proof {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.newsletter-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.perk {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  transition: all 0.2s;
}
.perk:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.perk-icon {
  font-size: 1.2rem;
}

/* ─── CHATBOT QUICK REPLIES ────────────────────────── */
.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.3rem 0;
}
.chat-pill {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 0.35rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}
.chat-pill:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ─── INLINE FORM ERRORS ───────────────────────────── */
.field-error {
  font-size: 0.72rem;
  color: var(--danger);
  margin-top: 0.25rem;
  display: none;
}
.field-error.show {
  display: block;
  animation: fadeUp 0.3s ease;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--danger);
}

/* ─── SECTION TAG CENTER FIX ───────────────────────── */
.section-tag-center {
  color: var(--gold) !important;
}
.section-dark .section-tag-center,
.section-warm .section-tag-center {
  color: var(--gold) !important;
}

/* ─── TRAINING CARDS ────────────────────────────────── */
.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

/* ─── BUNDLE CARD ───────────────────────────────────── */
.bundle-card {
  grid-column: 1 / -1;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.bundle-card .bundle-info {
  flex: 1;
  min-width: 240px;
}
.bundle-card .bundle-price {
  text-align: right;
  min-width: 150px;
}

/* ─── PRINT STYLES ──────────────────────────────────── */
@media print {
  nav,
  .sticky-cta,
  .chatbot-trigger,
  .chatbot-window,
  .social-toast,
  .exit-overlay,
  .cookie-bar,
  .scroll-progress,
  .mobile-drawer,
  .drawer-overlay {
    display: none !important;
  }
  body {
    background: white;
    color: #111;
  }
  .section {
    padding: 2rem 1rem;
  }
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 960px) {
  nav {
    padding: 1rem 1.5rem;
  }
  nav.scrolled {
    padding: 0.7rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 6rem 1.5rem 3rem;
  }
  .section {
    padding: 4rem 1.5rem;
  }
  .plans-row,
  .three-col,
  .product-grid,
  .testimonials,
  .process-steps,
  .training-grid {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .cta-section {
    padding: 4rem 1.5rem;
  }
  footer {
    padding: 3rem 1.5rem;
  }
  .services-list {
    grid-template-columns: 1fr;
  }
  .trust-bar {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .sticky-cta {
    padding: 0.7rem 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  .chatbot-window {
    width: calc(100% - 2rem);
    right: 1rem;
    bottom: 5rem;
  }
  .social-toast {
    display: none !important;
  }
  .cookie-bar {
    padding: 1rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  .compare-table {
    font-size: 0.72rem;
  }
  .compare-table th,
  .compare-table td {
    padding: 0.5rem;
  }
  .bundle-card {
    flex-direction: column;
    text-align: center;
  }
  .bundle-card .bundle-price {
    text-align: center;
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .quiz-options {
    grid-template-columns: 1fr;
  }
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-perks {
    grid-template-columns: 1fr 1fr;
  }
  .filter-pills {
    gap: 0.3rem;
  }
  .marquee-track .tcard {
    min-width: 300px;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-perks {
    grid-template-columns: 1fr;
  }
  .quiz-container {
    padding: 1.5rem;
  }
}

/* ─── UTILITIES ──────────────────────────────────────── */
.u-text-center { text-align: center !important; }
.u-text-right { text-align: right !important; }
.u-text-uppercase { text-transform: uppercase !important; }
.u-text-sm { font-size: 0.85rem !important; }
.u-text-dim { color: var(--text-dim) !important; }
.u-letter-spacing-1 { letter-spacing: 1px !important; }
.u-letter-spacing-3 { letter-spacing: 3px !important; }
.u-font-weight-600 { font-weight: 600 !important; }
.u-font-weight-700 { font-weight: 700 !important; }
.u-font-display { font-family: var(--font-display) !important; }
.u-margin-auto { margin: 0 auto !important; }
.u-margin-0 { margin: 0 !important; }
.u-margin-bottom-0-25 { margin-bottom: 0.25rem !important; }
.u-margin-bottom-0-5 { margin-bottom: 0.5rem !important; }
.u-margin-bottom-sm { margin-bottom: 0.75rem !important; }
.u-margin-bottom-1 { margin-bottom: 1rem !important; }
.u-margin-top-0-5 { margin-top: 0.5rem !important; }
.u-margin-top-0-75 { margin-top: 0.75rem !important; }
.u-margin-top-1 { margin-top: 1rem !important; }
.u-margin-top-md { margin-top: 2rem !important; }
.u-margin-top-0-25 { margin-top: 0.25rem !important; }
.u-flex-center { display: flex !important; align-items: center !important; justify-content: center !important; }
.u-flex-start { display: flex !important; align-items: flex-start !important; }
.u-flex-gap-0-5 { gap: 0.5rem !important; }
.u-flex-gap-1 { gap: 1rem !important; }
.u-flex-gap-2 { gap: 2rem !important; }
.u-flex-wrap { flex-wrap: wrap !important; }
.u-flex-1 { flex: 1 !important; }
.u-grid-2 { display: grid !important; grid-template-columns: 1fr 1fr !important; }
.u-full-width { width: 100% !important; }
.u-nowrap { white-space: nowrap !important; }
.u-hidden { display: none !important; }
.u-border-top { border-top: 1px solid var(--border) !important; }
.u-font-size-inherit { font-size: 1rem !important; }
.u-font-size-0-75 { font-size: 0.75rem !important; }
.u-font-size-0-8 { font-size: 0.8rem !important; }
.u-font-size-0-9 { font-size: 0.9rem !important; }
.u-font-size-1-1 { font-size: 1.1rem !important; }
.u-font-size-1-3 { font-size: 1.3rem !important; }
.u-font-size-1 { font-size: 1rem !important; }
.u-font-size-1-5 { font-size: 1.5rem !important; }
.u-font-size-1-9 { font-size: 1.9rem !important; }
.u-font-size-2 { font-size: 2rem !important; }
.u-font-size-3-5 { font-size: 3.5rem !important; }
.u-line-height-1 { line-height: 1 !important; }
.u-line-height-2 { line-height: 2 !important; }
.u-min-width-200 { min-width: 200px !important; }
.u-max-width-400 { max-width: 400px !important; }
.u-position-relative { position: relative !important; }
.u-z-index-1 { z-index: 1 !important; }
.u-color-gold { color: var(--gold) !important; }
.u-color-gold-opacity { color: rgba(184, 134, 11, 0.5) !important; }
.u-color-gold-light { color: var(--gold-light) !important; }
.u-color-white-60 { color: rgba(255,255,255,0.6) !important; }
.u-color-white-80 { color: rgba(255,255,255,0.8) !important; }
.u-color-slate { color: var(--slate) !important; }
.u-color-navy { color: var(--navy) !important; }
.u-text-muted { color: var(--text-muted) !important; }
.u-text-line-through { text-decoration: line-through !important; }
.u-padding-1-5 { padding: 1.5rem !important; }
.u-padding-bottom-2 { padding-bottom: 2rem !important; }
.u-padding-top-1 { padding-top: 1rem !important; }
.u-padding-left-1-25 { padding-left: 1.25rem !important; }
.u-margin-top-1-5 { margin-top: 1.5rem !important; }
.u-margin-bottom-2 { margin-bottom: 2rem !important; }
.u-border-bottom { border-bottom: 1px solid var(--border) !important; }
.u-bg-card { background: var(--card) !important; }
.u-border { border: 1px solid var(--border) !important; }
.u-border-e2e8f0 { border: 1px solid #e2e8f0 !important; }
.u-border-top-e2e8f0 { border-top: 1px solid #e2e8f0 !important; }
.u-radius-8 { border-radius: 8px !important; }
.u-padding-0-75-1-25 { padding: 0.75rem 1.25rem !important; }
.u-padding-0-65-1 { padding: 0.65rem 1rem !important; }
.u-padding-0-65-1-2 { padding: 0.65rem 1.2rem !important; }
.u-display-inline-block { display: inline-block !important; }
.u-inset-0 { inset: 0 !important; }
.u-flex-col { flex-direction: column !important; }
.u-position-absolute { position: absolute !important; }
.u-white-space-nowrap { white-space: nowrap !important; }
.u-outline-none { outline: none !important; }
.u-flex-1 { flex: 1 !important; }
.u-filter-white { filter: brightness(0) invert(1) !important; }
.u-bg-white { background: #fff !important; }
.u-bg-f0f4ff { background: #f0f4ff !important; }
.u-color-white { color: #fff !important; }
.u-text-decoration-none { text-decoration: none !important; }
.u-display-none { display: none !important; }
.u-display-block { display: block !important; }
.u-border-left-light { border-left: 1px solid rgba(255,255,255,0.2) !important; }
.u-color-666 { color: #666 !important; }
.u-color-1a1a2e { color: #1a1a2e !important; }
.u-color-999 { color: #999 !important; }
.u-border-top-f1f5f9-2 { border-top: 2px solid #f1f5f9 !important; }
.u-justify-space-between { justify-content: space-between !important; }
.u-padding-1-2 { padding: 1rem 2rem !important; }
.u-padding-0-85-2-5 { padding: 0.85rem 2.5rem !important; }

