/* ============================================================
   ExGenX — style.css
   ============================================================ */

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

:root {
  --bg:           #060606;
  --bg-2:         #0b0b0b;
  --bg-card:      #101010;
  --bg-card-2:    #161616;
  --text:         #ffffff;
  --text-muted:   #a7aabb;
  --accent:       #c84b1f;
  --accent-light: #e05a2a;
  --accent-glow:  rgba(200, 75, 31, 0.35);
  --green:        #16a34a;
  --red:          #dc2626;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --radius:       16px;
  --radius-sm:    10px;
  --font:         'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --t:            0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:        1200px;
  --py:           80px;
  --navbar-h:     72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
a    { text-decoration: none; color: inherit; }
img  { max-width: 100%; height: auto; display: block; }
/* prevent global height:auto from breaking sized logos */
ul   { list-style: none; }
button, input, textarea, select { font-family: var(--font); }

/* ── Utilities ────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #f07a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,75,31,0.1);
  border: 1px solid rgba(200,75,31,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

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

.section-title {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
}
.section-header.center .section-desc { margin: 0 auto; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  border-color: var(--border-hover);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-lg   { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn-glow:hover { box-shadow: 0 12px 40px var(--accent-glow); }

/* ── Preloader ────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0;
  background: var(--bg); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { width: 60px; height: 60px; object-fit: contain; animation: spin 1.1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.preloader-bar {
  width: 160px; height: 2px;
  background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden;
}
.preloader-bar::after {
  content: ''; display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), #f07a4a);
  animation: loadbar 1.4s var(--ease) forwards;
}
@keyframes loadbar { from { width: 0; } to { width: 100%; } }

/* ── Custom Cursor ────────────────────────────────────────── */

/* ── Floating CTA ─────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  display: flex; align-items: center; gap: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 13px 22px;
  border-radius: 100px;
  box-shadow: 0 8px 32px var(--accent-glow);
  z-index: 900;
  transform: translateY(100px); opacity: 0;
  transition: var(--t), transform .4s var(--ease), opacity .4s var(--ease);
}
.floating-cta.visible { transform: translateY(0); opacity: 1; }
.floating-cta:hover { background: var(--accent-light); transform: translateY(-3px); box-shadow: 0 14px 44px var(--accent-glow); }
@media (max-width: 600px) { .floating-cta span { display: none; } .floating-cta { padding: 14px; border-radius: 50%; } }

/* ── Header / Navbar ──────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; transition: var(--t);
}
.header.scrolled {
  background: rgba(6,6,6,0.9);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.navbar { padding: 16px 0; }
.navbar .container { display: flex; align-items: center; gap: 36px; }
/* FIX: override global img { height: auto } for logo */
.logo img { display: block; height: 36px !important; width: auto !important; }
.nav-menu { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-link {
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  transition: color var(--t);
  position: relative; padding-bottom: 3px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 100%; height: 1.5px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 40%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute; top: -5%; left: 25%; transform: translateX(-50%);
  width: 1000px; height: 700px;
  background: radial-gradient(ellipse, rgba(200,75,31,0.12) 0%, transparent 62%);
  filter: blur(48px);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--accent);
  background: rgba(200,75,31,0.08);
  border: 1px solid rgba(200,75,31,0.25);
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.8s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px var(--accent); }
  50%       { box-shadow: 0 0 16px var(--accent), 0 0 28px rgba(200,75,31,0.4); }
}

.hero-title {
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 900; letter-spacing: -0.025em;
  line-height: 1.04; margin-bottom: 26px;
}
.hero-desc {
  font-size: 18px; color: var(--text-muted);
  max-width: 580px; line-height: 1.75; margin-bottom: 40px;
}
.hero-cta-wrap { margin-bottom: 16px; }
.hero-cta-note {
  margin-top: 14px;
  font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center; gap: 7px;
}
.hero-cta-note i { color: var(--accent); font-size: 11px; }

.hero-proof {
  display: flex; align-items: center; gap: 0;
  margin-top: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  width: fit-content;
}
.proof-item { text-align: center; padding: 0 32px; }
.proof-item strong { display: block; font-size: 28px; font-weight: 900; color: var(--text); }
.proof-item span   { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.proof-divider { width: 1px; height: 48px; background: var(--border); }

/* Hero entrance */
.animate-in { animation: fadeUp .75s var(--ease) both; }
.animate-in:nth-child(1) { animation-delay: .1s; }
.animate-in:nth-child(2) { animation-delay: .22s; }
.animate-in:nth-child(3) { animation-delay: .34s; }
.animate-in:nth-child(4) { animation-delay: .46s; }
.animate-in:nth-child(5) { animation-delay: .58s; }
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:none; } }

