/* ═══════════════════════════════════════════════════════════
   LCOM TRANSLATIONS · SHARED STYLES
   Brand: Olive / Ivory / Gold · Cormorant Garamond + Jost
   ═══════════════════════════════════════════════════════════ */

:root {
  --olive-deep:    #425535;
  --olive-mid:     #627848;
  --olive-light:   #8fa870;
  --olive-pale:    #c8d6b0;
  --ivory:         #f7f4ed;
  --ivory-warm:    #ede8db;
  --gold:          #c8a85a;
  --text-dark:     #1e2818;
  --text-mid:      #4a5a38;
  --text-light:    #7a8a68;
  --white:         #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ─── UTILITY ─────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 16px;
}

/* ─── BUTTONS ─────────────────────────────── */
.btn-primary, .btn-ghost, .btn-gold, .btn-olive, .btn-olive-outline {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--olive-deep);
  border-color: var(--gold);
}
.btn-primary:hover { background: #b89344; border-color: #b89344; }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(247,244,237,0.4);
}
.btn-ghost:hover { border-color: var(--ivory); background: rgba(255,255,255,0.05); }

.btn-gold {
  background: var(--gold);
  color: var(--olive-deep);
}
.btn-gold:hover { background: #b89344; }

.btn-olive {
  background: var(--olive-deep);
  color: var(--ivory);
}
.btn-olive:hover { background: var(--olive-mid); }

.btn-olive-outline {
  background: transparent;
  color: var(--olive-deep);
  border-color: var(--olive-deep);
}
.btn-olive-outline:hover { background: var(--olive-deep); color: var(--ivory); }

/* ─── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(247,244,237,0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(58,74,46,0.12);
}
nav.scrolled .nav-logo-text { color: var(--olive-deep) !important; text-shadow: none !important; }
nav.scrolled .nav-logo-text span { color: var(--olive-mid) !important; }
nav.scrolled .nav-links a { color: var(--olive-deep) !important; text-shadow: none !important; font-weight: 600 !important; opacity: 1 !important; }
nav.scrolled .nav-links a:hover { color: var(--olive-mid) !important; }
nav.scrolled .nav-links a.nav-cta { background: var(--olive-deep) !important; color: var(--ivory) !important; }
nav.scrolled .hamburger span { background: var(--olive-deep); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.nav-logo-text span {
  font-weight: 400; font-size: 13px;
  display: block;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1; margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: color 0.2s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--gold) !important; }
.nav-cta {
  background: var(--olive-deep);
  color: var(--ivory) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 500 !important;
  text-shadow: none !important;
}
.nav-cta:hover { background: var(--olive-mid) !important; color: var(--ivory) !important; }

.hamburger { display: none; }
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: 280px; height: 100vh;
  background: var(--olive-deep);
  z-index: 999;
  padding: 100px 32px 32px;
  transition: right 0.35s ease;
  box-shadow: -4px 0 30px rgba(0,0,0,0.3);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 22px; }
.mobile-menu a {
  display: block;
  font-size: 16px; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ivory);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(200,214,176,0.15);
}
.mobile-menu a.active { color: var(--gold); }

/* ─── HERO (HOMEPAGE) ──────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--olive-deep);
  padding-top: 100px;
}
.hero-bg-texture {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(90,110,62,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,168,90,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(200,214,176,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,214,176,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
h1.hero-title {
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 600; line-height: 1.08;
  color: var(--ivory);
  margin-bottom: 12px;
}
.hero-title em { font-style: italic; color: var(--olive-pale); }
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic;
  color: var(--olive-pale);
  margin-bottom: 24px;
}
.hero-body {
  font-size: 16px;
  color: rgba(200,214,176,0.85);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-visual svg { width: 100%; max-width: 480px; height: auto; }

/* ─── ROTATING GLOBE (HOMEPAGE HERO) ────────── */
.hero-globe-ring {
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(200,214,176,0.15);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: rotate-ring 30s linear infinite;
}
@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-globe-inner {
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(200,214,176,0.25);
  background: radial-gradient(circle at 35% 35%, rgba(90,110,62,0.6), rgba(30,40,24,0.9));
  display: flex; align-items: center; justify-content: center;
  animation: rotate-ring 30s linear infinite reverse;
  box-shadow: 0 0 60px rgba(90,110,62,0.3), inset 0 0 40px rgba(0,0,0,0.4);
}
.hero-globe-dot {
  position: absolute;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  top: 10px; left: 50%; transform: translateX(-50%);
  box-shadow: 0 0 12px var(--gold);
}
.hero-stat-card {
  position: absolute;
  background: rgba(247,244,237,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,214,176,0.18);
  border-radius: 4px;
  padding: 16px 20px;
  animation: rotate-ring 30s linear infinite reverse;
}
.hero-stat-card.one { bottom: 30px; left: -20px; }
.hero-stat-card.two { top: 50px; right: -30px; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 13px; color: rgba(247,244,237,0.95);
  letter-spacing: 0.08em; margin-top: 6px; font-weight: 500;
}
.globe-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-style: italic; font-weight: 600;
  color: var(--white); opacity: 1;
  text-align: center; padding: 20px;
  line-height: 1.5;
}

