/* ═══════════════════════════════════════════
   INTERSECTION LEGAL — Homepage Mockup
   Colors: Navy #101318 · Gold #7B8FB0 · White
   ═══════════════════════════════════════════ */

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

:root {
  --navy: #101318;
  --navy-light: #1A1F26;
  --navy-dark: #0A0C0F;
  --gold: #7B8FB0;
  --gold-light: #9DAECB;
  --gold-dark: #4E6488;
  --white: #FFFFFF;
  --off-white: #F3F5F8;
  --gray-100: #E9EDF2;
  --gray-200: #DAE0E8;
  --gray-400: #8B93A0;
  --gray-600: #575F6B;
  --gray-800: #23272E;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-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(123,143,176,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(16,19,24,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(16,19,24,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(123,143,176,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(123,143,176,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(123,143,176,0.12);
  border-radius: 50%;
}
.hero-accent-line:nth-child(3) {
  width: 500px;
  height: 500px;
  border-color: rgba(123,143,176,0.06);
}

/* ── Metrics Bar ── */
.metrics {
  background: var(--navy-dark);
  border-top: 1px solid rgba(123,143,176,0.15);
  border-bottom: 1px solid rgba(123,143,176,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(123,143,176,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(16,19,24,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(16,19,24,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(16,19,24,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(123,143,176,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(16,19,24,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(123,143,176,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(123,143,176,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(123,143,176,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(123,143,176,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(123,143,176,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(123,143,176,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(123,143,176,0.12);
  border: 1px solid rgba(123,143,176,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(123,143,176,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; }
}

/* ═══════════════════════════════════════════
   2026-07-16 — G&S-inspired improvements
   (hero trust strip, watermark, navigator,
   numbered services, back-to-top)
   ═══════════════════════════════════════════ */

/* ── Hero watermark ── */
.hero-mark {
  position: absolute; right: -2%; bottom: -14%;
  font-family: var(--font-serif); font-style: italic; font-weight: 700;
  font-size: clamp(20rem, 38vw, 34rem); line-height: 1;
  color: var(--gold); opacity: 0.05; pointer-events: none; user-select: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

/* ── Hero trust strip ── */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 12px 36px; margin-top: 40px;
  padding-top: 26px; border-top: 1px solid rgba(123, 143, 176, 0.25);
}
.trust-item { display: flex; align-items: baseline; gap: 10px; }
.trust-item strong {
  font-family: var(--font-serif); font-size: 1.05rem; color: var(--gold);
  letter-spacing: 0.02em; white-space: nowrap;
}
.trust-item span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.66); }

/* ── Numbered service cards ── */
.service-card { position: relative; }
.service-num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700;
  color: var(--gold); opacity: 0.55; letter-spacing: 0.06em;
}

/* ── Legal Navigator ── */
.navigator { padding: var(--section-pad) 0; background: var(--navy); }
.navigator-header { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.navigator-header h2 { color: var(--white); }
.navigator-header p { color: rgba(255, 255, 255, 0.65); margin-top: 12px; }
.navigator .section-label { color: var(--gold); }

.nav-tool {
  max-width: 860px; margin: 0 auto; background: var(--navy-light);
  border: 1px solid rgba(123, 143, 176, 0.25); border-radius: 14px;
  padding: 36px 34px;
}
.nav-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.nav-chip {
  display: inline-block; padding: 11px 20px; border-radius: 99px;
  border: 1.5px solid rgba(255, 255, 255, 0.28); color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  background: transparent;
}
.nav-chip:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.nav-chip.active { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

.nav-result { margin-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 28px;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: center; }
.nav-result h3 { font-family: var(--font-serif); color: var(--white); font-size: 1.35rem; margin-bottom: 8px; }
.nav-result p { color: rgba(255, 255, 255, 0.68); font-size: 0.92rem; }
.nav-result-list { list-style: none; margin-top: 14px; display: grid; gap: 8px; }
.nav-result-list li {
  position: relative; padding-left: 24px; color: rgba(255, 255, 255, 0.82); font-size: 0.9rem;
}
.nav-result-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.nav-result-cta { text-align: center; }
.nav-result-note { margin-top: 12px; font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); }

/* ── Back to top ── */
.to-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 998;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  border: 1.5px solid var(--gold); font-size: 1.15rem; cursor: pointer;
  opacity: 0; transform: translateY(8px); transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 18px rgba(17, 29, 51, 0.35);
}
.to-top.show { opacity: 1; transform: none; }
.to-top:hover { background: var(--navy-light); }

@media (prefers-reduced-motion: reduce) {
  .nav-chip:hover { transform: none; }
}

@media (max-width: 760px) {
  .hero-trust { gap: 10px 20px; }
  .trust-item { flex-direction: column; gap: 2px; }
  .nav-tool { padding: 26px 20px; }
  .nav-result { grid-template-columns: 1fr; gap: 20px; }
  .hero-mark { font-size: 16rem; right: -12%; bottom: -8%; }
  .to-top { bottom: 20px; left: 16px; width: 42px; height: 42px; }
}

/* ── Phone with auto dial-code prefix (2026-07-16, mismo patrón que OWNSV) ── */
.phone-wrap { display: flex; }
.phone-prefix {
  display: flex; align-items: center; justify-content: center;
  padding: 0 12px; min-width: 56px; white-space: nowrap;
  background: var(--gray-100); border: 1px solid var(--gray-200); border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.92rem; font-weight: 600; color: var(--navy);
}
.phone-wrap input { border-radius: 0 4px 4px 0; }
.phone-hint { display: block; font-size: 0.72rem; color: var(--gray-400); margin-top: 4px; }

/* ═══════════════════════════════════════════
   2026-07-16 — Multi-page components
   (page-hero, cta-band, service-more, 404)
   ═══════════════════════════════════════════ */

.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 70%, var(--navy-light) 100%);
  padding: 165px 0 75px; text-align: center;
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-serif); color: var(--white);
  font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.15;
  max-width: 800px; margin: 0 auto 16px;
}
.page-hero-sub { color: rgba(255, 255, 255, 0.72); max-width: 620px; margin: 0 auto; font-size: 1.02rem; }
.page-hero .hero-grid { opacity: 0.5; }

.cta-band {
  background: var(--navy-dark); padding: 90px 0; text-align: center;
}
.cta-band h2 { font-family: var(--font-serif); color: var(--white); font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.68); max-width: 560px; margin: 0 auto 30px; }

.service-more { display: inline-block; margin-top: 14px; color: var(--gold-dark); font-weight: 600; font-size: 0.9rem; }
.service-more:hover { text-decoration: underline; }

.page-404 {
  min-height: 100svh; display: flex; align-items: center; text-align: center;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.code-404 { font-family: var(--font-serif); font-size: clamp(5rem, 14vw, 9rem); color: var(--gold); line-height: 1; }
.page-404 h1 { font-family: var(--font-serif); color: var(--white); font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 10px 0 16px; }
.page-404 p { color: rgba(255, 255, 255, 0.7); max-width: 480px; margin: 0 auto 30px; }
.actions-404 { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 760px) {
  .page-hero { padding: 130px 0 56px; }
  .cta-band { padding: 64px 0; }
}

/* ── Partner profile links (network page) ── */
.partner-profile-link {
  display: block; margin: 4px 0 10px; font-size: 0.85rem; font-weight: 600;
  color: var(--navy); text-align: center;
}
.partner-profile-link:hover { color: var(--gold-dark); text-decoration: underline; }

/* ═══════════════════════════════════════════
   A&M CAPITAL — brand-specific sections
   ═══════════════════════════════════════════ */

/* Hero: extra content (chips + trust strip) — pad so it always clears the fixed nav */
.hero { padding: 130px 0 70px; }
@media (max-width: 968px) { .hero { padding: 112px 0 56px; } }

/* Hero sector chips */
.sector-chips { display: flex; gap: 10px; flex-wrap: wrap; margin: 26px 0 30px; }
.sector-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Case study card */
.case-study {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 40px;
  margin-top: 48px;
}
.case-study h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.case-study > p { color: var(--gray-600); font-size: 0.95rem; max-width: 900px; }
.case-study-stats { display: flex; gap: 40px; margin-top: 26px; flex-wrap: wrap; }
.case-study-stat { text-align: center; }
.case-study-stat .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.1;
}
.case-study-stat .lbl { font-size: 0.8rem; color: var(--gray-600); }

/* Ecosystem / portfolio */
.portfolio { padding: var(--section-pad) 0; background: var(--off-white); }
.portfolio-header { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.portfolio-header h2 { color: var(--navy); margin-bottom: 16px; }
.portfolio-header p { color: var(--gray-600); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(16, 19, 24, 0.1); }
.portfolio-badge {
  align-self: flex-start;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.portfolio-card h3 { font-family: var(--font-serif); color: var(--navy); font-size: 1.25rem; margin-bottom: 10px; }
.portfolio-card p { color: var(--gray-600); font-size: 0.9rem; flex: 1; }
.portfolio-link { display: inline-block; margin-top: 16px; color: var(--gold-dark); font-weight: 600; font-size: 0.9rem; }
.portfolio-link:hover { text-decoration: underline; }

/* Partners bar */
.partners-bar { padding: 56px 0; background: var(--white); border-top: 1px solid var(--gray-100); }
.partners-bar h2 {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 26px;
}
.partners-list { display: flex; gap: 20px 48px; justify-content: center; flex-wrap: wrap; align-items: center; }
.partners-list span { font-size: 1.02rem; font-weight: 600; color: var(--gray-600); }

/* Why El Salvador */
.advantages { padding: var(--section-pad) 0; background: var(--navy); }
.advantages-header { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.advantages-header .section-label { color: var(--gold); }
.advantages-header h2 { color: var(--white); margin-bottom: 16px; }
.advantages-header p { color: rgba(255, 255, 255, 0.65); }
.advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.advantage {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.advantage:hover { border-color: var(--gold); transform: translateY(-3px); }
.advantage-number { font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold); margin-bottom: 12px; }
.advantage h3 { color: var(--white); font-size: 1.08rem; margin-bottom: 10px; }
.advantage p { color: rgba(255, 255, 255, 0.62); font-size: 0.88rem; }

/* About page */
.about-block { padding: var(--section-pad) 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text h2 { color: var(--navy); margin-bottom: 20px; }
.about-text > p { color: var(--gray-600); margin-bottom: 16px; }
.ania-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  margin-top: 12px;
}
.about-details { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; margin-top: 32px; }
.about-detail strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.about-detail span { color: var(--gray-600); font-size: 0.9rem; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.team-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}
.team-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
}
.team-card h3 { font-family: var(--font-serif); color: var(--navy); font-size: 1.3rem; }
.team-card .role { color: var(--gold-dark); font-weight: 600; font-size: 0.88rem; margin: 4px 0 10px; }
.team-card p { color: var(--gray-600); font-size: 0.88rem; }
.credential-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 20px; }
.credential {
  background: var(--off-white);
  padding: 22px;
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}
.credential h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.credential p { font-size: 0.88rem; color: var(--gray-600); }

@media (max-width: 968px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .case-study { padding: 28px; }
  .case-study-stats { gap: 24px; }
}

/* ═══════════════════════════════════════════
   A&M REBRAND 2026-07-18 — paleta del logo
   (ink #101318 · steel #7B8FB0 · teal #0D6B6E) + Archivo
   ═══════════════════════════════════════════ */
:root { --teal: #0D6B6E; --teal-bright: #17999E; }

/* Teal = acento secundario del logo en fondos claros */
.section-label { color: var(--teal); }
.hero .section-label,
.page-hero .section-label,
.advantages-header .section-label,
.contact-info .section-label { color: var(--gold-light); }

.case-study { border-left-color: var(--teal); }
.case-study h3 { color: var(--teal); }
.credential { border-left-color: var(--teal); }
.credential h4 { color: var(--teal); }
.about-detail strong { color: var(--teal); }
.team-card .role { color: var(--teal); }

.btn-primary:hover { background: var(--gold-light); }

/* Logo real en nav y footer */
.nav-brand { display: flex; align-items: center; gap: 11px; }
.nav-brand img { height: 34px; width: auto; }
.nav-brand .brand-text {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--white);
}
.footer-logo { height: 64px; width: auto; margin-bottom: 16px; }

/* Watermark: mark de montaña en vez del ampersand */
.hero-mark-img {
  position: absolute;
  right: -3%;
  bottom: -8%;
  height: 70vh;
  width: auto;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 968px) { .hero-mark-img { display: none; } }

/* Contraste: markers de listas y links de acción sobre blanco */
.service-list li::before { color: var(--gold-dark); }
.service-more, .portfolio-link { color: var(--gold-dark); }

/* ═══════ REBRAND v2 (2026-07-20) — institutional / gov+enterprise ═══════ */

/* Hero essence line */
.essence-line {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin: -8px 0 30px;
}

/* Authority strip under metrics */
.authority-strip {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--gray-400);
}
.authority-strip strong { color: var(--gold-light); font-weight: 700; white-space: nowrap; }

/* The Gap (stakes / villain) */
.gap-band { padding: var(--section-pad) 0; background: var(--off-white); }
.gap-inner { max-width: 980px; margin: 0 auto; text-align: center; }
.gap-band h2 {
  color: var(--navy);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 18px;
}
.gap-lead {
  color: var(--gray-600);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto 48px;
}
.forces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
  margin-bottom: 40px;
}
.force {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--teal);
  border-radius: 10px;
  padding: 26px 24px;
}
.force h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 10px; }
.force p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }
.gap-disqualifier {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 1rem;
}

/* Recall divider band */
.recall-band { background: var(--navy); padding: 34px 0; text-align: center; }
.recall-line {
  font-family: var(--font-serif);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  margin: 0;
}

/* Outcomes grid: 3 columns on desktop */
.outcomes-grid { grid-template-columns: repeat(3, 1fr); }

/* Case study attribution + honest proof */
.case-attribution { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; flex-wrap: wrap; }
.case-attribution h3 { margin: 0; }
.bb-logo-img {
  height: 54px;
  width: auto;
  border-radius: 6px;
  background: var(--white);
  padding: 4px 8px;
  border: 1px solid var(--gray-100);
}
.case-honest {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--gray-200);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gray-600);
}

/* CTA essence */
.cta-essence {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--gold-light) !important;
  margin-bottom: 30px !important;
}

