/* ======= SELF-HOSTED FONTS ======= */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/dm-serif-display.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic; font-weight: 400; font-display: swap;
  src: url('../fonts/dm-serif-display-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 300 700; font-display: swap;
  src: url('../fonts/inter.woff2') format('woff2');
}

:root {
  --navy: #0D1B2A;
  --counsel: #1B4965;
  --copper: #B87333;
  --copper-dark: #A06329;
  --copper-light: #D4944F;
  --white: #F8F6F2;
  --silk: #E8E4DF;
  --ink: #2A2A2A;
  --stone: #7A7674;
  --pure: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body { font-family: 'Inter', sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; }

/* ======= UTILITY ======= */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--copper); margin-bottom: 12px; display: block; }
.section-title { font-family: 'DM Serif Display', serif; font-size: 42px; color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.section-subtitle { font-size: 18px; color: var(--stone); max-width: 620px; line-height: 1.65; }
.copper-line { width: 50px; height: 2px; background: var(--copper); margin: 20px 0; }
.copper-line-center { margin: 20px auto; }

.btn-primary {
  display: inline-block; padding: 16px 36px; background: var(--copper); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; text-decoration: none;
  border-radius: 6px; border: none; cursor: pointer; transition: background 0.2s;
}
.btn-primary:hover { background: var(--copper-dark); }
.btn-secondary {
  display: inline-block; padding: 16px 36px; background: transparent; color: var(--navy);
  font-size: 15px; font-weight: 500; text-decoration: none; border: 1.5px solid var(--navy);
  border-radius: 6px; transition: all 0.2s;
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

/* ======= NAV ======= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248,246,242,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--silk); transition: box-shadow 0.3s;
}
nav.nav-scrolled { box-shadow: 0 2px 20px rgba(13,27,42,0.08); }
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; height: 70px;
}
.nav-logo { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--navy); text-decoration: none; }
.nav-links { display: flex; gap: 28px; align-items: center; }

/* Mobile overlay — hidden by default, shown via JS toggle */
.nav-mobile {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: var(--navy); gap: 24px; z-index: 108;
}
.nav-mobile.nav-open { display: flex; }
.nav-mobile-close {
  position: absolute; top: 20px; right: 24px; background: none; border: none;
  font-size: 36px; color: var(--white); cursor: pointer; line-height: 1;
  opacity: 0.7; transition: opacity 0.2s;
}
.nav-mobile-close:hover { opacity: 1; }
.nav-mobile .nav-link { font-size: 22px; color: var(--white); font-weight: 500; text-decoration: none; }
.nav-mobile .nav-link:hover { color: var(--copper); }
.nav-mobile .nav-cta { text-align: center; padding: 16px 32px; font-size: 16px; margin-top: 16px; }
.nav-link { font-size: 14px; color: var(--stone); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-link:hover { color: var(--navy); }
.nav-cta { padding: 10px 24px; font-size: 13px; }

/* Burger menu */
.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 110;
}
.nav-burger span {
  display: block; width: 100%; height: 2px; background: var(--navy);
  position: absolute; left: 0; transition: all 0.3s;
}
.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 9px; }
.nav-burger span:nth-child(3) { top: 18px; }
.nav-burger.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ======= HERO ======= */
.hero {
  padding: 110px 0 60px; background: var(--white); position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background: var(--navy); clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; display: flex; align-items: center; gap: 60px; }
.hero-content { flex: 1; max-width: 580px; }
.hero-visual { flex: 0 0 420px; }

.hero-overline {
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 16px;
}
.hero-overline-mixed {
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  color: var(--copper); margin-bottom: 16px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif; font-size: 52px; color: var(--navy);
  line-height: 1.12; margin-bottom: 24px;
}
.hero h1 .highlight { color: var(--copper); }
.hero-sub { font-size: 19px; color: var(--stone); line-height: 1.6; margin-bottom: 36px; max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 28px; margin-top: 36px; padding-top: 24px;
  border-top: 1px solid var(--silk);
}
.hero-trust-item { font-size: 13px; color: var(--stone); display: flex; align-items: center; gap: 8px; }
.hero-trust-dot { width: 6px; height: 6px; background: var(--copper); border-radius: 50%; flex-shrink: 0; }

/* Hero visual — Variante A: photo + stat card */
.hero-visual { flex: 0 0 440px; }
.hero-photo-wrap { position: relative; }
.hero-photo {
  width: 380px; height: 480px; object-fit: cover; object-position: top center;
  border-radius: 12px; box-shadow: 0 20px 60px rgba(13,27,42,0.25);
  display: block; position: relative; z-index: 1;
}
.hero-photo-accent {
  position: absolute; bottom: -12px; left: -12px; width: 100px; height: 100px;
  border: 3px solid var(--copper); border-radius: 10px; z-index: 0;
}
.hero-photo-stat {
  position: absolute; bottom: 24px; right: -30px; background: var(--pure); border-radius: 10px;
  padding: 20px 24px; box-shadow: 0 12px 40px rgba(13,27,42,0.12); border-left: 3px solid var(--copper);
  z-index: 2;
}
.stat-num { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--copper); }
.stat-label { font-size: 12px; color: var(--stone); margin-top: 4px; }