/* ─── PAGE HERO (NON-HOMEPAGE) ─────────────── */
.page-hero {
  min-height: 56vh;
  padding: 140px 0 80px;
  background: var(--olive-deep);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(90,110,62,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,168,90,0.08) 0%, transparent 60%),
    linear-gradient(rgba(200,214,176,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,214,176,0.04) 1px, transparent 1px);
  background-size: auto, auto, 60px 60px, 60px 60px;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; max-width: 780px; }
.page-hero .section-label { color: var(--gold); }
.page-hero h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 600; line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--olive-pale); }
.page-hero p {
  font-size: 18px;
  color: rgba(200,214,176,0.85);
  line-height: 1.7;
  max-width: 640px;
}

/* ─── TRUST BAR ────────────────────────────── */
#trust {
  background: var(--ivory-warm);
  padding: 28px 0;
  border-bottom: 1px solid rgba(66,85,53,0.08);
}
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { font-size: 18px; }
.trust-text {
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--olive-mid);
  text-transform: uppercase;
}
.trust-divider { width: 1px; height: 18px; background: var(--olive-pale); }

/* ─── SECTION HEADER ───────────────────────── */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-header h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600; line-height: 1.15;
  color: var(--olive-deep);
  margin-bottom: 16px;
}
.section-header h2 em { font-style: italic; color: var(--gold); }
.section-header p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.65;
}
.section-header.light h2 { color: var(--olive-deep); }

/* ─── ABOUT ────────────────────────────────── */
#about { padding: 100px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-visual svg { width: 100%; height: auto; }
.about-visual img {
  width: 100%; height: auto;
  border-radius: 6px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  display: block;
}
.about-visual::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

/* Services banner with caption overlay */
.services-banner-wrap {
  margin-top: 60px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  position: relative;
}
.services-banner-wrap img {
  width: 100%; height: auto; display: block;
}
.services-banner-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 32px 40px;
  background: linear-gradient(to top, rgba(20, 28, 16, 0.92), rgba(20, 28, 16, 0.6) 70%, transparent);
  color: var(--ivory);
}
.services-banner-caption .banner-eyebrow {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.services-banner-caption .banner-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--ivory);
  margin: 0;
  max-width: 640px;
  line-height: 1.4;
}
.about-content h2 {
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 600; line-height: 1.18;
  color: var(--olive-deep);
  margin-bottom: 24px;
}
.about-content h2 em { font-style: italic; color: var(--gold); }
.about-content p {
  font-size: 16px; line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.about-quote {
  background: var(--ivory-warm);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  margin: 32px 0;
  border-radius: 0 3px 3px 0;
}
.about-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic;
  line-height: 1.5; color: var(--olive-deep);
  margin-bottom: 14px;
}
.about-quote-text-es {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-style: italic;
  color: var(--olive-mid);
  margin-bottom: 14px;
  opacity: 0.85;
}
.about-quote-author {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}

