/* ───────────────────────────────────────────────
   Revenue Reactivation — Site Styles
   Palette pulled from LinkedIn banner v2
─────────────────────────────────────────────── */

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

:root {
  --brown: #1C1412;
  --brown-dark: #120E0B;
  --brown-darker: #0A0706;
  --orange: #E8632A;
  --orange-light: #F07A3E;
  --gold: #D4944B;
  --gold-light: #E8A85A;
  --off-white: #F5F2ED;
  --warm-gray: #E8E3DB;
  --warm-gray-2: #D9D3C8;
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #6B6B6B;
  --shadow-sm: 0 2px 8px rgba(28, 20, 18, 0.06);
  --shadow-md: 0 8px 24px rgba(28, 20, 18, 0.08);
  --shadow-lg: 0 20px 40px rgba(28, 20, 18, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

/* ─── NAV ─── */
nav.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(28, 20, 18, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(212, 148, 75, 0.08);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.logo span {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

/* Hide email at narrower desktop widths so other items don't wrap */
@media (max-width: 1180px) {
  .nav-links li:has(> a[href^="mailto:"]) { display: none; }
}
@media (max-width: 1020px) {
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.85rem; }
}

.nav-cta {
  background: var(--gold);
  color: var(--brown);
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-phone {
  color: var(--gold-light) !important;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.nav-phone::before {
  content: '📞';
  font-size: 0.85rem;
}
.nav-phone:hover { color: var(--gold) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--brown);
  padding: 0.95rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(212, 148, 75, 0.28);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(212, 148, 75, 0.4);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 0.9rem 1.85rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ─── HERO (shared) ─── */
.hero {
  background: linear-gradient(165deg, var(--brown) 0%, var(--brown-darker) 100%);
  padding: 9rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -25%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232, 99, 42, 0.13) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 148, 75, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(212, 148, 75, 0.13);
  border: 1px solid rgba(212, 148, 75, 0.28);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-tagline {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.hero-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 0.85rem;
}

/* Compact hero variant for inner pages */
.hero.compact {
  padding: 8rem 1.5rem 4rem;
}
.hero.compact h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
}

/* Hero with side-by-side calculator (home page) */
.hero.hero-split {
  text-align: left;
  padding: 8rem 1.5rem 5rem;
}
.hero.hero-split .hero-inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero.hero-split h1 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  text-align: left;
  line-height: 1.1;
}
.hero.hero-split p.lead {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  font-size: 1.08rem;
}
.hero.hero-split .hero-cta-row {
  justify-content: flex-start;
}
.hero.hero-split .hero-sub {
  text-align: left;
}
.hero-risk-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.4rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-risk-stack span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-risk-stack span::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}
.hero-calc {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 148, 75, 0.2);
  border-radius: 16px;
  padding: 1.85rem;
  backdrop-filter: blur(6px);
}
.hero-calc-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.hero-calc h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.hero-calc .roi-input-group {
  margin-bottom: 0.95rem;
}
.hero-calc .roi-input-group label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
}
.hero-calc input[type="number"] {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  border-radius: 6px;
  font-size: 0.92rem;
  font-family: inherit;
}
.hero-calc input[type="number"]:focus {
  outline: none;
  border-color: var(--gold);
}
.hero-calc input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  outline: none;
}
.hero-calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
}
.hero-calc input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
}
.hero-calc-result {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.hero-calc-result .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero-calc-result .number {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.hero-calc-result .range-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 920px) {
  .hero.hero-split {
    text-align: center;
    padding: 8rem 1.5rem 4rem;
  }
  .hero.hero-split .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero.hero-split h1,
  .hero.hero-split p.lead,
  .hero.hero-split .hero-sub { text-align: center; }
  .hero.hero-split .hero-cta-row { justify-content: center; }
  .hero-risk-stack { justify-content: center; }
}

/* ─── SECTIONS (general) ─── */
section {
  padding: 5rem 1.5rem;
}
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.section-narrow {
  max-width: 800px;
  margin: 0 auto;
}
.section-medium {
  max-width: 920px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.85rem;
}
h2.section-h {
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  font-weight: 800;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.bg-white { background: #fff; }
.bg-off-white { background: var(--off-white); }
.bg-dark { background: var(--brown); color: #fff; }
.bg-dark .section-label { color: var(--gold); }
.bg-dark h2.section-h { color: #fff; }
.bg-dark .section-sub { color: rgba(255, 255, 255, 0.7); }

/* ─── STATS BAR ─── */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--warm-gray);
  padding: 2.5rem 1.5rem;
}
.stats-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.4rem;
}

/* ─── PROBLEM / TEXT BLOCK LIST ─── */
.text-block p {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.icon-list {
  list-style: none;
  margin-top: 2rem;
}
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.7rem 0;
  font-size: 1rem;
  color: var(--text-medium);
}
.icon-list .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(212, 148, 75, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ─── STEPS / HOW IT WORKS ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--warm-gray);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bg-off-white .step,
section.bg-white + .bg-off-white .step {
  background: #fff;
}
.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--brown);
  color: var(--gold);
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* Detailed step list (How It Works page) */
.step-detailed {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--warm-gray);
}
.step-detailed:last-child { border-bottom: none; }
.step-detailed .step-num {
  width: 56px;
  height: 56px;
  font-size: 1.3rem;
  margin-bottom: 0;
}
.step-detailed h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.75rem;
}
.step-detailed p {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 0.85rem;
  line-height: 1.7;
}
.step-detailed ul {
  margin-left: 1.1rem;
  color: var(--text-medium);
}
.step-detailed ul li {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

/* ─── CASE STUDY ─── */
.case-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 2.5rem;
}
.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.case-company {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.case-tag {
  background: rgba(232, 99, 42, 0.2);
  border: 1px solid rgba(232, 99, 42, 0.32);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.case-stat h4 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.case-stat p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.3rem;
}
.case-narrative {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}
.case-narrative p { margin-bottom: 1rem; }
.case-narrative p:last-child { margin-bottom: 0; }
.case-narrative strong { color: #fff; font-weight: 600; }

.case-quote {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--orange);
  background: rgba(232, 99, 42, 0.05);
  border-radius: 0 8px 8px 0;
}
.case-quote p {
  font-style: italic;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}
.case-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Result checkmark list */
.result-list {
  list-style: none;
  margin-top: 1rem;
}
.result-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.6;
}
.result-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── WHO IT'S FOR ─── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.who-card {
  background: #fff;
  border: 1px solid var(--warm-gray);
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bg-white .who-card { background: var(--off-white); }
.who-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.who-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.who-card p {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ─── COMPARISON / VALUE GRID ─── */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  padding: 1.75rem;
  border-radius: 12px;
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.value-card.give {
  background: var(--off-white);
  border: 1px solid var(--warm-gray);
}
.value-card.give h3 { color: var(--brown); }
.value-card.get {
  background: var(--brown);
  color: #fff;
}
.value-card.get h3 { color: var(--gold); }
.value-card ul {
  list-style: none;
}
.value-card ul li {
  padding: 0.55rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.5;
}
.value-card.get ul li {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
}
.value-card.give ul li { color: var(--text-medium); }
.value-card ul li:last-child { border-bottom: none; }

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid var(--warm-gray);
}
.faq-item summary {
  font-weight: 700;
  color: var(--brown);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 0;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--orange);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '\2212';
}
.faq-a { padding: 0 0 1.3rem; }
.faq-a p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.75;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--warm-gray-2);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 99, 42, 0.12);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.contact-info {
  background: var(--brown);
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  height: fit-content;
}
.contact-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.contact-info-item {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.contact-info-item .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.contact-info-item a,
.contact-info-item p {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
}
.contact-info-item a:hover { color: var(--gold-light); }

.form-success {
  display: none;
  padding: 1.5rem;
  background: rgba(212, 148, 75, 0.12);
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--brown);
  text-align: center;
}
.form-success.active { display: block; }