/* ======= TRUST BAR ======= */
.trust-bar { background: var(--navy); padding: 32px 0; border-top: 2px solid var(--copper); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 40px; }
.trust-item { text-align: center; }
.trust-num { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--copper); line-height: 1; }
.trust-label { font-size: 12px; color: var(--stone); margin-top: 4px; line-height: 1.4; }
.trust-divider { width: 1px; height: 48px; background: rgba(248,246,242,0.1); }
.trust-companies { font-size: 11px; color: var(--stone); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 6px; }
.trust-logos { font-size: 14px; color: var(--white); font-weight: 500; }

/* ======= PAIN SECTION ======= */
.pain { background: var(--pure); }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 40px; }
.pain-card {
  padding: 32px; background: var(--white); border-radius: 10px;
  border: 1px solid var(--silk); position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pain-card:hover { border-color: var(--copper); box-shadow: 0 8px 30px rgba(13,27,42,0.06); }
.pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--copper); border-radius: 10px 10px 0 0; opacity: 0; transition: opacity 0.2s;
}
.pain-card:hover::before { opacity: 1; }
.pain-icon {
  width: 44px; height: 44px; background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--copper); margin-bottom: 16px; font-weight: 700;
}
.pain-card h3 { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.pain-card p { font-size: 14px; color: var(--stone); line-height: 1.6; }

/* ======= LEAD MAGNET ======= */
.leadmagnet {
  background: var(--navy); color: var(--white); position: relative; overflow: hidden;
}
.leadmagnet::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(27,73,101,0.3) 0%, transparent 55%);
}
.lm-inner {
  position: relative; z-index: 1; display: flex; align-items: center; gap: 60px;
}
.lm-content { flex: 1; }
.lm-visual { flex: 0 0 380px; }
.lm-badge {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--copper); background: rgba(184,115,51,0.12);
  padding: 6px 14px; border-radius: 20px; margin-bottom: 16px;
}
.lm-title { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.lm-sub { font-size: 16px; color: var(--stone); line-height: 1.65; margin-bottom: 24px; max-width: 480px; }
.lm-bullets { list-style: none; margin-bottom: 28px; }
.lm-bullets li {
  font-size: 15px; color: rgba(248,246,242,0.8); padding: 8px 0; padding-left: 24px;
  position: relative;
}
.lm-bullets li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 8px; height: 8px; background: var(--copper); border-radius: 50%;
}

