/* =============================================
   Big Show Systems — Landing Page Styles
   Design: Dark navy + orange/amber accents
   Approach: Mobile-first, clean SaaS aesthetic
   ============================================= */

/* === FONTS & RESET === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy-950: #070d1a;
  --navy-900: #0d1626;
  --navy-800: #142033;
  --navy-700: #1a2d47;
  --navy-600: #1e3a5f;
  --slate-500: #2d4a6b;
  --slate-400: #3d6080;
  --slate-300: #7a9bb8;
  --slate-200: #a8c0d4;
  --slate-100: #cfe0ed;

  --orange-500: #f97316;
  --orange-400: #fb923c;
  --orange-300: #fdba74;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;

  --text-primary: #f0f6ff;
  --text-secondary: #94b3cc;
  --text-muted: #5a7a96;

  --border-subtle: rgba(255,255,255,0.07);
  --border-medium: rgba(255,255,255,0.12);

  --glow-orange: 0 0 40px rgba(249,115,22,0.25);
  --glow-subtle: 0 0 60px rgba(249,115,22,0.10);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;

  --transition: 0.2s ease;
  --transition-slow: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--navy-950);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* === UTILITY CLASSES === */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--wide {
  max-width: 1200px;
}

.section {
  padding: 80px 0;
}

.section--lg {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange-400);
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 600px;
}

.text-orange { color: var(--orange-400); }
.text-amber  { color: var(--amber-400); }
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}

.btn--primary:hover {
  background: var(--orange-400);
  box-shadow: 0 6px 28px rgba(249,115,22,0.45);
  transform: translateY(-1px);
}

.btn--secondary {
  background: rgba(255,255,255,0.07);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--orange-400);
  border: 1.5px solid var(--orange-500);
  padding: 12px 22px;
}

.btn--ghost:hover {
  background: rgba(249,115,22,0.1);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 18px 34px;
  font-size: 17px;
  border-radius: var(--radius-full);
}

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

.btn-icon {
  font-size: 18px;
}

/* === BADGE/TAG === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.badge--orange {
  background: rgba(249,115,22,0.15);
  color: var(--orange-400);
  border: 1px solid rgba(249,115,22,0.25);
}

.badge--green {
  background: rgba(34,197,94,0.12);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.2);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 20px;
  transition: all var(--transition-slow);
}

.nav.scrolled {
  background: rgba(7,13,26,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 34px;
  height: 34px;
  background: var(--orange-500);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__phone {
  display: none;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-400);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(249,115,22,0.25);
  background: rgba(249,115,22,0.07);
  transition: all var(--transition);
}

.nav__phone:hover {
  background: rgba(249,115,22,0.15);
  border-color: rgba(249,115,22,0.4);
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  transition: all var(--transition);
}

.nav__hamburger:hover {
  background: rgba(255,255,255,0.08);
}

.nav__hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(7,13,26,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile-link {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  display: block;
}

.nav__mobile-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.nav__mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: var(--orange-500);
  top: -100px;
  right: -150px;
}

.hero__glow--2 {
  width: 400px;
  height: 400px;
  background: #4f46e5;
  bottom: -80px;
  left: -80px;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero__badge {
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 22px;
  max-width: 780px;
}

.hero__headline em {
  font-style: normal;
  color: var(--orange-400);
}

.hero__sub {
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 12px;
}

.hero__descriptor {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  margin-bottom: 48px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.hero__trust-item svg,
.hero__trust-item .check {
  color: #4ade80;
  font-size: 14px;
  flex-shrink: 0;
}

.hero__proof {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  backdrop-filter: blur(8px);
}

.hero__proof-stat {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--orange-400);
  line-height: 1;
}

.hero__proof-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* === STATS BAR === */
.stats-bar {
  background: var(--navy-800);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 20px;
}

.stats-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.stat-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.stat-item:nth-child(even) {
  border-right: none;
}

.stat-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--orange-400);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item__label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* === PROBLEM SECTION === */
.problem {
  background: var(--navy-900);
  padding: 90px 20px;
}

.problem__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem__body {
  max-width: 700px;
  margin-top: 28px;
}

.problem__body p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}

.problem__body strong {
  color: var(--text-primary);
}

.problem__callout {
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2);
  border-left: 3px solid var(--orange-500);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

.problem__bullets {
  margin: 20px 0 28px;
  padding-left: 4px;
}