/* ─── CTA SECTION ─── */
.final-cta {
  padding: 5rem 1.5rem;
  background: linear-gradient(165deg, var(--brown) 0%, var(--brown-darker) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232, 99, 42, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.final-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.final-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.final-cta .btn-primary { font-size: 1.05rem; padding: 1rem 2.5rem; }
.final-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.85rem;
}
.final-sub a { color: var(--gold); text-decoration: none; }
.final-sub a:hover { text-decoration: underline; }

/* ─── FOOTER ─── */
footer {
  background: var(--brown-darker);
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
footer p, footer a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}
footer a:hover { color: var(--gold-light); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brown);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(212, 148, 75, 0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li:has(> a[href^="mailto:"]) { display: block; }
  .nav-toggle { display: block; }

  .steps { grid-template-columns: 1fr; }
  .case-stats { grid-template-columns: 1fr; gap: 1rem; }
  .who-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .case-card { padding: 1.75rem; }
  .step-detailed { grid-template-columns: 1fr; gap: 0.85rem; }
  section { padding: 4rem 1.5rem; }
  .stats-inner { gap: 1rem; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-secondary { width: 100%; }
}

/* ─── ROI CALCULATOR ─── */
.roi-calc {
  background: #fff;
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--warm-gray);
  margin-top: 2.5rem;
}
.roi-calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.roi-calc h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.roi-calc-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.roi-input-group {
  margin-bottom: 1.15rem;
}
.roi-input-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.roi-input-group input[type="number"] {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--warm-gray-2);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
}
.roi-input-group input[type="number"]:focus {
  outline: none;
  border-color: var(--orange);
}
.roi-input-group input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--warm-gray);
  border-radius: 50px;
  outline: none;
}
.roi-input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(232, 99, 42, 0.4);
}
.roi-input-group input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #fff;
}
#roi-rate-label {
  color: var(--orange);
  font-weight: 700;
}
.roi-output {
  background: linear-gradient(165deg, var(--brown) 0%, var(--brown-darker) 100%);
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}
.roi-output .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.roi-output .number {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.roi-output .range {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
}
.roi-output .roi-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--brown);
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.2s;
}
.roi-output .roi-cta:hover { background: var(--gold-light); }
.roi-disclaimer {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1.25rem;
  text-align: center;
  font-style: italic;
}
@media (max-width: 760px) {
  .roi-calc-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .roi-calc { padding: 1.75rem; }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid var(--warm-gray);
}
.trust-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
}
.trust-icon {
  width: 38px;
  height: 38px;
  background: rgba(232, 99, 42, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
}
.trust-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown);
}
.trust-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ─── WHAT WE WON'T DO ─── */
.wont-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.wont-item {
  display: flex;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  background: rgba(232, 99, 42, 0.05);
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
}
.wont-item .x {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.wont-item span:last-child {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.55;
}
@media (max-width: 680px) {
  .wont-grid { grid-template-columns: 1fr; }
}

/* ─── PRICING CARD ─── */
.pricing-card {
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}
.pricing-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
}
.pricing-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 0.5rem;
  text-align: center;
}
.pricing-card .price-line {
  text-align: center;
  margin-bottom: 1.5rem;
}
.pricing-card .price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.pricing-card .price-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}
.pricing-card .description {
  font-size: 0.95rem;
  color: var(--text-medium);
  text-align: center;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.pricing-features {
  list-style: none;
  margin-bottom: 1.75rem;
}
.pricing-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--warm-gray);
  color: var(--text-medium);
  font-size: 0.94rem;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  line-height: 1.55;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card .pricing-cta {
  display: block;
  text-align: center;
}

/* ─── STICKY MOBILE CTA ─── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 0.75rem 1rem;
  background: var(--brown);
  border-top: 1px solid rgba(212, 148, 75, 0.2);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto;
}
.sticky-cta p {
  flex: 1;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}
.sticky-cta a {
  background: var(--gold);
  color: var(--brown);
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 70px; }
}
