/* ═══════════════════════════════════════════
   INTERSECTION LEGAL — Homepage Mockup
   Colors: Navy #1B2A4A · Gold #C9A961 · White
   ═══════════════════════════════════════════ */

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

:root {
  --navy: #1B2A4A;
  --navy-light: #243557;
  --navy-dark: #111D33;
  --gold: #C9A961;
  --gold-light: #D4BA7A;
  --gold-dark: #B8944A;
  --white: #FFFFFF;
  --off-white: #F7F5F2;
  --gray-100: #F0EDEA;
  --gray-200: #E0DCD7;
  --gray-400: #9A9590;
  --gray-600: #6B6560;
  --gray-800: #3D3832;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max-width: 1200px;
  --section-pad: 100px;
}

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

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; }

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,169,97,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27,42,74,0.3);
}

.btn-whatsapp {
  background: #128C7E;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #075E54;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(18,140,126,0.3);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.3s ease;
}

.nav.transparent { background: transparent; }
.nav.solid {
  background: rgba(27,42,74,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-brand span { color: var(--gold); }

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 8px 20px !important;
  font-size: 0.82rem !important;
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: 3px;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(201,169,97,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,169,97,0.05) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 .accent { color: var(--gold); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-accent-line {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201,169,97,0.12);
  border-radius: 50%;
}
.hero-accent-line:nth-child(3) {
  width: 500px;
  height: 500px;
  border-color: rgba(201,169,97,0.06);
}

/* ── Metrics Bar ── */
.metrics {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,169,97,0.15);
  border-bottom: 1px solid rgba(201,169,97,0.15);
  padding: 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  text-align: center;
  padding: 36px 16px;
  position: relative;
}

.metric:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(201,169,97,0.2);
}

