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

:root {
  --red: #C8102E;
  --red-dim: rgba(200,16,46,0.12);
  --red-border: rgba(200,16,46,0.25);
  --bg: #090909;
  --surface: #0f0f0f;
  --surface2: #141414;
  --border: #1a1a1a;
  --border2: #222;
  --text: #f0f0f0;
  --muted: #888;
  --dim: #555;
  --mono: 'DM Mono', monospace;
  --sans: 'DM Sans', sans-serif;
  --display: 'Bebas Neue', sans-serif;
}

html { color-scheme: dark; scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════════
   SHARED COMPONENTS
═══════════════════════════════════════ */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dim);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 7vw, 2.8rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}

.section-sub {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 320px;
}

.red { color: var(--red); }

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-btn:active { transform: scale(0.98); opacity: 0.9; }

.cta-btn .arr {
  font-size: 1rem;
  transition: transform 0.2s;
}
.cta-btn:hover .arr { transform: translateX(3px); }

.cta-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: transparent;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border2);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s;
}
.cta-ghost:hover { border-color: #444; }

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.78rem;
  color: #bbb;
  line-height: 1.5;
}

.check-icon {
  width: 18px; height: 18px;
  background: var(--red-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.55rem;
  color: var(--red);
  margin-top: 1px;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0 1.5rem;
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(9,9,9,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 90;
}

.nav-brand { display: flex; align-items: center; gap: 0.6rem; }

.nav-logo {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

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

.nav-cta {
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  padding: 3rem 1.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(200,16,46,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,16,46,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  color: #ff6b82;
  font-family: var(--mono);
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 1.3rem;
}

.badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 11vw, 4rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin-bottom: 1.1rem;
}

.hero h1 em { color: var(--red); font-style: normal; display: block; }

.hero-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 300px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.cta-note {
  text-align: center;
  font-size: 0.58rem;
  color: var(--dim);
  font-family: var(--mono);
  letter-spacing: 0.06em;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.proof-stats { display: flex; gap: 1.2rem; }

.stat-num {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-family: var(--mono);
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   PAIN SECTION
═══════════════════════════════════════ */
.pain-section { padding: 2.5rem 1.5rem; }

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.pain-item:hover { border-color: var(--border2); }
.pain-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.pain-text { font-size: 0.78rem; color: #bbb; line-height: 1.55; }
.pain-text strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 0.2rem; font-size: 0.84rem; }

/* ═══════════════════════════════════════
   SPECIALIZATION SECTION
═══════════════════════════════════════ */
.spec-section {
  padding: 2.5rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.spec-grid {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.spec-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.spec-card-icon {
  width: 32px; height: 32px;
  background: var(--red-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.spec-card-title { font-size: 0.84rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.spec-card-desc { font-size: 0.72rem; color: var(--muted); line-height: 1.5; }

/* ═══════════════════════════════════════
   BEFORE / AFTER SECTION
═══════════════════════════════════════ */
.ba-section { padding: 2.5rem 1.5rem; }

.ba-toggle-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.2rem;
  margin-bottom: 1rem;
}

.ba-tab {
  flex: 1;
  padding: 0.5rem;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--dim);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.ba-tab.active {
  background: var(--red-dim);
  border-color: var(--red);
  color: #ff6b82;
}

.ba-panel { display: none; }
.ba-panel.active { display: block; }

.mock-before {
  background: #f0ece4;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #333;
}

.mock-before-nav {
  background: #1a1a2e;
  padding: 0.6rem 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
}

.mock-bname {
  font-size: 0.52rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

.mock-blinks { display: flex; gap: 0.3rem; }

.mock-blink {
  font-size: 0.45rem;
  color: #aaa;
  padding: 0.2rem 0.3rem;
  border: 1px solid #444;
  font-family: Arial, sans-serif;
}

.mock-before-hero {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 1.2rem 0.8rem;
  text-align: center;
}

.mock-before-h1 {
  font-size: 0.7rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.mock-before-sub {
  font-size: 0.5rem;
  color: #aaa;
  font-family: Arial, sans-serif;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.mock-btn-row { display: flex; gap: 0.3rem; justify-content: center; }

.mock-btn {
  background: gold;
  color: #000;
  font-size: 0.45rem;
  padding: 0.25rem 0.5rem;
  font-family: Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}

.mock-btn.outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.mock-before-section {
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid #ddd;
}

.mock-before-label {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a2e;
  font-weight: bold;
  font-family: Arial, sans-serif;
  margin-bottom: 0.3rem;
  border-bottom: 2px solid gold;
  display: inline-block;
  padding-bottom: 1px;
}

.mock-before-body {
  font-size: 0.48rem;
  color: #555;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.bad-label {
  display: inline-block;
  background: rgba(200,16,46,0.1);
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.problem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.problem-tag {
  background: var(--surface);
  border: 1px solid #1e1e1e;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.52rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.problem-tag .x { color: var(--red); }

.mock-after {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d0ccc4;
  font-family: Arial, sans-serif;
}

.mock-after-nav {
  background: #1a1a2e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.8rem;
}

.mock-after-logo {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.mock-after-logo span { color: #f0c040; }

.mock-after-pill {
  background: #C8102E;
  color: #fff;
  font-size: 0.43rem;
  padding: 0.22rem 0.55rem;
  border-radius: 3px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-after-accent {
  height: 3px;
  background: linear-gradient(to right, #f0c040, #d4a800);
}

.mock-after-trustbar {
  background: #f7f4ee;
  border-bottom: 1px solid #e8e3da;
  padding: 0.28rem 0.8rem;
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.mock-trust-item {
  font-size: 0.4rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-family: Arial, sans-serif;
}

.mock-trust-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #C8102E;
  flex-shrink: 0;
}

.mock-after-hero {
  background: #ffffff;
  padding: 1rem 0.8rem 0.85rem;
}

.mock-after-eye {
  font-size: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #C8102E;
  font-weight: 700;
  font-family: Arial, sans-serif;
  margin-bottom: 0.35rem;
}

.mock-after-h1 {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.05;
  color: #1a1a2e;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-family: Arial, sans-serif;
}

.mock-after-h1 em { color: #C8102E; font-style: normal; }

.mock-after-sub {
  font-size: 0.46rem;
  color: #666;
  line-height: 1.55;
  margin-bottom: 0.6rem;
  max-width: 210px;
  font-family: Arial, sans-serif;
}

.mock-after-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #1a1a2e;
  color: #f0c040;
  font-size: 0.47rem;
  font-weight: 700;
  padding: 0.36rem 0.75rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: Arial, sans-serif;
}

.mock-after-proof {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.7rem;
  padding-top: 0.6rem;
  border-top: 1px solid #ede9e3;
}

.mock-stars { color: #f0a500; font-size: 0.45rem; letter-spacing: 1px; }
.mock-proof-text { font-size: 0.42rem; color: #888; font-family: Arial, sans-serif; }
.mock-proof-text strong { color: #1a1a2e; font-weight: 700; }

.mock-after-services {
  background: #f7f4ee;
  border-top: 1px solid #e8e3da;
  padding: 0.5rem 0.8rem;
  display: flex;
  gap: 0.4rem;
}

.mock-service-pill {
  flex: 1;
  background: #fff;
  border: 1px solid #ddd;
  border-top: 2px solid #1a1a2e;
  border-radius: 2px;
  padding: 0.28rem 0.2rem;
  text-align: center;
  font-size: 0.38rem;
  color: #333;
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.good-label {
  display: inline-block;
  background: rgba(50,200,80,0.08);
  color: #44cc66;
  font-family: var(--mono);
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.fix-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.fix-tag {
  background: rgba(50,200,80,0.06);
  border: 1px solid rgba(50,200,80,0.15);
  color: #44cc66;
  font-family: var(--mono);
  font-size: 0.52rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ═══════════════════════════════════════
   WHY GREENLION
═══════════════════════════════════════ */
.why-section {
  padding: 2.5rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.why-item {
  padding: 1rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  border-left: 2px solid var(--red);
}

.why-title { font-size: 0.84rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.why-desc { font-size: 0.74rem; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════
   OWNER SECTION
═══════════════════════════════════════ */
.owner-section { padding: 2.5rem 1.5rem; }

.owner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.owner-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.owner-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--border2);
  flex-shrink: 0;
  overflow: hidden;
  background: var(--surface2);
}

.owner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.owner-name {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
}

.owner-title-tag {
  font-family: var(--mono);
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-top: 0.25rem;
}

.owner-bio {
  font-size: 0.8rem;
  color: #bbb;
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  border-left: 2px solid var(--red);
  padding-left: 0.9rem;
}

.owner-focus {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.focus-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  color: #bbb;
}

.focus-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   TRUST / PROOF SECTION
═══════════════════════════════════════ */
.trust-section {
  padding: 2.5rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-cards {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.trust-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}

.trust-card-label {
  font-family: var(--mono);
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 0.4rem;
}

.trust-card-text { font-size: 0.78rem; color: #ccc; line-height: 1.6; }

/* ═══════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════ */
.process-section { padding: 2.5rem 1.5rem; }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.4rem;
  position: relative;
}

.process-step {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.4rem;
  position: relative;
}

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

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1rem;
  color: var(--red);
  flex-shrink: 0;
}

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

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

.step-body { padding-top: 0.3rem; }
.step-title { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.step-desc { font-size: 0.74rem; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════
   OFFER BOX
═══════════════════════════════════════ */
.offer-section { padding: 0 1.5rem 2.5rem; }

.offer-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  border-radius: 12px;
  padding: 1.4rem;
}

.offer-title {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.offer-sub { font-size: 0.72rem; color: var(--muted); margin-bottom: 1rem; }

.offer-items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section {
  padding: 2.5rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  gap: 0.5rem;
  -webkit-tap-highlight-color: transparent;
}

.faq-q:hover { color: #fff; }

.faq-icon {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0.8rem 1rem 0.9rem;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-a { display: block; }

/* ═══════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════ */
.final-cta {
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,16,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-eyebrow {
  font-family: var(--mono);
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--dim);
  margin-bottom: 0.8rem;
}

.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 8vw, 3rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 0.8rem;
}

.final-cta h2 em { color: var(--red); font-style: normal; display: block; }

.final-cta p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-brand { margin-bottom: 1.2rem; }

.footer-logo {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.footer-logo span { color: var(--red); }

.footer-tagline {
  font-family: var(--mono);
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--dim);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.footer-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--dim);
  letter-spacing: 0.04em;
}

.footer-line a { color: var(--dim); transition: color 0.2s; }
.footer-line a:hover { color: var(--text); }

.footer-copy {
  font-family: var(--mono);
  font-size: 0.5rem;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════
   STICKY CTA
═══════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(9,9,9,0.97);
  border-top: 1px solid var(--border);
  padding: 0.9rem 1.5rem;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-inner {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.sticky-cta .cta-btn {
  flex: 1;
  padding: 0.85rem;
  font-size: 0.88rem;
  border-radius: 8px;
}

.sticky-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 8px;
  flex-shrink: 0;
  font-size: 1.1rem;
  text-decoration: none;
  transition: border-color 0.2s;
}
.sticky-call:hover { border-color: #444; }