@media (max-width: 968px) {
  .forces-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .authority-strip { font-size: 0.76rem; line-height: 1.8; }
}

/* page-hero accent (About/Contact H1) — matches .hero h1 .accent */
.page-hero h1 .accent { color: var(--gold); }

/* ═══════ v2.1 — hero capture, recall CTA, credibility strip ═══════ */
.hero-capture { display: flex; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; max-width: 600px; }
.hero-capture input {
  flex: 1 1 260px;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid #3a4655;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-main);
}
.hero-capture input::placeholder { color: var(--gray-400); }
.hero-capture input:focus { outline: 2px solid var(--gold); border-color: transparent; }

.recall-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }

.cred-strip { padding: 64px 0; background: var(--white); border-top: 1px solid var(--gray-100); }
.cred-groups { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
.cred-label {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 18px;
}
.cred-cards { display: flex; gap: 22px; flex-wrap: wrap; }
.cred-card { margin: 0; max-width: 250px; }
.cred-card img {
  height: 88px;
  width: auto;
  border-radius: 10px;
  border: 1px solid var(--gray-100);
  background: var(--white);
  padding: 8px 14px;
  object-fit: contain;
}
.cred-card figcaption { margin-top: 10px; font-size: 0.78rem; color: var(--gray-600); line-height: 1.5; }

@media (max-width: 968px) {
  .cred-groups { grid-template-columns: 1fr; gap: 34px; }
  .hero-capture { flex-direction: column; }
  .hero-capture input { flex: 1 1 auto; }
}

/* ═══════ v2.2 — storybrand.ai hero message pattern ═══════ */
.hero-helper {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.hero-giant { min-height: 1.15em; }
.type-caret {
  display: inline-block;
  width: 3px;
  margin-left: 6px;
  background: var(--gold);
  animation: caretBlink 1s steps(1) infinite;
  height: 0.85em;
  vertical-align: baseline;
}
@keyframes caretBlink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .type-caret { display: none; } }
.hero-friction {
  font-size: 0.84rem;
  color: var(--gray-400);
  margin-top: 14px;
}

/* ═══════════════════════════════════════════
   LEGAL PAGES — 2026-07-24
   (privacy/terms prose · footer legal links · consent checkbox)
   ═══════════════════════════════════════════ */

.legal-block { padding: 64px 0 var(--section-pad); background: var(--white); }
.legal-content { max-width: 760px; margin: 0 auto; }

.legal-meta {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.7;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 18px;
  margin-bottom: 34px;
}
.legal-meta strong { color: var(--teal); }

.legal-content h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin: 40px 0 12px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 1.02rem; color: var(--navy); margin: 26px 0 8px; }
.legal-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul,
.legal-content ol {
  margin: 0 0 16px 22px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.75;
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { margin-bottom: 6px; padding-left: 4px; }
.legal-content li::marker { color: var(--teal); }
.legal-content a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover,
.legal-content a:focus-visible { color: var(--teal); }
.legal-content strong { color: var(--gray-800); }

.legal-callout {
  background: var(--off-white);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 18px 0 22px;
}
.legal-callout p { margin-bottom: 0; }

.legal-ai-note {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.75rem;
  color: var(--gray-400);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .legal-block { padding-top: 48px; }
  .legal-content h2 { margin-top: 32px; }
}

/* ── Footer legal links (Privacy · Terms) ── */
.footer-legal-links a { color: rgba(255, 255, 255, 0.5); transition: color 0.2s; }
.footer-legal-links a:hover,
.footer-legal-links a:focus-visible { color: var(--gold); }

/* ── Consent checkbox (contact form) ── */
.consent-group { margin-top: 4px; }
.consent-group .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.55;
  cursor: pointer;
  margin-bottom: 0;
}
.consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--teal);
  cursor: pointer;
}
.consent-label input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.consent-label a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-label a:hover,
.consent-label a:focus-visible { color: var(--teal); }
.consent-group.has-error .consent-label { color: #D9534F; }