.metric-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Pain Points ── */
.pain-points {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.pain-points-header {
  text-align: center;
  margin-bottom: 64px;
}

.pain-points-header h2 {
  color: var(--navy);
  margin-bottom: 16px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.pain-card:hover {
  border-color: #D9534F;
  box-shadow: 0 4px 20px rgba(217,83,79,0.08);
}

.pain-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #FFF0F0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #D9534F;
}

.pain-card h3 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.pain-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Services ── */
.services { padding: var(--section-pad) 0; background: var(--white); }

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header h2 { color: var(--navy); margin-bottom: 16px; }

.services-header p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(27,42,74,0.08);
  transform: translateY(-2px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card > p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* ── Comparison Table ── */
.comparison {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.comparison-header {
  text-align: center;
  margin-bottom: 64px;
}

.comparison-header h2 { color: var(--navy); margin-bottom: 16px; }

.comparison-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.comparison-table thead th {
  padding: 24px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  color: var(--navy);
  background: var(--gray-100);
  border-bottom: 2px solid var(--gray-200);
}

.comparison-table thead th:first-child {
  text-align: left;
  background: var(--gray-100);
}

.comparison-table thead th.highlighted {
  background: var(--navy);
  color: var(--gold);
  position: relative;
}

.comparison-table tbody td {
  padding: 16px 20px;
  font-size: 0.88rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--gray-800);
}

.comparison-table tbody td.highlighted {
  background: rgba(27,42,74,0.03);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.comparison-table tbody tr:last-child td.highlighted {
  border-bottom: 2px solid var(--gold);
}

.comparison-table thead th.highlighted::before {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  right: -2px;
  height: 3px;
  background: var(--gold);
}

.check { color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.cross { color: var(--gray-400); font-size: 1.1rem; }

/* ── Process / How it Works ── */
.process {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-header h2 { color: var(--navy); margin-bottom: 16px; }
.process-header p { color: var(--gray-600); max-width: 500px; margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: var(--gray-200);
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.step h3 { color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--gray-600); font-size: 0.9rem; }

/* ── Partner Network ── */
.network {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.network-header {
  text-align: center;
  margin-bottom: 64px;
}

.network-header h2 { color: var(--navy); margin-bottom: 16px; }

.network-header p {
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.partner-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(27,42,74,0.08);
  transform: translateY(-2px);
}

.partner-card:hover::before { transform: scaleX(1); }

.partner-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.partner-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.partner-location {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.partner-specialties {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 20px;
  line-height: 1.5;
}

.partner-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: color 0.2s;
}

.partner-cta:hover { color: var(--gold); }

/* ── Offices ── */
.offices {
  padding: var(--section-pad) 0;
  background: var(--navy);
  color: var(--white);
}

.offices-header {
  text-align: center;
  margin-bottom: 64px;
}

.offices-header h2 { color: var(--white); margin-bottom: 16px; }
.offices-header p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; }

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.office-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 36px 28px;
  transition: all 0.3s;
}

.office-card:hover {
  border-color: var(--gold);
  background: rgba(201,169,97,0.05);
}

.office-flag {
  font-size: 2rem;
  margin-bottom: 16px;
}

.office-card h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.office-card .office-type {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.office-card address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ── Testimonial ── */
.testimonial {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.testimonial-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 60px 64px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  left: 40px;
  line-height: 1;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  position: relative;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold);
  display: block;
}

.testimonial-card cite span {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

/* ── Resources ── */
.resources {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.resources-header {
  text-align: center;
  margin-bottom: 64px;
}

.resources-header h2 { color: var(--navy); margin-bottom: 16px; }

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.resource-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(27,42,74,0.08);
  transform: translateY(-2px);
}

.resource-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-img span {
  font-size: 3rem;
  opacity: 0.3;
}

.resource-body {
  padding: 28px 24px;
}

.resource-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,169,97,0.1);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.resource-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.resource-card p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.resource-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: color 0.2s;
}

.resource-link:hover { color: var(--gold); }

/* ── FAQ ── */
.faq {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-header h2 { color: var(--navy); margin-bottom: 16px; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.active {
  border-color: var(--gold);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
}

.faq-question:hover { color: var(--gold-dark); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Final CTA ── */
.final-cta {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,169,97,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201,169,97,0.04) 0%, transparent 50%);
}

.final-cta .container { position: relative; z-index: 2; }

.final-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta > .container > p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-contact-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact-item {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}

.cta-contact-item a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Footer ── */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 32px;
  color: rgba(255,255,255,0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0.6;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer h4 {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }

.footer ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 968px) {
  :root { --section-pad: 72px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201,169,97,0.15);
  }

  .hero-content { max-width: 100%; }
  .hero-accent-line { display: none; }

  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2)::after { display: none; }

  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .network-grid { grid-template-columns: repeat(2, 1fr); }
  .offices-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .testimonial-card { padding: 40px 32px; }

  .comparison-table { font-size: 0.85rem; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: 12px 14px; }
}

@media (max-width: 480px) {
  :root { --section-pad: 56px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .network-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-contact-row { flex-direction: column; align-items: center; gap: 12px; }
  .testimonial-card { padding: 32px 24px; }
  .testimonial-card::before { font-size: 4rem; left: 20px; }
}

/* ═══════════════════════════════════════════
   PRODUCTION ADDITIONS — v1.0 (2026-07-15)
   Contact form · WhatsApp float · A11y · Legal
   ═══════════════════════════════════════════ */

/* ── Hero: svh fix (iOS URL bar jump) ── */
.hero { min-height: 100vh; min-height: 100svh; }

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 2000;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ── Focus visibility ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── Contact section ── */
.contact {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,169,97,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201,169,97,0.04) 0%, transparent 50%);
}

.contact .container { position: relative; z-index: 2; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { color: var(--white); margin-bottom: 16px; }

.contact-info > p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.contact-channels { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
}

.contact-channel .channel-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(201,169,97,0.12);
  border: 1px solid rgba(201,169,97,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.contact-channel strong {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-channel a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.contact-channel a:hover { color: var(--gold-light); }

.contact-wa-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Form card ── */
.contact-form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.contact-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-card .form-note {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-group label .req { color: #D9534F; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.15);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: #D9534F; }

.form-group textarea { min-height: 110px; resize: vertical; }

.form-error {
  display: none;
  font-size: 0.78rem;
  color: #D9534F;
  margin-top: 4px;
}
.form-group.has-error .form-error { display: block; }

/* Honeypot — hidden from humans, visible to bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 15px 32px;
}
.form-submit:disabled { opacity: 0.6; cursor: wait; transform: none; }

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.form-status.success { display: block; background: #EDF7EE; color: #2E7D32; border: 1px solid #C8E6C9; }
.form-status.error { display: block; background: #FDF0EF; color: #C0392B; border: 1px solid #F5C6C2; }

.form-privacy {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── Footer legal / AI disclosure ── */
.footer-legal {
  margin-top: 16px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  line-height: 1.6;
}

/* ── Responsive: contact ── */
@media (max-width: 968px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-wa-buttons { flex-direction: column; }
  .contact-wa-buttons .btn { width: 100%; justify-content: center; }
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; transition: none; }
  .wa-float, .btn { transition: none; }
  .wa-float:hover, .btn:hover { transform: none; }
}
