/* ===== CSS VARIABLES ===== */
:root {
  --navy: #1A2B49;
  --navy-dark: #111d33;
  --navy-mid: #243559;
  --desert: #E8A87C;
  --desert-dark: #d4905f;
  --canvas: #F9F9F9;
  --charcoal: #2C2C2C;
  --gray-light: #f0f0f0;
  --gray-mid: #777;
  --white: #ffffff;
  --border: rgba(26,43,73,0.1);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);

  /* Montserrat-tuned type scale */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --tracking-tight: -0.02em;
  --tracking-wide: 0.12em;
  --tracking-wider: 0.18em;
  --line-heading: 1.15;
  --line-body: 1.72;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: var(--line-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-body); }

/* ===== TYPOGRAPHY — MONTSERRAT SYSTEM ===== */
/* Montserrat is geometric & tight — reduce letter-spacing on large sizes,
   use weight contrast (800/900 headlines vs 400/600 body) for hierarchy */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: var(--line-heading);
  color: var(--navy);
  letter-spacing: var(--tracking-tight);
}
h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}
h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h4 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0em;
}

/* Montserrat italic doesn't have strong personality — use colored spans instead */
em {
  font-style: normal;
  color: var(--desert);
  font-weight: inherit;
}

p {
  font-size: 1rem;
  line-height: var(--line-body);
  color: var(--gray-mid);
  margin-bottom: 1.1rem;
  font-weight: 400;
}
p:last-child { margin-bottom: 0; }

/* Labels — Montserrat shines at small-caps / spaced uppercase */
.label, .section-label, .hero-badge, .acq-location, .acq-tag,
.stat-label, .badge-label {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 68px; }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--desert);
  margin-bottom: 14px;
}
.section-title { margin-bottom: 16px; }
.section-desc {
  font-family: var(--font-body);
  color: var(--gray-mid);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 400;
}

