/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #333; background: #fff; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── Variables ───────────────────────────────────────────── */
:root {
  --navy:  #1B2A4A;
  --gold:  #B8972A;
  --gold2: #d4a82e;
  --light: #EEF2F7;
  --gray:  #555;
  --lgray: #f5f7fa;
}

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--gold); color: #fff; }
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 620px;
}

/* ── Nav ─────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 116px;
}
.logo { display: flex; align-items: center; }
.logo svg { height: 100px; width: auto; }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-size: 1.2rem; color: rgba(255,255,255,0.95); font-weight: 700; white-space: nowrap; }
.nav-phone span { color: var(--gold); }
.nav-cta .btn-primary { padding: 10px 24px; font-size: 0.9rem; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0e1a30 0%, #1B2A4A 60%, #243660 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(184,151,42,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,151,42,0.15);
  border: 1px solid rgba(184,151,42,0.4);
  border-radius: 20px;
  padding: 6px 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before { content: '⚖️'; font-size: 1rem; }
.hero h1 {
  font-size: 2.85rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-kw-line {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  margin-top: -10px;
  letter-spacing: 0.2px;
}
.hero-kw-line strong { color: rgba(255,255,255,0.8); font-weight: 700; }
.hero-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}

/* Audit Card */
.audit-card {
  background: #fff;
  border-radius: 10px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
}
.audit-card::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: 0; left: 0; right: 0;
}
.card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.card-sub {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.5;
}
.form-group { margin-bottom: 14px; }
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #dde3ed;
  border-radius: 5px;
  font-size: 0.95rem;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-group input:focus, .form-group select:focus { border-color: var(--navy); }
.form-group select { color: #555; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  letter-spacing: 0.3px;
}
.form-submit:hover { background: var(--gold2); }
.form-privacy {
  font-size: 0.72rem;
  color: #aaa;
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}
.form-success {
  background: #eafaf1;
  border: 1.5px solid #27ae60;
  color: #1a7a42;
  border-radius: 6px;
  padding: 16px 18px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.form-errors {
  background: #fff5f5;
  border: 1.5px solid #e74c3c;
  color: #c0392b;
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}
.form-errors ul { padding-left: 18px; }
.form-errors ul li { margin-bottom: 4px; }

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--lgray);
  border-top: 1px solid #e5e9f0;
  border-bottom: 1px solid #e5e9f0;
  padding: 22px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 32px;
  border-right: 1px solid #dde3ed;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.2rem; }

/* ── Insight Strip ───────────────────────────────────────── */
.insight-strip {
  background: var(--navy);
  padding: 32px 0;
  border-top: 1px solid rgba(184,151,42,0.2);
  border-bottom: 1px solid rgba(184,151,42,0.2);
}
.insight-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.insight-quote-mark {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  font-family: Georgia, serif;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -8px;
}
.insight-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
  max-width: 780px;
  font-style: italic;
}
.insight-text span { color: var(--gold); font-style: normal; }

/* ── Problem Section ─────────────────────────────────────── */
.problem { padding: 80px 0; background: #fff; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pain-list { list-style: none; margin-top: 28px; }
.pain-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #edf0f5;
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.5;
}
.pain-list li:last-child { border-bottom: none; }
.pain-icon {
  width: 28px;
  height: 28px;
  background: #fdf0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.solution-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 44px 40px;
  color: #fff;
}
.solution-box .section-label { color: var(--gold); }
.solution-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}
.solution-box p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}
.solution-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.stat-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
}
.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  line-height: 1.3;
}