/* Lead form */
.lm-form-full { display: flex; flex-direction: column; gap: 12px; }
.lm-form-row { display: flex; gap: 0; align-items: stretch; }
.lm-field { flex: 1; }
.lm-input {
  width: 100%; padding: 16px 20px; background: rgba(248,246,242,0.08); border: 1px solid rgba(248,246,242,0.15);
  border-radius: 6px 0 0 6px; font-size: 16px; color: var(--white); font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.2s;
}
.lm-input::placeholder { color: var(--stone); }
.lm-input:focus { border-color: var(--copper); }
.lm-submit { width: 100%; text-align: center; }
.lm-submit-inline { width: auto; flex-shrink: 0; padding: 16px 32px; border-radius: 0 6px 6px 0; white-space: nowrap; }
.lm-form-msg { padding: 12px 16px; border-radius: 6px; font-size: 14px; margin-top: 8px; }
.lm-msg-success { background: rgba(76,175,80,0.15); color: #81c784; }
.lm-msg-error { background: rgba(244,67,54,0.15); color: #ef9a9a; }

/* Lead magnet mockup */
.lm-mockup {
  background: var(--pure); border-radius: 12px; padding: 36px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3); transform: rotate(2deg);
}
.lm-mockup-title { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.lm-mockup-line { height: 6px; background: var(--silk); border-radius: 3px; margin-bottom: 8px; }
.lm-mockup-line:nth-child(3) { width: 85%; }
.lm-mockup-line:nth-child(4) { width: 70%; }
.lm-mockup-copper { height: 6px; background: var(--copper); border-radius: 3px; width: 40%; margin: 16px 0; }
.lm-mockup-line-sm { height: 4px; background: var(--silk); border-radius: 2px; margin-bottom: 6px; }
.lm-mockup-line-sm:nth-child(odd) { width: 90%; }
.lm-mockup-line-sm:nth-child(even) { width: 75%; }
.lm-legal { font-size: 11px; color: var(--stone); margin-top: 12px; }

/* ======= SERVICES ======= */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.service-card {
  background: var(--pure); border-radius: 12px; padding: 44px 40px; position: relative;
  border: 1px solid var(--silk); overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover { box-shadow: 0 16px 48px rgba(13,27,42,0.08); transform: translateY(-2px); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.service-card:nth-child(1)::before { background: var(--copper); }
.service-card:nth-child(2)::before { background: var(--counsel); }
.service-card-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 12px;
}
.service-card:nth-child(1) .service-card-label { color: var(--copper); }
.service-card:nth-child(2) .service-card-label { color: var(--counsel); }
.service-card h3 { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.service-card p { font-size: 15px; color: var(--stone); line-height: 1.6; margin-bottom: 20px; }
.service-list { list-style: none; }
.service-list li {
  font-size: 14px; color: var(--ink); padding: 8px 0; padding-left: 20px; position: relative;
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 15px;
  width: 6px; height: 6px; border-radius: 50%;
}
.service-card:nth-child(1) .service-list li::before { background: var(--copper); }
.service-card:nth-child(2) .service-list li::before { background: var(--counsel); }

/* ======= METHOD ======= */
.method { background: var(--navy); color: var(--white); text-align: center; }
.method-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 0; margin-top: 48px; }
.method-phase { text-align: center; padding: 0 20px; }
.method-circle {
  width: 80px; height: 80px; border-radius: 50%; background: var(--counsel);
  border: 2px solid var(--copper); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--white);
}
.method-name { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--white); margin-bottom: 8px; }
.method-desc { font-size: 13px; color: var(--stone); line-height: 1.5; max-width: 200px; margin: 0 auto; }
.method-connector { width: 60px; height: 2px; background: var(--copper); }
.method-quote {
  font-family: 'DM Serif Display', serif; font-style: italic; font-size: 20px;
  color: rgba(248,246,242,0.45); max-width: 500px; margin: 48px auto 0; line-height: 1.5;
}

/* ======= AUTHORITY ======= */
.authority { background: var(--pure); }
.auth-inner { display: flex; gap: 60px; align-items: center; }
.auth-photo {
  flex: 0 0 320px; height: 400px; background: var(--navy); border-radius: 12px;
  position: relative; overflow: hidden;
}
.auth-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.auth-photo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--copper);
}
.auth-content { flex: 1; }
.auth-content h2 { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--navy); margin-bottom: 20px; line-height: 1.2; }
.auth-content p { font-size: 16px; color: var(--stone); line-height: 1.65; margin-bottom: 16px; }
.auth-stats { display: flex; gap: 40px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--silk); }
.auth-stat-num { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--copper); }
.auth-stat-label { font-size: 12px; color: var(--stone); margin-top: 4px; }