/* ===== BUTTONS — Montserrat looks best at bold + wide-tracked ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--desert); color: var(--white); border-color: var(--desert); }
.btn-primary:hover {
  background: var(--desert-dark);
  border-color: var(--desert-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,168,124,0.38);
}
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 17px 40px; font-size: 0.82rem; }
.btn-sm { padding: 9px 20px; font-size: 0.72rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { background: var(--navy); box-shadow: 0 2px 24px rgba(0,0,0,0.25); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark { width: 36px; height: 36px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.logo-text em {
  font-style: normal;
  color: rgba(255,255,255,0.65);
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: nowrap; }
.nav-links li a {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 13px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links li a:hover, .nav-links li a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--desert) !important;
  color: var(--white) !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--desert-dark) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all var(--transition); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,29,51,0.90) 0%, rgba(17,29,51,0.58) 60%, rgba(17,29,51,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 120px;
  max-width: 740px;
  margin-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,168,124,0.18);
  border: 1px solid rgba(232,168,124,0.45);
  color: var(--desert);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  line-height: 1.78;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 68px; }
.hero-trust { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; }
.trust-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-item span:last-child {
  font-family: var(--font-display);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 5px;
  font-weight: 600;
}
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-scroll-hint { position: absolute; bottom: 40px; right: 40px; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.hero-scroll-hint span {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-lr;
  font-weight: 600;
}
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: 0.4; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--canvas); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  align-items: start;
}
.step-card {
  padding: 48px 40px;
  background: var(--white);
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-card::before {
  content: attr(data-step);
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 3.8rem; font-weight: 900;
  color: rgba(26,43,73,0.04); line-height: 1;
  letter-spacing: -0.04em;
}
.step-icon {
  width: 56px; height: 56px;
  background: rgba(232,168,124,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.step-icon svg { width: 28px; height: 28px; }
.step-card h3 { margin-bottom: 12px; color: var(--navy); }
.step-card p { color: var(--gray-mid); font-size: 0.95rem; margin: 0; line-height: 1.7; }
.step-connector { display: flex; align-items: center; justify-content: center; padding-top: 68px; }
.step-connector::after {
  content: '→';
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--desert);
  opacity: 0.55;
  font-weight: 300;
}

/* ===== WHY CHOOSE US ===== */
.why-us { background: var(--white); }
.why-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-image-col { position: relative; border-radius: var(--radius); overflow: visible; }
.why-image-col img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.why-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 20px 24px;
  text-align: center; box-shadow: var(--shadow-md);
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  color: var(--desert); line-height: 1;
  letter-spacing: -0.02em;
}
.badge-label {
  font-family: var(--font-display);
  font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.65);
  margin-top: 5px; display: block; font-weight: 700;
}
.why-content-col .section-title { margin-bottom: 12px; }
.why-content-col .section-desc { text-align: left; margin: 0 0 32px; }
.why-list { margin-bottom: 40px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.why-list li:last-child { border-bottom: none; }
.why-icon {
  width: 36px; height: 36px;
  background: rgba(232,168,124,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.why-icon svg { width: 16px; height: 16px; }
.why-list li div strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 5px;
  letter-spacing: -0.005em;
}
.why-list li div p { color: var(--gray-mid); font-size: 0.9rem; margin: 0; line-height: 1.65; }

/* ===== RECENT ACQUISITIONS ===== */
.acquisitions { background: var(--canvas); }
.acq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 20px;
}
.acq-grid > .acq-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.acq-grid > .acq-card:nth-child(2) { grid-column: 1; grid-row: 2; }
.acq-grid > .acq-card:nth-child(3) { grid-column: 2; grid-row: 1 / 3; }
.acq-grid > .acq-card:nth-child(4) { grid-column: 3; grid-row: 1 / 3; }
.acq-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.acq-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.acq-img-wrap { flex: 1; overflow: hidden; min-height: 0; }
.acq-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.acq-card:hover .acq-img-wrap img { transform: scale(1.05); }
.acq-info { padding: 16px 20px; flex-shrink: 0; }
.acq-location {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--desert); margin-bottom: 6px;
}
.acq-location svg { width: 12px; height: 14px; }
.acq-info h4 {
  font-family: var(--font-display);
  font-size: 0.88rem; color: var(--navy);
  margin-bottom: 8px; font-weight: 700;
  letter-spacing: -0.01em;
}
.acq-tag {
  display: inline-block;
  font-family: var(--font-display);
  background: rgba(26,43,73,0.07); color: var(--navy);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--canvas); border-radius: var(--radius);
  padding: 40px; border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-card--highlight { background: var(--navy); border-color: var(--navy); }
.testi-card--highlight p, .testi-card--highlight .testi-author span { color: rgba(255,255,255,0.65); }
.testi-card--highlight .testi-author strong { color: var(--white); }
.testi-stars { font-size: 0.95rem; color: var(--desert); margin-bottom: 20px; letter-spacing: 3px; }
.testi-card p {
  font-family: var(--font-body);
  font-size: 0.95rem; color: var(--gray-mid);
  font-style: italic; margin-bottom: 28px; line-height: 1.82;
}
.testi-author { display: flex; flex-direction: column; }
.testi-author strong {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.85rem;
  color: var(--navy); letter-spacing: -0.005em;
}
.testi-author span {
  font-family: var(--font-display);
  font-size: 0.68rem; color: var(--gray-mid);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 3px; font-weight: 600;
}

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; padding: 120px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,29,51,0.92), rgba(26,43,73,0.78)); }
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content p { font-family: var(--font-body); color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 40px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-family: var(--font-body); color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.75; }
.footer-nav h4, .footer-contact h4, .footer-form h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-nav ul li, .footer-contact ul li { margin-bottom: 12px; }
.footer-nav ul li a, .footer-contact ul li a {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.45); font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-nav ul li a:hover, .footer-contact ul li a:hover { color: var(--desert); }
.footer-contact ul li { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.7; }
.footer-quick-form { display: flex; flex-direction: column; gap: 10px; }
.footer-quick-form input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: border-color var(--transition);
}
.footer-quick-form input::placeholder { color: rgba(255,255,255,0.3); }
.footer-quick-form input:focus { outline: none; border-color: var(--desert); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.3); font-size: 0.72rem;
  letter-spacing: 0.04em; margin: 0;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.3); font-size: 0.72rem;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--desert); }