/* ─── SERVICES ─────────────────────────────── */
#services { padding: 100px 0; background: var(--ivory-warm); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 60px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--olive-pale);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(58,74,46,0.12);
  transform: translateY(-4px);
}
.service-number {
  position: absolute;
  top: 24px; right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.service-icon { font-size: 32px; margin-bottom: 18px; }
.service-card h3 {
  font-size: 22px; font-weight: 600;
  color: var(--olive-deep);
  margin-bottom: 12px;
  line-height: 1.25;
}
.service-card p {
  font-size: 14px; line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.service-features { list-style: none; }
.service-features li {
  font-size: 13px; color: var(--text-mid);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.5;
}
.service-features li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--gold); font-size: 12px;
}

.additional-services {
  margin-top: 60px;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--olive-pale);
  border-radius: 4px;
}
.additional-services h3 {
  font-size: 28px; font-weight: 600;
  color: var(--olive-deep);
  margin-bottom: 12px;
}
.additional-services > p {
  font-size: 15px; color: var(--text-mid);
  margin-bottom: 28px; line-height: 1.7;
}
.additional-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-bottom: 24px;
}
.additional-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--ivory);
  border: 1px solid var(--olive-pale);
  border-radius: 3px;
}
.additional-item .check { color: var(--gold); font-size: 16px; }
.additional-item span:last-child {
  font-size: 14px; color: var(--olive-deep); font-weight: 500;
}

/* ─── PACKAGES ─────────────────────────────── */
#packages { padding: 100px 0; }
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--olive-pale);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.package-card:hover {
  box-shadow: 0 12px 48px rgba(58,74,46,0.14);
  transform: translateY(-4px);
}
.package-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(200,168,90,0.18);
}
.package-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold);
  color: var(--olive-deep);
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.package-header {
  padding: 36px 32px 24px;
  background: var(--ivory-warm);
  border-bottom: 1px solid var(--olive-pale);
}
.package-tier {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.package-header h3 {
  font-size: 24px; font-weight: 600;
  color: var(--olive-deep);
  margin-bottom: 12px;
  line-height: 1.25;
}
.package-header p {
  font-size: 14px; line-height: 1.65;
  color: var(--text-mid);
}
.package-body {
  padding: 28px 32px 32px;
  display: flex; flex-direction: column; flex-grow: 1;
}
.package-list {
  list-style: none; margin-bottom: 24px;
  flex-grow: 1;
}
.package-list li {
  font-size: 13.5px; color: var(--text-mid);
  padding: 9px 0 9px 24px;
  position: relative; line-height: 1.55;
  border-bottom: 1px solid var(--ivory-warm);
}
.package-list li:last-child { border-bottom: none; }
.package-list li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--gold); font-weight: 700; font-size: 13px;
}
.package-outcome {
  background: var(--ivory);
  border-left: 3px solid var(--olive-light);
  padding: 14px 18px;
  margin-bottom: 24px;
  border-radius: 0 3px 3px 0;
}
.package-outcome p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14.5px; font-style: italic;
  color: var(--olive-deep);
  line-height: 1.5;
}
.package-card .btn-olive,
.package-card .btn-olive-outline { width: 100%; text-align: center; }