.auth-credentials { margin: 20px 0 24px; }
.auth-cred-item { display: flex; align-items: baseline; gap: 10px; font-size: 14px; color: var(--ink); padding: 6px 0; }
.auth-cred-icon { color: var(--copper); font-size: 8px; flex-shrink: 0; margin-top: 2px; }
.auth-linkedin {
  display: inline-block; margin-top: 20px; font-size: 14px; color: var(--copper);
  text-decoration: none; font-weight: 500; transition: color 0.2s;
}
.auth-linkedin:hover { color: var(--copper-dark); }

/* ======= CASE STUDIES ======= */
.casestudies { background: var(--navy); }
.casestudies .section-title { color: var(--white); }
.cs-list { max-width: 860px; margin: 0 auto; }
.cs-item { border-bottom: 1px solid rgba(248,246,242,0.08); }
.cs-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0; cursor: pointer; gap: 20px;
}
.cs-header:hover .cs-toggle { color: var(--white); }
.cs-header-left { flex: 1; }
.cs-tag {
  display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--copper); background: rgba(184,115,51,0.12);
  padding: 4px 10px; border-radius: 4px; margin-bottom: 8px;
}
.cs-header h3 { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--white); line-height: 1.3; margin-bottom: 4px; }
.cs-context { font-size: 13px; color: var(--stone); }
.cs-toggle { font-size: 28px; color: var(--copper); transition: all 0.2s; flex-shrink: 0; }
.cs-body { display: none; padding: 0 0 32px; }
.cs-item.cs-open .cs-body { display: block; }
.cs-item.cs-open .cs-toggle { transform: rotate(45deg); }
.cs-detail { margin-bottom: 20px; }
.cs-detail h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--copper); margin-bottom: 8px; }
.cs-detail p { font-size: 15px; color: var(--stone); line-height: 1.6; }
.cs-detail ul { list-style: none; padding: 0; }
.cs-detail li { font-size: 14px; color: rgba(248,246,242,0.75); padding: 5px 0 5px 20px; position: relative; line-height: 1.5; }
.cs-detail li::before { content: ''; position: absolute; left: 0; top: 13px; width: 6px; height: 6px; background: var(--copper); border-radius: 50%; }
.cs-results { display: flex; gap: 24px; padding: 20px 0; border-top: 1px solid rgba(248,246,242,0.06); }
.cs-result { flex: 1; text-align: center; }
.cs-result-num { display: block; font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--copper); margin-bottom: 4px; }
.cs-result span:last-child { font-size: 12px; color: var(--stone); }
.testimonial-meta a { color: var(--copper); text-decoration: none; }
.testimonial-meta a:hover { text-decoration: underline; }