/* ===== CONSENT CHECKBOX ===== */
.consent-label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.consent-label input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--desert); cursor: pointer; }
.consent-label span { font-family: var(--font-body); font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* ===== PAGE HERO ===== */
.page-hero { position: relative; padding: 180px 0 100px; overflow: hidden; min-height: 60vh; display: flex; align-items: center; }
.page-hero--short { min-height: 50vh; padding: 160px 0 80px; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,29,51,0.92) 0%, rgba(17,29,51,0.68) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: center; }
.page-hero-content h1 { color: var(--white); margin-bottom: 16px; }
.page-hero-content p { font-family: var(--font-body); color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 540px; margin: 0 auto; }

/* ===== ABOUT PAGE ===== */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text .section-label { display: block; margin-bottom: 8px; }
.about-text .section-title { margin-bottom: 24px; }
.about-text p { font-family: var(--font-body); color: var(--gray-mid); line-height: 1.82; margin-bottom: 20px; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.values-section { background: var(--canvas); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 32px; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { width: 56px; height: 56px; background: rgba(232,168,124,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.value-icon svg { width: 28px; height: 28px; }
.value-card h3 { margin-bottom: 12px; font-size: 1.05rem; }
.value-card p { color: var(--gray-mid); font-size: 0.9rem; margin: 0; line-height: 1.7; }

.stats-section { background: var(--navy); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-block { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 900;
  color: var(--desert); line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.65rem; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700;
}

.markets-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.market-card { border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; }
.market-card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.7); }
.market-card:hover img { transform: scale(1.08); filter: brightness(0.55); }
.market-card span {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 12px 12px;
  background: linear-gradient(to top, rgba(17,29,51,0.92), transparent);
  font-family: var(--font-display);
  color: var(--white); font-weight: 700;
  font-size: 0.72rem; text-align: center;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--canvas); }
.contact-container { display: grid; grid-template-columns: 1fr 1.8fr; gap: 64px; align-items: flex-start; }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 32px; color: var(--navy); }
.contact-details { margin-bottom: 40px; }
.contact-details li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-details li:last-child { border-bottom: none; }
.contact-icon { width: 44px; height: 44px; background: rgba(232,168,124,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; }
.contact-details li div strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700; color: var(--navy);
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.14em; margin-bottom: 4px;
}
.contact-details li div a, .contact-details li div span { font-family: var(--font-body); color: var(--gray-mid); font-size: 0.9rem; line-height: 1.65; }
.contact-details li div a:hover { color: var(--desert); }
.contact-hours { margin-bottom: 32px; }
.contact-hours h4 {
  font-family: var(--font-display);
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--navy); margin-bottom: 16px; font-weight: 700;
}
.contact-hours ul li { display: flex; justify-content: space-between; font-family: var(--font-body); font-size: 0.85rem; color: var(--gray-mid); padding: 7px 0; border-bottom: 1px solid var(--border); }
.contact-hours ul li:last-child { border-bottom: none; }
.contact-image img { border-radius: var(--radius-sm); width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 56px; box-shadow: var(--shadow-md); }
.form-header { margin-bottom: 40px; }
.form-header h2 { margin-bottom: 10px; }
.form-header p { font-family: var(--font-body); color: var(--gray-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.1em;
}
.required { color: var(--desert); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--desert);
  box-shadow: 0 0 0 3px rgba(232,168,124,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.consent-group .consent-label { cursor: pointer; }
.consent-group .consent-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--desert); flex-shrink: 0; margin-top: 2px; }
.consent-group .consent-label span { font-family: var(--font-body); font-size: 0.82rem; color: var(--gray-mid); line-height: 1.65; }
.consent-group .consent-label span a { color: var(--desert); text-decoration: underline; }
.form-disclaimer { font-family: var(--font-body); text-align: center; font-size: 0.78rem; color: var(--gray-mid); margin-top: 16px; }
.form-success { text-align: center; padding: 60px 20px; }
.success-icon { width: 80px; height: 80px; margin: 0 auto 24px; }
.success-icon svg { width: 80px; height: 80px; }
.form-success h3 { margin-bottom: 12px; }
.form-success p { font-family: var(--font-body); color: var(--gray-mid); margin-bottom: 32px; }
.map-section { background: var(--navy-dark); }
.map-section iframe { display: block; filter: grayscale(20%) contrast(1.05); }