/* ─── PROCESS ──────────────────────────────── */
#process { padding: 100px 0; background: var(--ivory-warm); }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  position: relative;
  margin-top: 40px;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 30px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--olive-pale) 20%, var(--olive-pale) 80%, transparent);
  z-index: 0;
}
.process-step {
  text-align: center; position: relative; z-index: 1;
  padding: 0 8px;
}
.step-circle {
  width: 60px; height: 60px;
  background: var(--olive-deep);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  margin: 0 auto 20px;
  border: 4px solid var(--ivory-warm);
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 600;
  color: var(--olive-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-desc {
  font-size: 13px; line-height: 1.65;
  color: var(--text-mid);
}

/* ─── LEAD MAGNET ──────────────────────────── */
#lead-magnet { padding: 100px 0; background: var(--olive-deep); position: relative; overflow: hidden; }
#lead-magnet::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(200,168,90,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.lead-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center;
}
.lead-content .section-label { color: var(--gold); }
.lead-content h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600; line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 20px;
}
.lead-content h2 em { font-style: italic; color: var(--olive-pale); }
.lead-content > p {
  font-size: 16px; line-height: 1.75;
  color: rgba(200,214,176,0.85);
  margin-bottom: 28px;
}
.lead-checklist { list-style: none; margin-bottom: 32px; }
.lead-checklist li {
  font-size: 14.5px; color: rgba(200,214,176,0.9);
  padding: 8px 0 8px 28px;
  position: relative; line-height: 1.6;
}
.lead-checklist li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}
.lead-doc-card {
  background: var(--ivory);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: rotate(-1.5deg);
}
.lead-doc-header {
  padding: 28px 32px 22px;
  background: var(--olive-deep);
  color: var(--ivory);
}
.lead-doc-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.lead-doc-header h3 {
  font-size: 22px; font-weight: 600;
  color: var(--ivory);
  line-height: 1.25;
}
.lead-doc-body { padding: 24px 32px 32px; }
.lead-doc-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ivory-warm);
  font-size: 13.5px; color: var(--text-mid);
}
.lead-doc-item:last-child { border-bottom: none; }
.lead-doc-item-icon { font-size: 16px; }

/* ─── TESTIMONIALS ─────────────────────────── */
#testimonials { padding: 100px 0; background: var(--ivory); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--olive-pale);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px; left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--olive-pale);
  line-height: 1;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--ivory-warm);
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--olive-deep);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
}
.testimonial-name {
  font-size: 14px; font-weight: 600;
  color: var(--olive-deep);
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: 11.5px;
  color: var(--text-light);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.prior-clients {
  margin-top: 60px;
  text-align: center;
}
.prior-clients-label {
  font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive-mid);
  margin-bottom: 28px;
}
.prior-clients-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 24px 32px; align-items: center;
}
.prior-clients-strip .client {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--olive-deep);
  font-weight: 600;
}
.prior-clients-strip .dot { color: var(--gold); }

/* ─── BOOK A CALL CTA ──────────────────────── */
#book {
  padding: 100px 0;
  background: var(--ivory-warm);
  text-align: center;
}
.book-content { max-width: 760px; margin: 0 auto; }
.book-content .section-label { color: var(--gold); }
.book-content h2 {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 600; line-height: 1.12;
  color: var(--olive-deep);
  margin-bottom: 20px;
}
.book-content h2 em { font-style: italic; color: var(--gold); }
.book-content > p {
  font-size: 17px; line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 36px;
}
.book-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
#book .btn-ghost {
  color: var(--olive-deep);
  border-color: var(--olive-deep);
}
#book .btn-ghost:hover { background: var(--olive-deep); color: var(--ivory); }