/* ======= COMPARISON MATRIX ======= */
.matrix { background: var(--navy); }
.matrix .section-title { color: var(--white); }
.matrix-table-wrap { overflow-x: auto; margin-top: 0; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.matrix-table { width: 100%; border-collapse: collapse; background: rgba(248,246,242,0.03); }
.matrix-table thead th {
  padding: 24px 20px; font-size: 14px; font-weight: 600; text-align: center;
  color: var(--stone); letter-spacing: 0.05em; border-bottom: 2px solid rgba(248,246,242,0.06);
}
.matrix-cap-col { width: 280px; }
.matrix-col-ai, .matrix-col-firm { background: rgba(0,0,0,0.15); }
.matrix-col-ch {
  background: var(--copper) !important; color: var(--white) !important;
  font-family: 'DM Serif Display', serif; font-size: 16px !important; letter-spacing: 0;
}
.matrix-table tbody td {
  padding: 18px 20px; border-bottom: 1px solid rgba(248,246,242,0.04);
  text-align: center; font-size: 14px; vertical-align: middle;
}
.matrix-cap {
  text-align: left !important; font-size: 14px; font-weight: 500; color: var(--white);
  padding-left: 28px !important;
}
.matrix-no { background: rgba(0,0,0,0.12); }
.matrix-yes { background: rgba(0,0,0,0.12); }
.matrix-partial { background: rgba(0,0,0,0.12); }
.matrix-highlight { background: rgba(184,115,51,0.08); }
.mx-icon { display: inline-block; width: 28px; height: 28px; line-height: 28px; border-radius: 50%; font-size: 16px; font-weight: 700; }
.mx-x { background: rgba(239,83,80,0.15); color: #ef5350; }
.mx-check { background: rgba(76,175,80,0.15); color: #66bb6a; }
.mx-tilde { background: rgba(255,183,77,0.15); color: #ffb74d; font-size: 18px; }
.mx-detail { display: block; font-size: 11px; color: var(--stone); margin-top: 4px; }
.matrix-highlight .mx-detail { color: var(--copper-light); }

.matrix-table tbody tr:hover td { background: rgba(248,246,242,0.03); }
.matrix-table tbody tr:hover .matrix-highlight { background: rgba(184,115,51,0.15); }

/* Mobile matrix — hidden on desktop */
.matrix-mobile { display: none; }

/* ======= FAQ ======= */
.faq { background: var(--pure); }
.faq-list { max-width: 760px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--silk); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer; font-size: 17px; font-weight: 600; color: var(--navy);
}
.faq-q:hover { color: var(--copper); }
.faq-toggle { font-size: 24px; color: var(--copper); transition: transform 0.2s; }
.faq-a { padding: 0 0 24px; font-size: 15px; color: var(--stone); line-height: 1.65; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ======= FINAL CTA ======= */
.final-cta {
  background: var(--navy); text-align: center; padding: 80px 0; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(27,73,101,0.25) 0%, transparent 60%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta-mono {
  width: 90px; height: 90px; border: 1.5px solid var(--copper); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 32px;
  font-family: 'DM Serif Display', serif; font-size: 30px; color: var(--copper);
}
.final-cta h2 { font-family: 'DM Serif Display', serif; font-size: 42px; color: var(--white); margin-bottom: 16px; }
.final-cta p { font-size: 17px; color: var(--stone); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.final-cta .btn-primary { font-size: 17px; padding: 18px 44px; }
.final-cta-or { font-size: 14px; color: var(--stone); margin: 16px auto !important; text-align: center; max-width: none; }
.final-cta-sub { font-size: 13px; color: var(--stone); margin-top: 20px !important; }

/* ======= FOOTER ======= */
footer {
  background: var(--navy); border-top: 1px solid rgba(248,246,242,0.06); padding: 48px 0 32px;
}
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--white); margin-bottom: 4px; }
.footer-claim { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 13px; color: var(--copper); margin-bottom: 12px; }
.footer-contact { font-size: 13px; color: var(--stone); line-height: 1.8; }
.footer-contact a { color: var(--stone); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--copper); }
.footer-links a { display: block; font-size: 13px; color: var(--stone); text-decoration: none; padding: 4px 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--copper); }
.footer-bottom { text-align: center; margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(248,246,242,0.06); font-size: 11px; color: rgba(248,246,242,0.25); }

/* ======= MODALS ======= */
.modal-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,27,42,0.85); z-index: 1000; justify-content: center; align-items: center;
  padding: 24px; overflow-y: auto;
}
.modal-overlay.modal-open { display: flex; }
.modal-box {
  background: var(--pure); border-radius: 12px; max-width: 680px; width: 100%;
  max-height: 85vh; overflow-y: auto; padding: 48px; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.modal-close {
  position: absolute; top: 16px; right: 20px; background: none; border: none;
  font-size: 28px; color: var(--stone); cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--navy); }
.modal-box h2 {
  font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--navy);
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--copper);
}
.modal-content h3 {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 600;
  color: var(--navy); margin: 24px 0 8px;
}
.modal-content h4 {
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--ink); margin: 16px 0 6px;
}
.modal-content p { font-size: 15px; color: var(--stone); line-height: 1.65; margin-bottom: 12px; }
.modal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 12px; }
.modal-content li { font-size: 14px; color: var(--stone); line-height: 1.6; padding: 2px 0; }