/* ===== LEGAL PAGES ===== */
.legal-hero { background: var(--navy); padding: 140px 0 60px; text-align: center; }
.legal-hero h1 { color: var(--white); margin-bottom: 8px; }
.legal-hero p { font-family: var(--font-display); color: rgba(255,255,255,0.4); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.legal-section { background: var(--canvas); }
.legal-container { display: grid; grid-template-columns: 240px 1fr; gap: 64px; align-items: flex-start; }
.legal-toc { position: sticky; top: 100px; background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.legal-toc h4 {
  font-family: var(--font-display);
  font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gray-mid); margin-bottom: 16px; font-weight: 700;
}
.legal-toc ul li { margin-bottom: 10px; }
.legal-toc ul li a { font-family: var(--font-body); font-size: 0.82rem; color: var(--gray-mid); transition: color var(--transition); line-height: 1.4; display: block; }
.legal-toc ul li a:hover { color: var(--desert); }
.legal-body section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.legal-body section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-body h2 {
  font-size: 1.3rem; color: var(--navy); margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 2px solid rgba(232,168,124,0.3);
}
.legal-body h3 { font-size: 1.05rem; margin: 24px 0 12px; }
.legal-body p { font-family: var(--font-body); color: var(--gray-mid); line-height: 1.82; margin-bottom: 16px; }
.legal-body ul { margin: 16px 0 20px 20px; list-style: disc; }
.legal-body ul li { font-family: var(--font-body); color: var(--gray-mid); line-height: 1.75; margin-bottom: 8px; font-size: 0.95rem; }
.legal-contact-box { background: var(--canvas); border-left: 3px solid var(--desert); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 24px 28px; margin-top: 24px; }
.legal-contact-box p { font-family: var(--font-body); color: var(--charcoal); margin-bottom: 6px; font-size: 0.9rem; }
.legal-contact-box a { color: var(--desert); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-container { gap: 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .markets-grid { grid-template-columns: repeat(3, 1fr); }
  .about-story { grid-template-columns: 1fr; gap: 48px; }
  .acq-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px;
  }
  .acq-grid > .acq-card:nth-child(1) { grid-column: 1; grid-row: 1; }
  .acq-grid > .acq-card:nth-child(2) { grid-column: 2; grid-row: 1; }
  .acq-grid > .acq-card:nth-child(3) { grid-column: 1; grid-row: 2; }
  .acq-grid > .acq-card:nth-child(4) { grid-column: 2; grid-row: 2; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    height: 100vh; width: min(320px, 80vw);
    background: var(--navy);
    flex-direction: column; align-items: flex-start;
    padding: 80px 32px 40px;
    transition: right var(--transition);
    box-shadow: -4px 0 32px rgba(0,0,0,0.3);
    gap: 4px; overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 14px 16px; font-size: 0.85rem; }
  .hero-content { margin-left: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { padding-top: 0; height: 36px; }
  .step-connector::after { content: '↓'; }
  .why-container { grid-template-columns: 1fr; }
  .why-img-badge { right: 12px; bottom: -16px; }
  .acq-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .acq-grid > .acq-card:nth-child(1),
  .acq-grid > .acq-card:nth-child(2),
  .acq-grid > .acq-card:nth-child(3),
  .acq-grid > .acq-card:nth-child(4) { grid-column: 1 !important; grid-row: auto !important; }
  .acq-img-wrap { min-height: 220px; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-container { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .legal-container { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trust-divider { display: none; }
}