/* ─── PAYMENTS PAGE/SECTION ────────────────── */
.payments-section {
  padding: 100px 0;
  background: var(--olive-deep);
  position: relative; overflow: hidden;
}
.payments-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,214,176,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,214,176,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.payments-section .container { position: relative; z-index: 2; }
.payments-header { text-align: center; margin-bottom: 64px; }
.payments-header .section-label { color: var(--gold); }
.payments-header h2 {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 600; line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 16px;
}
.payments-header h2 em { font-style: italic; color: var(--olive-pale); }
.payments-header > p {
  font-size: 17px;
  color: rgba(200,214,176,0.7);
  max-width: 540px; margin: 0 auto;
}
.payments-header::after {
  content: ''; display: block;
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 28px auto 0;
}
.payment-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 880px; margin: 0 auto 64px;
}
.payment-card {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,214,176,0.15);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.payment-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.payment-logo {
  width: 60px; height: 60px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: white; font-weight: 800;
}
.payment-logo.stripe { background: #635BFF; font-family: 'Jost', sans-serif; font-size: 16px; letter-spacing: 0.02em; }
.payment-logo.selar { background: linear-gradient(135deg, #2DB34A, #1a8a35); font-family: 'Jost', sans-serif; font-size: 22px; }
.payment-logo.bank { background: linear-gradient(135deg, var(--gold), #a88838); font-size: 28px; }
.payment-card h3 {
  font-size: 19px; font-weight: 600;
  color: var(--ivory);
  margin-bottom: 8px;
}
.payment-card p {
  font-size: 13px;
  color: rgba(200,214,176,0.6);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.payment-card .pay-now {
  display: block;
  font-size: 11px;
  color: var(--gold);
  margin-top: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.klarna-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 6px 14px;
  background: rgba(200,168,90,0.14);
  border: 1px solid rgba(200,168,90,0.35);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ivory);
  font-weight: 600;
  font-family: 'Jost', sans-serif;
}
.klarna-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.payment-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(200,214,176,0.1);
  border: 1px solid rgba(200,214,176,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 56px;
}
.payment-feature {
  background: rgba(255,255,255,0.03);
  padding: 28px 30px;
  display: flex; align-items: center; gap: 16px;
}
.payment-feature .icon { font-size: 26px; flex-shrink: 0; }
.payment-feature h4 {
  font-size: 17px; font-weight: 600;
  color: var(--ivory);
  margin-bottom: 4px;
}
.payment-feature p {
  font-size: 12px;
  color: rgba(200,214,176,0.6);
  line-height: 1.5;
}

.payments-footer-note {
  text-align: center;
}
.payments-footer-note > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic;
  color: rgba(200,214,176,0.7);
  margin-bottom: 28px;
}
.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(200,214,176,0.3);
  color: var(--olive-pale);
  padding: 14px 36px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* ─── CONTACT SECTION ──────────────────────── */
#contact { padding: 100px 0; background: var(--ivory); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start;
}
.contact-sidebar h2 {
  font-size: 32px; font-weight: 600;
  color: var(--olive-deep);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-sidebar > p {
  font-size: 15px; line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 36px;
}
.contact-info-block { margin-bottom: 36px; }
.contact-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--olive-pale);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.contact-info-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 4px;
}
.contact-info-value { font-size: 15px; color: var(--text-mid); }
.contact-info-value a { color: var(--olive-mid); text-decoration: none; transition: color 0.2s; }
.contact-info-value a:hover { color: var(--olive-deep); }

.social-links { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--olive-pale);
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  color: var(--text-mid);
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
  color: var(--ivory);
}
.social-soon {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--olive-pale);
  border-radius: 2px;
  opacity: 0.55;
}
.social-soon span:first-child { font-size: 13px; font-weight: 500; color: var(--text-mid); }
.soon-tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--olive-light);
  background: var(--ivory-warm);
  padding: 2px 7px;
  border-radius: 2px;
}