/* ======= RESPONSIVE ======= */
@media (max-width: 900px) {
  .nav-burger { display: block; z-index: 120; }
  .nav-links-desktop { display: none !important; }
  .nav-burger.open span { background: var(--white); }

  .hero .container { flex-direction: column; }
  .hero-visual { flex: none; width: 100%; display: block; }
  .hero-photo-wrap { display: flex; justify-content: center; }
  .hero-photo { width: 100%; max-width: 320px; height: 400px; border-radius: 12px; }
  .hero-photo-accent { display: none; }
  .hero-photo-stat { right: 10px; bottom: 16px; }
  .hero::after { display: none; }
  .hero { padding: 100px 0 48px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 17px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 30px; }
  .pain-grid { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr; }
  .lm-inner { flex-direction: column; }
  .lm-visual { display: none; }
  .lm-form-row { flex-direction: column; gap: 12px; }
  .lm-input { border-radius: 6px; }
  .lm-submit-inline { width: 100%; border-radius: 6px; }
  .lm-title { font-size: 28px; }
  .method-grid { grid-template-columns: 1fr; gap: 24px; }
  .method-connector { width: 2px; height: 40px; margin: 0 auto; }
  .trust-inner { flex-wrap: wrap; gap: 24px; }
  .trust-divider { display: none; }
  .trust-item { flex: 1 1 120px; }
  .auth-inner { flex-direction: column; }
  .auth-photo { flex: none; width: 100%; height: 340px; }
  .auth-photo img { object-position: top center; }
  .auth-content h2 { font-size: 28px; }
  .auth-stats { flex-wrap: wrap; gap: 24px; }
  .cs-results { flex-direction: column; gap: 16px; }
  .cs-header h3 { font-size: 18px; }
  .matrix-table-wrap { margin: 0 -24px; padding: 0 24px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .matrix-table { min-width: 600px; }
  .matrix-cap-col { width: 160px; }
  .matrix-cap { font-size: 12px !important; padding-left: 12px !important; }
  .matrix-table thead th { font-size: 11px; padding: 14px 10px; }
  .matrix-table tbody td { padding: 12px 10px; }
  .mx-detail { font-size: 10px; }
  .diff-col { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 32px; text-align: center; align-items: center; }
  .footer-links { text-align: center; }
  .footer-contact { text-align: center; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .final-cta h2 { font-size: 30px; }
  .final-cta .btn-primary { font-size: 15px; padding: 16px 32px; width: 100%; text-align: center; }
  .final-cta .btn-secondary { display: block; margin: 8px auto; text-align: center; }
  .final-cta span[style*="inline-block"] { display: none !important; }
  .final-cta-or { margin: 12px 0 !important; }
  .modal-box { padding: 32px 24px; }
  .modal-box h2 { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { text-align: center; }
  .section-title { font-size: 26px; }
  .service-card { padding: 28px 24px; }
  .service-card h3 { font-size: 22px; }
}

body.home { margin: 0; padding: 0; }

/* ======= COOKIE BANNER ======= */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--navy); border-top: 2px solid var(--copper);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.2);
}
.cookie-inner {
  max-width: 1140px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; gap: 24px;
}
.cookie-text { flex: 1; }
.cookie-text strong { display: block; color: var(--white); font-size: 15px; margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: var(--stone); line-height: 1.5; margin: 0; }
.cookie-text a { color: var(--copper); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept { padding: 12px 28px; font-size: 14px; }
.cookie-decline {
  padding: 12px 28px; background: transparent; border: 1px solid rgba(248,246,242,0.2);
  color: var(--stone); font-size: 14px; font-family: 'Inter', sans-serif;
  border-radius: 6px; cursor: pointer; transition: all 0.2s;
}
.cookie-decline:hover { border-color: var(--white); color: var(--white); }

@media (max-width: 900px) {
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-buttons { width: 100%; justify-content: center; }
}