/* ── Pain Section ─────────────────────────────────────────── */
.pain {
  padding: var(--py) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--t), transform var(--t);
}
.pain-card:hover { border-color: rgba(200,75,31,0.25); transform: translateY(-4px); }
.pain-icon {
  width: 44px; height: 44px;
  background: rgba(200,75,31,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 18px;
  margin-bottom: 16px;
}
.pain-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.pain-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.pain-cta {
  text-align: center;
  padding: 40px;
  background: rgba(200,75,31,0.06);
  border: 1px solid rgba(200,75,31,0.2);
  border-radius: var(--radius);
}
.pain-cta p {
  font-size: 17px; font-weight: 600; color: var(--text);
  max-width: 580px; margin: 0 auto 24px;
}

/* ── Bridge / Solution ────────────────────────────────────── */
.bridge { padding: var(--py) 0; }
.bridge-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.bridge-text h2 { margin-bottom: 18px; }
.bridge-text p  { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }
.bridge-list {
  display: flex; flex-direction: column; gap: 12px;
}
.bridge-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600;
}
.bridge-list li i { color: var(--accent); flex-shrink: 0; }

.bridge-visual {
  display: flex; align-items: stretch; gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.bridge-before, .bridge-after {
  flex: 1; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.bridge-before { border-right: 1px solid var(--border); }
.bridge-label {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 8px;
}
.bridge-label.before { color: var(--text-muted); }
.bridge-label.after  { color: var(--accent); }
.bridge-metric {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  padding: 9px 12px;
  border-radius: 8px;
}
.bridge-metric.red   { background: rgba(220,38,38,0.08); color: #f87171; }
.bridge-metric.green { background: rgba(22,163,74,0.1); color: #4ade80; }
.bridge-metric i     { flex-shrink: 0; font-size: 11px; }
.bridge-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  color: var(--accent); font-size: 18px;
  flex-shrink: 0;
}

/* ── Systems ──────────────────────────────────────────────── */
.systems {
  padding: var(--py) 0;
  background: var(--bg-2);
}
.systems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.system-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  position: relative; overflow: hidden;
}
.system-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(200,75,31,0.055), transparent 55%);
  opacity: 0; transition: opacity var(--t);
}
.system-card:hover::before { opacity: 1; }
.system-card:hover {
  border-color: rgba(200,75,31,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.system-header {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 12px; margin-bottom: 18px;
}
.system-icon {
  width: 48px; height: 48px;
  background: rgba(200,75,31,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 20px; flex-shrink: 0;
}
.system-result {
  font-size: 12px; font-weight: 700;
  color: #4ade80;
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.2);
  padding: 5px 12px; border-radius: 100px;
  white-space: nowrap;
}
.system-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.system-card > p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.system-features {
  display: flex; flex-direction: column; gap: 7px;
}
.system-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}
.system-features li i { color: var(--accent); font-size: 11px; flex-shrink: 0; }

.systems-footer {
  text-align: center;
  padding: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.systems-footer p {
  font-size: 16px; color: var(--text-muted);
  margin-bottom: 20px;
}

/* ── Results ──────────────────────────────────────────────── */
.results { padding: var(--py) 0; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color var(--t), transform var(--t);
}
.result-card:hover { border-color: rgba(200,75,31,0.3); transform: translateY(-4px); }
.result-number {
  display: flex; align-items: baseline; gap: 2px;
  margin-bottom: 12px;
}
.result-number .count,
.result-number span {
  font-size: 52px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--accent), #f07a4a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.result-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.result-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Testimonials strip */
.testimonials-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-strip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--t), transform var(--t);
}
.testi-strip-card:hover { border-color: rgba(200,75,31,0.25); transform: translateY(-4px); }
.testi-stars { display: flex; gap: 3px; color: #f59e0b; font-size: 14px; margin-bottom: 14px; }
.testi-strip-card > p {
  font-size: 14px; font-style: italic; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 20px;
}
.testi-strip-card > p::before { content: '"'; }
.testi-strip-card > p::after  { content: '"'; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(200,75,31,0.35); }
.testi-author strong { display: block; font-size: 14px; font-weight: 700; }
.testi-author span   { font-size: 12px; color: var(--text-muted); }

/* ── Process ──────────────────────────────────────────────── */
.process { padding: var(--py) 0; background: var(--bg-2); }
.process-steps {
  max-width: 780px; margin: 0 auto 56px;
  display: flex; flex-direction: column; gap: 0;
}
.process-step-v2 {
  display: flex; gap: 28px; position: relative;
}
.step-number-wrap {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; width: 56px;
}
.step-num {
  width: 56px; height: 56px;
  background: rgba(200,75,31,0.1);
  border: 1px solid rgba(200,75,31,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900;
  background: linear-gradient(135deg, var(--accent), #f07a4a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  border: 1.5px solid rgba(200,75,31,0.4);
  flex-shrink: 0;
}
.step-line {
  flex: 1; width: 1.5px;
  background: linear-gradient(to bottom, rgba(200,75,31,0.35), rgba(200,75,31,0.05));
  margin: 8px 0;
  min-height: 52px;
}
.step-content {
  padding-bottom: 52px; flex: 1;
}
.process-step-v2:last-child .step-content { padding-bottom: 0; }
.step-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); margin-bottom: 10px;
}
.step-content h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.step-content > p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.step-highlight {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  background: rgba(200,75,31,0.07);
  border: 1px solid rgba(200,75,31,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px; color: var(--text);
}
.step-highlight i { color: var(--accent); flex-shrink: 0; }

.process-cta { text-align: center; }
.process-cta p { font-size: 14px; color: var(--text-muted); margin-top: 14px; }

/* ── Who Is It For ────────────────────────────────────────── */
.who-for { padding: var(--py) 0; }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.who-list {
  display: flex; flex-direction: column; gap: 18px;
  margin-top: 16px;
}
.who-list li {
  display: flex; align-items: flex-start; gap: 14px;
}
.who-list li i.yes { color: #4ade80; font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.who-list li strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.who-list li span   { font-size: 13px; color: var(--text-muted); }

.who-no {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.no-tag { color: #f87171; background: rgba(220,38,38,0.08); border-color: rgba(220,38,38,0.2); }
.who-no-list {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 28px;
}
.who-no-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-muted);
}
.who-no-list li i.no { color: #f87171; flex-shrink: 0; }
.who-no-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.who-no-note i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.who-no-note p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── Main CTA / Contact ───────────────────────────────────── */
.main-cta { padding: var(--py) 0; background: var(--bg-2); }
.cta-box {
  background: var(--bg-card);
  border: 1px solid rgba(200,75,31,0.2);
  border-radius: 24px;
  padding: 64px 72px;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(200,75,31,0.1), transparent 65%);
  pointer-events: none;
}
.cta-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 24px;
}
.cta-badge strong { color: var(--accent); }
.cta-box h2 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 900;
  margin-bottom: 14px;
}
.cta-box > p {
  font-size: 16px; color: var(--text-muted);
  max-width: 600px; margin-bottom: 40px; line-height: 1.75;
}

/* Booking form */
.booking-form { position: relative; z-index: 1; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px; color: var(--text);
  outline: none; width: 100%;
  transition: border-color var(--t), background var(--t);
}
.form-input:focus {
  border-color: rgba(200,75,31,0.5);
  background: rgba(200,75,31,0.04);
}
.form-input::placeholder { color: rgba(167,170,187,0.5); }
.form-textarea { resize: vertical; min-height: 100px; }

.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-option {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  transition: var(--t);
}
.radio-option:has(input:checked) {
  border-color: var(--accent);
  background: rgba(200,75,31,0.08);
  color: var(--accent);
}
.radio-option input { display: none; }

.form-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
  margin-top: 14px; text-align: left;
}
.form-note i { color: var(--accent); flex-shrink: 0; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { padding: var(--py) 0; }
.faq-list {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color var(--t);
}
.faq-item.active { border-color: rgba(200,75,31,0.35); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 24px; background: none; border: none;
  color: var(--text); font-size: 15px; font-weight: 600;
  text-align: left; cursor: pointer; transition: color var(--t);
}
.faq-question:hover { color: var(--accent); }
.faq-icon { font-size: 13px; color: var(--accent); flex-shrink: 0; transition: transform .35s var(--ease); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .42s var(--ease); }
.faq-answer p { padding: 0 24px 22px; font-size: 15px; color: var(--text-muted); line-height: 1.75; }

.faq-cta { max-width: 780px; margin: 32px auto 0; text-align: center; }
.faq-cta p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 80px 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 48px; margin-bottom: 60px; }
/* FIX: footer logo height */
.footer-brand img { margin-bottom: 16px; height: 32px !important; width: auto !important; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 22px; max-width: 260px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px; transition: var(--t);
}
.social-links a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-muted); transition: color var(--t); }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.footer-contact-list li i { color: var(--accent); width: 14px; flex-shrink: 0; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 14px; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color var(--t); }
.footer-links a:hover { color: var(--accent); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .results-grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-strip  { grid-template-columns: 1fr 1fr; gap: 16px; }
  .bridge-inner        { grid-template-columns: 1fr; gap: 40px; }
  .footer-top          { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .systems-grid        { grid-template-columns: 1fr; }
  .testimonials-strip  { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .who-grid            { grid-template-columns: 1fr; }
  .footer-top          { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --py: 56px; }

  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: var(--bg); justify-content: center; align-items: center;
    gap: 32px; z-index: 999;
  }
  .nav-menu.open .nav-link { font-size: 24px; font-weight: 700; }

  .hero         { padding: 100px 0 64px; }
  .hero-title   { font-size: 36px; }
  .hero-proof   { flex-direction: column; padding: 20px; width: 100%; gap: 16px; }
  .proof-divider { width: 100%; height: 1px; }
  .proof-item   { padding: 0; }

  .pain-grid         { grid-template-columns: 1fr 1fr; }
  .systems-grid      { grid-template-columns: 1fr; }
  .results-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-top        { grid-template-columns: 1fr; gap: 28px; }
  .cta-box           { padding: 32px 24px; }
  .form-row          { grid-template-columns: 1fr; }
  .process-steps     { max-width: 100%; }
}

@media (max-width: 560px) {
  .results-grid { grid-template-columns: 1fr; }
  .pain-grid    { grid-template-columns: 1fr; }
  .hero-title   { font-size: 30px; }
  .hero-proof   { display: none; }
}