.book-callout {
  background: var(--olive-deep);
  border-radius: 4px;
  padding: 28px;
  margin-top: 32px;
}
.book-callout h3 {
  font-size: 22px; font-weight: 600;
  color: var(--ivory);
  margin-bottom: 10px;
}
.book-callout p {
  font-size: 14px; line-height: 1.65;
  color: rgba(200,214,176,0.75);
  margin-bottom: 20px;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--olive-pale);
  border-radius: 4px;
  padding: 48px;
  box-shadow: 0 4px 40px rgba(58,74,46,0.06);
}
.form-card h2 {
  font-size: 32px; font-weight: 600;
  color: var(--olive-deep);
  margin-bottom: 8px;
}
.form-card .form-subtitle {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.5;
}
.form-section-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--olive-pale);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-group label .required { color: var(--gold); margin-left: 3px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--olive-pale);
  border-radius: 2px;
  background: var(--ivory);
  color: var(--text-dark);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--olive-mid);
  box-shadow: 0 0 0 3px rgba(90,110,62,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6e3e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.file-upload-area {
  border: 2px dashed var(--olive-pale);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  background: var(--ivory);
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
}
.file-upload-area:hover { border-color: var(--gold); }
.file-upload-area input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
}
.upload-icon { font-size: 32px; margin-bottom: 10px; }
.upload-title { font-size: 15px; font-weight: 500; color: var(--olive-deep); margin-bottom: 6px; }
.upload-subtitle { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.upload-formats {
  display: flex; flex-wrap: wrap; gap: 6px;
  justify-content: center;
  margin-top: 14px;
}
.format-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--ivory-warm);
  border: 1px solid var(--olive-pale);
  color: var(--text-mid);
  padding: 3px 8px;
  border-radius: 2px;
}
.upload-note { font-size: 12px; color: var(--text-light); margin-top: 12px; line-height: 1.6; }
.form-note {
  background: var(--ivory-warm);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 3px 3px 0;
  font-size: 13px; color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 28px;
}
.btn-submit {
  width: 100%;
  background: var(--olive-deep);
  color: var(--ivory);
  padding: 16px 32px;
  border: none; border-radius: 2px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--olive-mid); }
.form-disclaimer {
  font-size: 12px; color: var(--text-light);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* ─── FAQ ──────────────────────────────────── */
#faq { padding: 100px 0; background: var(--ivory-warm); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 56px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--olive-pale);
  border-radius: 4px;
  padding: 28px 32px;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 4px 24px rgba(58,74,46,0.08); }
.faq-item h3 {
  font-size: 18px; font-weight: 600;
  color: var(--olive-deep);
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 14px; line-height: 1.75;
  color: var(--text-mid);
}

/* ─── FOOTER ───────────────────────────────── */
footer {
  background: var(--text-dark);
  color: var(--olive-pale);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(200,214,176,0.1);
}
.footer-brand h3 {
  font-size: 28px; font-weight: 700;
  color: var(--ivory);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.footer-brand .tagline-sm {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px; line-height: 1.7;
  color: rgba(200,214,176,0.55);
  max-width: 320px;
}
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13.5px;
  color: rgba(200,214,176,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--olive-pale); }

.footer-bottom {
  padding-top: 32px;
  text-align: center;
}
.footer-bottom .quote-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(200,214,176,0.55);
  font-size: 15px;
  margin-bottom: 4px;
}
.footer-bottom .quote-es {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(200,214,176,0.45);
  font-size: 15px;
  margin-bottom: 14px;
}
.footer-bottom > p {
  font-size: 13px;
  color: rgba(200,214,176,0.35);
}
.footer-contact { font-size: 13px; color: rgba(200,214,176,0.5); margin-top: 8px; }
.footer-contact a { color: var(--olive-light); text-decoration: none; }
.footer-contact a:hover { color: var(--olive-pale); }

/* ─── FADE-UP ANIMATION ────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ───────────────────────────── */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .payment-features { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { padding: 0 24px; }
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .hamburger {
    display: flex; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px;
    background: none; border: none;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: background 0.3s;
  }

  .hero-content { grid-template-columns: 1fr; gap: 48px; padding-top: 40px; }
  .hero-visual { display: none; }
  h1.hero-title { font-size: clamp(40px, 9vw, 56px); }

  .page-hero { min-height: 40vh; padding: 120px 0 60px; }
  .page-hero h1 { font-size: clamp(34px, 8vw, 48px); }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .additional-services { padding: 32px 24px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .lead-inner { grid-template-columns: 1fr; gap: 48px; }
  .payment-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .trust-inner { justify-content: center; }
}