.problem__bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-secondary);
  padding: 8px 0;
}

.problem__bullet::before {
  content: '→';
  color: var(--orange-400);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.problem__math {
  background: var(--navy-800);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 28px;
}

.problem__math p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.problem__math p:last-child {
  margin-bottom: 0;
}

.problem__math strong {
  color: var(--orange-400);
}

/* === SOLUTION SECTION === */
.solution {
  background: var(--navy-950);
  padding: 90px 20px;
}

.solution__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.solution__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.feature-card {
  background: var(--navy-800);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-slow);
}

.feature-card:hover {
  border-color: rgba(249,115,22,0.3);
  background: var(--navy-700);
  transform: translateY(-2px);
}

.feature-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.feature-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Comparison Table */
.comparison-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}

.comparison-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-medium);
}

.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-medium);
}

.comparison-table thead th:first-child {
  background: var(--navy-800);
  color: var(--text-muted);
}

.comparison-table thead th.col--ai {
  background: rgba(249,115,22,0.12);
  color: var(--orange-400);
  border-left: 2px solid var(--orange-500);
}

.comparison-table thead th.col--vm,
.comparison-table thead th.col--human {
  background: var(--navy-900);
  color: var(--text-muted);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

.comparison-table td {
  padding: 13px 20px;
  color: var(--text-secondary);
  vertical-align: middle;
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
  background: var(--navy-800);
}

.comparison-table td.col--ai {
  background: rgba(249,115,22,0.05);
  border-left: 2px solid rgba(249,115,22,0.2);
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-table td.col--vm,
.comparison-table td.col--human {
  background: var(--navy-900);
}

.check-yes { color: #4ade80; font-size: 16px; }
.check-no  { color: #f87171; font-size: 16px; }
.check-partial { color: var(--amber-400); font-size: 14px; }

.comparison-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin-top: 12px;
}

/* === HOW IT WORKS === */
.how {
  background: var(--navy-900);
  padding: 90px 20px;
}

.how__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  background: var(--navy-800);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
}

.step-card:hover {
  border-color: rgba(249,115,22,0.25);
  transform: translateY(-2px);
}

.step-card__number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(249,115,22,0.08);
  position: absolute;
  top: -10px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.step-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.step-card__step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: 8px;
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.25;
}

.step-card__body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.how__footer {
  margin-top: 40px;
  text-align: center;
  background: rgba(249,115,22,0.07);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
}

.how__footer p {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.how__footer span {
  font-size: 14px;
  color: var(--text-muted);
}

/* === SOCIAL PROOF / CASE STUDY === */
.proof {
  background: var(--navy-950);
  padding: 90px 20px;
}

.proof__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.proof__client {
  background: var(--navy-800);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.proof__client-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.proof__client-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof__client-logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.proof__client-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.proof__client-location {
  font-size: 13px;
  color: var(--text-muted);
}

.proof__situation {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.proof__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.metric-card {
  background: var(--navy-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.metric-card__value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--orange-400);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-card__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.metric-card__sub {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Testimonial / Quote block */
.testimonial {
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  margin-bottom: 28px;
  position: relative;
}

.testimonial__quote-mark {
  font-size: 60px;
  color: rgba(249,115,22,0.2);
  line-height: 0.8;
  font-family: Georgia, serif;
  margin-bottom: 8px;
  display: block;
}

.testimonial__body {
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial__pending {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--amber-400);
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  margin-bottom: 12px;
}

.testimonial__attribution {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.testimonial__attribution span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

.proof__bridge {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.proof__bridge strong {
  color: var(--text-primary);
}

/* Before/After */
.before-after {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.before-card, .after-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.before-card {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.15);
}

.after-card {
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.15);
}

.ba-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.before-card .ba-label { color: #f87171; }
.after-card .ba-label { color: #4ade80; }

.ba-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ba-row:last-child { border-bottom: none; }

.ba-icon { flex-shrink: 0; margin-top: 1px; }

/* === PRICING === */
.pricing {
  background: var(--navy-900);
  padding: 90px 20px;
}

.pricing__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing__philosophy {
  max-width: 640px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
}

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  background: var(--navy-800);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition-slow);
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pricing-card--featured {
  border-color: rgba(249,115,22,0.4);
  background: linear-gradient(160deg, rgba(249,115,22,0.06) 0%, var(--navy-800) 60%);
  box-shadow: 0 0 0 1px rgba(249,115,22,0.2), 0 20px 60px rgba(0,0,0,0.25);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--orange-500);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.pricing-card__tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: 10px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.pricing-card__price sup {
  font-size: 24px;
  font-weight: 700;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}

.pricing-card__price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card__tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-card__setup {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--navy-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 20px 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pricing-feature .check-yes {
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card__cta {
  width: 100%;
  text-align: center;
}

/* Guarantee */
.guarantee {
  margin-top: 48px;
  background: var(--navy-800);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.guarantee__icon {
  font-size: 36px;
}

.guarantee__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.guarantee__body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.guarantee__sig {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* Pricing FAQ mini */
.pricing-faq {
  margin-top: 40px;
  display: grid;
  gap: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-faq-item {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
}

.pricing-faq-item:last-child { border-bottom: none; }

.pricing-faq-item strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === FAQ === */
.faq {
  background: var(--navy-950);
  padding: 90px 20px;
}

.faq__inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

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

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--navy-800);
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition);
  line-height: 1.4;
}

.faq-question:hover {
  background: var(--navy-700);
}

.faq-question.active {
  color: var(--orange-400);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
  transition: all var(--transition);
}

.faq-question.active .faq-chevron {
  border-color: var(--orange-400);
  color: var(--orange-400);
  transform: rotate(180deg);
}

.faq-answer {
  background: var(--navy-900);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer__inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.faq-answer.open .faq-answer__inner {
  padding-top: 16px;
}

/* === FINAL CTA === */
.final-cta {
  background: var(--navy-900);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.final-cta__bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--orange-500);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 54px);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.final-cta__sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 40px;
}

.final-cta__phone-block {
  background: var(--navy-800);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  margin-bottom: 24px;
}

.final-cta__phone-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.final-cta__phone-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  color: var(--orange-400);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color var(--transition);
  line-height: 1;
}

.final-cta__phone-number:hover {
  color: var(--orange-300);
}

.final-cta__phone-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.final-cta__or {
  font-size: 14px;
  color: var(--text-muted);
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.final-cta__or::before,
.final-cta__or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.final-cta__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.final-cta__trust {
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === FOOTER === */
.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 20px 32px;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
}

.footer__logo-icon {
  width: 30px;
  height: 30px;
  background: var(--orange-500);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.footer__tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-400);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__phone:hover { color: var(--orange-300); }

.footer__links-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__link {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__link:hover { color: var(--orange-400); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__legal-link {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__legal-link:hover { color: var(--text-secondary); }

/* === RESPONSIVE — TABLET (640px+) === */
@media (min-width: 640px) {
  .stats-bar__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item {
    border-bottom: none;
  }

  .stat-item:nth-child(even) {
    border-right: 1px solid var(--border-subtle);
  }

  .stat-item:last-child {
    border-right: none;
  }

  .solution__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how__steps {
    grid-template-columns: 1fr;
  }

  .proof__metrics {
    grid-template-columns: repeat(4, 1fr);
  }

  .before-after {
    grid-template-columns: repeat(2, 1fr);
  }

  .guarantee {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  .final-cta__ctas {
    flex-direction: row;
    justify-content: center;
  }

  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* === RESPONSIVE — DESKTOP (768px+) === */
@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }

  .nav__phone {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }

  .nav__mobile {
    display: none !important;
  }

  .solution__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .how__steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof__client-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* === RESPONSIVE — LARGE (1024px+) === */
@media (min-width: 1024px) {
  .section {
    padding: 100px 0;
  }

  .solution__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.fade-up--delay-1 { animation-delay: 0.1s; }
.fade-up--delay-2 { animation-delay: 0.2s; }
.fade-up--delay-3 { animation-delay: 0.3s; }
.fade-up--delay-4 { animation-delay: 0.4s; }

/* === SCROLL REVEAL (via JS class) === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* === MISC === */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Phone pulse animation for nav CTA */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(249,115,22,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}

.btn--pulse {
  animation: pulse-ring 2.5s ease infinite;
}

/* Orange highlight text */
mark {
  background: linear-gradient(120deg, rgba(249,115,22,0.25), rgba(249,115,22,0.1));
  color: var(--orange-300);
  padding: 0 4px;
  border-radius: 3px;
}