/* ── Real Difference ──────────────────────────────────────── */
.real-diff { padding: 80px 0; background: #fff; }
.real-diff-header { text-align: center; margin-bottom: 56px; }
.real-diff-header .section-sub { margin: 0 auto; }
.diff-cols {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  align-items: stretch;
}
.diff-col { display: flex; flex-direction: column; gap: 0; }
.diff-col-header {
  padding: 18px 28px;
  border-radius: 10px 10px 0 0;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}
.diff-col-header.them { background: #f0f0f0; color: #888; }
.diff-col-header.us   { background: var(--navy); color: var(--gold); }
.diff-item {
  padding: 20px 28px;
  border-bottom: 1px solid #edf0f5;
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
  display: flex;
  align-items: center;
}
.diff-item.them {
  background: #fafafa;
  color: #888;
  border-left: 1px solid #edf0f5;
  border-right: 1px solid #edf0f5;
}
.diff-item.us {
  background: var(--lgray);
  color: var(--navy);
  font-weight: 600;
  border-left: 2px solid var(--gold);
}
.diff-item.them::before { content: '✗  '; color: #ccc; font-weight: 900; margin-right: 4px; }
.diff-item.us::before   { content: '✓  '; color: var(--gold); font-weight: 900; margin-right: 4px; }
.diff-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.diff-divider::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: #edf0f5;
}
.diff-vs {
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1px;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ── How It Works ────────────────────────────────────────── */
.how { background: var(--lgray); padding: 80px 0; }
.how-header { text-align: center; margin-bottom: 56px; }
.how-header .section-sub { margin: 0 auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 36px);
  right: calc(16.67% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold));
  opacity: 0.3;
}
.step {
  background: #fff;
  border-radius: 10px;
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(27,42,74,0.07);
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── Services / Packages ─────────────────────────────────── */
.services { padding: 80px 0; background: #fff; }
.services-header { text-align: center; margin-bottom: 56px; }
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.package {
  border: 2px solid #e5e9f0;
  border-radius: 10px;
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.package:hover { border-color: var(--navy); box-shadow: 0 8px 30px rgba(27,42,74,0.1); }
.package.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(184,151,42,0.2);
}
.featured-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pkg-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.pkg-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-period { font-size: 0.85rem; color: #999; margin-bottom: 20px; }
.pkg-divider { height: 1px; background: #edf0f5; margin: 20px 0; }
.pkg-features { list-style: none; }
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray);
  padding: 7px 0;
  line-height: 1.4;
}
.pkg-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.pkg-cta { margin-top: 28px; width: 100%; text-align: center; display: block; }

/* ── Practice Areas ──────────────────────────────────────── */
.areas { background: var(--navy); padding: 72px 0; }
.areas-header { text-align: center; margin-bottom: 48px; }
.areas-header .section-title { color: #fff; }
.areas-header .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.area-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s, border-color 0.2s;
}
.area-card:hover { background: rgba(184,151,42,0.12); border-color: rgba(184,151,42,0.4); }
.area-icon { font-size: 1.8rem; flex-shrink: 0; }
.area-name { font-size: 0.97rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.area-val { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ── Why Us ──────────────────────────────────────────────── */
.why { padding: 80px 0; background: var(--lgray); }
.why-header { text-align: center; margin-bottom: 56px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(27,42,74,0.06);
}
.why-icon-wrap {
  width: 52px; height: 52px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.why-card h4 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ── Founder ─────────────────────────────────────────────── */
.founder { padding: 80px 0; background: #fff; border-top: 1px solid #edf0f5; }
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: flex-start;
}
.founder-photo-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.founder-photo-placeholder {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #2e4a80 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  border: 5px solid var(--gold);
  box-shadow: 0 8px 32px rgba(27,42,74,0.18);
  letter-spacing: 2px;
}
.founder-title-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
  width: 100%;
}
.ftc-name { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.ftc-role { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.ftc-tag {
  display: inline-block;
  background: rgba(184,151,42,0.2);
  border: 1px solid rgba(184,151,42,0.5);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.founder-body { font-size: 1rem; color: var(--gray); line-height: 1.75; margin-bottom: 18px; }
.founder-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--lgray);
  border-radius: 8px;
  padding: 14px 16px;
}
.cred-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.cred-text { font-size: 0.84rem; color: var(--navy); font-weight: 600; line-height: 1.4; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials { padding: 80px 0; background: #fff; }
.test-header { text-align: center; margin-bottom: 48px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card {
  border: 1.5px solid #e5e9f0;
  border-radius: 10px;
  padding: 28px;
  position: relative;
}
.test-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 8px; left: 16px;
  line-height: 1;
  font-family: Georgia, serif;
}
.test-stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 12px; }
.test-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 800;
}
.test-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.test-firm { font-size: 0.78rem; color: #999; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { padding: 80px 0; background: var(--lgray); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header .section-sub { margin: 0 auto; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: 8px;
  border: 1.5px solid #e5e9f0;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:has(.faq-toggle:checked) { border-color: var(--gold); }
.faq-toggle { display: none; }
.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  gap: 16px;
  user-select: none;
}
.faq-label:hover { color: var(--gold); }
.faq-arrow {
  width: 28px; height: 28px;
  background: var(--lgray);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--navy);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.25s;
}
.faq-toggle:checked ~ .faq-label .faq-arrow {
  background: var(--gold);
  color: #fff;
  transform: rotate(180deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  padding: 0 24px;
}
.faq-toggle:checked ~ .faq-body { max-height: 300px; padding: 0 24px 20px; }
.faq-kw { font-weight: 700; color: var(--navy); }

/* ── Final CTA ───────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, #0e1a30 0%, #1B2A4A 100%);
  padding: 90px 0;
  text-align: center;
}
.final-cta h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.final-cta h2 span { color: var(--gold); }
.final-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.final-cta .btn-primary { font-size: 1.1rem; padding: 18px 48px; }
.final-cta-note { margin-top: 18px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: #0e1624;
  padding: 36px 0;
  border-top: 2px solid var(--gold);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo svg { height: 46px; width: auto; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ── Responsive ─────────────────────────────────────────── */

/* Tablet — 900px */
@media (max-width: 900px) {
  .section-title { font-size: 1.75rem; }
  .nav-inner { height: 96px; }
  .logo svg { height: 80px; }
  .nav-phone { font-size: 1.05rem; }
  .nav-cta .btn-primary { padding: 9px 18px; font-size: 0.85rem; }
  .hero { padding: 56px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-desc { font-size: 1rem; }
  .audit-card { max-width: 100%; }
  .insight-strip { padding: 24px 0; }
  .insight-quote-mark { display: none; }
  .insight-text { font-size: 1.05rem; }
  .trust-items { flex-direction: column; align-items: stretch; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid #dde3ed; padding: 12px 20px; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
  .problem { padding: 56px 0; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .real-diff { padding: 56px 0; }
  .diff-cols { grid-template-columns: 1fr; gap: 0; }
  .diff-divider { display: none; }
  .diff-col-header.them { border-radius: 10px 10px 0 0; }
  .diff-col-header.us { border-radius: 10px 10px 0 0; margin-top: 28px; }
  .diff-item { padding: 16px 20px; }
  .how { padding: 56px 0; }
  .steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps::before { display: none; }
  .services { padding: 56px 0; }
  .packages { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .areas { padding: 56px 0; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .why { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .founder { padding: 56px 0; }
  .founder-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-photo-wrap { flex-direction: row; align-items: center; gap: 20px; }
  .founder-photo-placeholder { width: 110px; height: 110px; font-size: 2rem; flex-shrink: 0; }
  .founder-title-card { flex: 1; text-align: left; padding: 16px 18px; }
  .founder-credentials { grid-template-columns: 1fr; }
  .testimonials { padding: 56px 0; }
  .test-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .final-cta { padding: 64px 0; }
  .final-cta h2 { font-size: 1.9rem; }
  .final-cta .btn-primary { font-size: 1rem; padding: 16px 36px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-links { justify-content: center; }
}

/* Mobile — 580px */
@media (max-width: 580px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 1.5rem; }
  .section-sub { font-size: 0.95rem; }
  .nav-inner { height: 80px; }
  .logo svg { height: 62px; }
  .nav-phone { font-size: 1rem; }
  .hero { padding: 40px 0 36px; }
  .hero h1 { font-size: 1.65rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { text-align: center; width: 100%; }
  .hero-badge { font-size: 0.7rem; }
  .insight-text { font-size: 0.95rem; }
  .solution-stats { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.6rem; }
  .diff-col-header { padding: 14px 16px; font-size: 0.75rem; }
  .diff-item { font-size: 0.84rem; padding: 14px 16px; }
  .steps { max-width: 100%; }
  .packages { max-width: 100%; }
  .package { padding: 28px 20px; }
  .pkg-price { font-size: 2rem; }
  .area-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 24px 20px; }
  .founder-photo-wrap { flex-direction: column; align-items: center; }
  .founder-photo-placeholder { width: 120px; height: 120px; }
  .founder-title-card { width: 100%; text-align: center; }
  .founder-credentials { grid-template-columns: 1fr; }
  .founder-body { font-size: 0.95rem; }
  .test-grid { max-width: 100%; }
  .test-card { padding: 24px 20px; }
  .final-cta { padding: 48px 0; }
  .final-cta h2 { font-size: 1.55rem; }
  .final-cta .btn-primary { width: 100%; text-align: center; font-size: 1rem; padding: 16px 24px; }
  .audit-card { padding: 28px 20px; }
  .form-group input,
  .form-group select { font-size: 16px; }
  .faq { padding: 48px 0; }
  .faq-label { font-size: 0.92rem; padding: 16px 18px; }
  .faq-body { padding: 0 18px; }
  .faq-toggle:checked ~ .faq-body { padding: 0 18px 16px; }
}

/* Very small — 380px */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.45rem; }
  .section-title { font-size: 1.3rem; }
  .pkg-price { font-size: 1.75rem; }
  .solution-stats { grid-template-columns: 1fr; }
  .nav-cta .btn-primary { padding: 8px 14px; font-size: 0.8rem; }
  .nav-phone { display: none; }
  .nav-inner { height: 70px; }
  .logo svg { height: 52px; }
}
