:root {
  --bg:             #FAF9F7;
  --bg-alt:         #F4F2EE;
  --bg-dark:        #1B2A4A;
  --fg:             #1B2A4A;
  --fg-muted:       #4A5A72;
  --fg-light:       #7A8A9A;
  --accent:         #C9A84C;
  --accent-light:   #F2E8C8;
  --navy:           #1B2A4A;
  --navy-mid:       #263D6B;
  --slate:          #3A5070;
  --border:         #E4DFD7;
  --border-light:   #EDE8E0;
  --white:          #ffffff;
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --radius:         8px;
  --radius-lg:      16px;
  --shadow-sm:      0 1px 3px rgba(27,42,74,0.06);
  --shadow-md:      0 4px 16px rgba(27,42,74,0.09);
  --shadow-lg:      0 12px 40px rgba(27,42,74,0.12);
  --max-width:      1120px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--bg-alt);
}

.btn-gold {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-gold:hover {
  background: #b8922d;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,249,247,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.nav-logo span { color: var(--accent); }

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1.3;
  max-width: 260px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--navy-mid) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  padding: 7rem 2rem 6rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-inner { max-width: 700px; }

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.825rem;
  color: var(--accent);
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  font-size: 0.825rem;
  color: var(--fg-light);
  letter-spacing: 0.04em;
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--bg-alt);
  padding: 6rem 2rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.problem-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.problem-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.problem-header p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.risk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.risk-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

.risk-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.risk-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.65rem;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.risk-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== SOLUTION ===== */
.solution {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.solution-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.solution-text p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.solution-text p:last-of-type { margin-bottom: 2rem; }

.solution-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.solution-checklist li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.solution-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.solution-aside {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.solution-aside-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: block;
}

.solution-aside h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.review-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.review-list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.review-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.solution-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
}

/* ===== AUDIT INCLUDES ===== */
.audit-includes {
  background: var(--bg-alt);
  padding: 6rem 2rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.audit-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.audit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.audit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.audit-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.audit-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg-cream);
  border-radius: var(--radius);
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.audit-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.audit-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.audit-card p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== DELIVERABLES ===== */
.deliverables {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.deliverable-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.deliverable-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

.deliverable-icon {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.deliverable-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.deliverable-card p {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ===== RETAINER ===== */
.retainer {
  background: var(--navy);
  padding: 6rem 2rem;
}

.retainer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.retainer-text .section-label { color: var(--accent); }

.retainer-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.retainer-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.retainer-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.retainer-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.retainer-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.retainer-period {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.retainer-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.retainer-includes li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.retainer-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.retainer-note {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

/* ===== PRICING ===== */
.pricing {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.price-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.price-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

.price-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  padding: 0.3rem 0.9rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

.price-tier {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.price-card h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.price-chart-count {
  font-size: 0.825rem;
  color: var(--fg-muted);
  margin-top: 0.35rem;
}

.price-divider {
  height: 1px;
  background: var(--border-light);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.price-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.45;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.price-best-for {
  font-size: 0.78rem;
  color: var(--fg-light);
  font-style: italic;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

/* ===== ADD-ONS ===== */
.addons {
  background: var(--bg-alt);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.addons-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.addon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.addon-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.addon-card h3 {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.addon-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.addon-card p {
  font-size: 0.825rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ===== DIGITAL PRODUCTS ===== */
.products {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.products-header {
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.products-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.products-header p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.product-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.product-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.product-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.product-info p {
  font-size: 0.825rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.product-bundle {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.bundle-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.bundle-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.bundle-price-block {
  text-align: right;
  flex-shrink: 0;
}

.bundle-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.bundle-savings {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--bg-alt);
  padding: 6rem 2rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.how-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.how-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.how-header p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.65rem;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials-header {
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.testimonials-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.testimonials-header p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }

.testimonial-meta {
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.testimonial-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--fg-light);
  margin-top: 0.2rem;
}

/* ===== CLOSING CTA ===== */
.closing {
  background: var(--navy);
  padding: 6rem 2rem;
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing .section-label { color: var(--accent); }

.closing h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 0.35rem;
}

.footer-tagline {
  font-size: 0.825rem;
  color: var(--fg-light);
}

.footer-contact {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.footer-contact a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}
.footer-contact a:hover { color: var(--accent); }

.footer-note {
  font-size: 0.8rem;
  color: var(--fg-light);
  font-style: italic;
  max-width: 280px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-light);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .deliverables-grid { grid-template-columns: repeat(3, 1fr); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .risk-grid { grid-template-columns: 1fr 1fr; }
  .solution-inner { grid-template-columns: 1fr; gap: 3rem; }
  .audit-grid { grid-template-columns: 1fr 1fr; }
  .retainer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product-bundle { flex-direction: column; text-align: left; }
  .bundle-price-block { text-align: left; }
}

@media (max-width: 700px) {
  .hero { padding: 5rem 1.25rem 4rem; }
  .problem, .solution, .audit-includes, .deliverables, .retainer, .pricing, .addons, .products, .how-it-works, .testimonials, .closing { padding: 4.5rem 1.25rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .nav-inner { padding: 0.9rem 1.25rem; }
  .nav-links { display: none; }
  .risk-grid { grid-template-columns: 1fr; }
  .audit-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .closing-actions { flex-direction: column; }
}
