/* ===== MM Investments — estilos globales =====
   Paleta oficial del Brandbook MM Investments (Identidad Visual | Paleta cromática):
   --navy   = Dark Green    -> #01171C
   --cream  = Gold Cream    -> #F3F2EC
   --gold   = Premium Gold  -> #C1B067
   --green-medium = Medium Green -> #014854
   --aqua   = Aqua (secundario) -> #83C8B3
   --light-green = Light Green (secundario) -> #ECFFF8
*/
:root {
  --navy: #01171C;
  --cream: #F3F2EC;
  --cream-2: #ECFFF8;
  --gold: #C1B067;
  --gold-light: #D6C98C;
  --green-medium: #014854;
  --aqua: #83C8B3;
  --white: #ffffff;
  --text-dark: #01171C;
  --text-muted: #4f5661;
  --text-light-muted: rgba(243, 242, 236, 0.7);
  --border: #e1ded7;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* ---- Reveal on scroll (fade-in-up), igual al componente Reveal.tsx de Lovable ---- */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-in-up.d1 { transition-delay: 0.1s; }
.fade-in-up.d2 { transition-delay: 0.2s; }
.fade-in-up.d3 { transition-delay: 0.3s; }
.fade-in-up.d4 { transition-delay: 0.4s; }
.fade-in-up.d5 { transition-delay: 0.5s; }
.fade-in-up.d6 { transition-delay: 0.6s; }
.fade-in-up.d7 { transition-delay: 0.7s; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.15;
}

.on-dark h1, .on-dark h2, .on-dark h3, .on-dark p, .on-dark span { color: var(--white); }

em { font-style: italic; color: var(--gold); }

.rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 20px 0 28px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

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

.btn-outline-dark { border-color: var(--white); color: var(--white); }
.btn-outline-dark:hover { background: rgba(255,255,255,0.08); }

.btn-outline-light { border-color: var(--text-dark); color: var(--text-dark); }

.btn-link { color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 21, 38, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.logo-mark {
  width: auto;
  height: 42px;
  color: var(--gold);
  flex-shrink: 0;
}
.logo-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.25);
}
.logo-word {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

nav.main-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
nav.main-nav a {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav.main-nav a.active, nav.main-nav a:hover { color: var(--gold-light); }

.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-cta .btn-outline-dark { padding: 11px 18px; font-size: 12px; }

.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(7,17,35,0.55), rgba(7,17,35,0.88)), url('hero-skyscrapers.jpg') center/cover;
  padding-top: 84px;
  position: relative;
}
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 180px 0 60px;
}
.page-hero.nosotros-hero { background: linear-gradient(180deg, rgba(7,17,35,0.55), rgba(7,17,35,0.9)), url('about-hero.jpg') center/cover; }
.hero .container { padding-top: 60px; padding-bottom: 60px; }
.hero-tag { margin-bottom: 24px; }
.hero h1 { font-size: 68px; color: var(--white); max-width: 780px; }
.hero p.lead { color: var(--text-light-muted); font-size: 18px; max-width: 520px; margin: 28px 0 36px; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 60px; flex-wrap: wrap; }
.hero-foot { display: flex; justify-content: space-between; color: var(--text-light-muted); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }

/* ---- Section generic ---- */
section {
  padding: 110px 0;
}
.section-dark { background: var(--navy); }
.section-cream { background: var(--cream); }

.fund-section { border-top: 1px solid rgba(248,245,239,0.12); border-bottom: 1px solid rgba(248,245,239,0.12); }
.fund-grid { max-width: 640px; text-align: left; }
.fund-badge { display: inline-block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 7px 16px; }
.fund-grid h2 em { color: var(--gold-light); }

.factsheet { max-width: 320px; margin-top: 32px; border: 1px solid rgba(255,255,255,0.15); }
.factsheet-header {
  background: rgba(193,176,103,0.12);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.factsheet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.factsheet-row:last-child { border-bottom: none; }
.factsheet-row span { color: var(--text-light-muted); }
.factsheet-row strong { color: var(--white); font-size: 15px; font-weight: 700; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.two-col h2 { font-size: 42px; }

.stats { display: flex; gap: 56px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.1); }
.on-dark .stats { border-top-color: rgba(255,255,255,0.15); }
.stat-num { font-family: var(--serif); font-size: 32px; color: var(--text-dark); }
.on-dark .stat-num { color: var(--white); }
.stat-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.on-dark .stat-label { color: var(--text-light-muted); }

/* ---- Card grids ---- */
.card-grid-3, .card-grid-2 {
  display: grid;
  gap: 24px;
  margin-top: 56px;
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 40px 32px;
}
.section-cream .card { border-color: rgba(0,0,0,0.08); background: var(--white); }

.card-icon { color: var(--gold); font-size: 30px; margin-bottom: 20px; }
.card h3 { font-size: 24px; margin-bottom: 4px; }
.card p { color: var(--text-light-muted); margin: 16px 0 24px; font-size: 15px; }
.section-cream .card p { color: var(--text-muted); }

.section-head { max-width: 640px; margin-bottom: 0; }
.section-head h2 { font-size: 42px; }
.section-head p.lead { color: var(--text-muted); font-size: 17px; margin-top: 20px; }
.on-dark .section-head p.lead { color: var(--text-light-muted); }

/* ---- Servicios grid (6) ---- */
.services-hero {
  background: linear-gradient(180deg, rgba(7,17,35,0.6), rgba(7,17,35,0.92)), url('services-hero.jpg') center/cover;
  padding: 180px 0 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-left: 1px solid rgba(0,0,0,0.08);
}
.service-card {
  padding: 48px 40px;
  border-right: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: var(--white);
  transition: background 0.3s ease, color 0.3s ease;
}
.service-card .num { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--gold); float: right; transition: color 0.3s ease; }
.service-card .card-icon { color: var(--gold); margin-bottom: 24px; }
.service-card .card-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 22px; margin-bottom: 4px; transition: color 0.3s ease; }
.service-card .rule { transition: background 0.3s ease; }
.service-card p { color: var(--text-muted); margin-top: 16px; font-size: 15px; transition: color 0.3s ease; }
.service-card:hover {
  background: var(--navy);
}
.service-card:hover h3 { color: var(--white); }
.service-card:hover p { color: var(--text-light-muted); }
.service-card:hover .num { color: var(--gold-light); }

/* ---- Form section ---- */
.form-card {
  background: var(--white);
  padding: 48px;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.checklist { margin: 28px 0 36px; }
.checklist li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: var(--text-dark); font-size: 15px; }
.checklist li::before { content: "✓"; color: var(--gold); font-weight: 700; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.field label .req { color: var(--gold); }
.field input, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
}
.field-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-muted); margin: 24px 0; }
.field-checkbox input { margin-top: 3px; }
.field-hidden { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form-error {
  margin-top: 16px;
  font-size: 13px;
  color: #c0392b;
}
.form-success {
  background: var(--white);
  padding: 48px;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  text-align: center;
}
.form-success h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 14px;
}
.form-success p { color: var(--text-muted); font-size: 16px; }

/* ---- Contacto / mapa ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-item { display: flex; gap: 14px; margin-bottom: 26px; }
.contact-item .label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light-muted); }
.contact-item .value { color: var(--white); font-size: 17px; font-weight: 600; margin-top: 4px; }
.map-embed { width: 100%; height: 420px; border: 0; filter: grayscale(0.1); }

/* ---- Noticias / Prensa ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.news-card:hover { box-shadow: 0 16px 40px rgba(7,17,35,0.1); transform: translateY(-3px); }
.news-card-body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.news-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.news-source { color: var(--gold); font-weight: 700; }
.news-date { color: var(--text-muted); }
.news-card h3 { font-size: 22px; margin-bottom: 12px; }
.news-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; flex: 1; }

.back-link { display: inline-block; margin-bottom: 18px; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-light-muted); }
.back-link:hover { color: var(--gold-light); }
.notes-list { max-width: 820px; margin-top: 8px; }
.note-item { padding: 56px 0; border-top: 1px solid var(--border); }
.note-item:first-child { border-top: none; padding-top: 0; }
.note-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.note-meta .news-source { color: var(--gold); font-weight: 700; }
.note-meta .news-date { display: flex; align-items: center; gap: 6px; color: var(--text-muted); }
.note-meta svg { width: 14px; height: 14px; }
.note-item h3 { font-size: 30px; margin-bottom: 18px; }
.note-item p { color: var(--text-muted); font-size: 16px; margin-bottom: 22px; }
.note-links { display: flex; align-items: center; gap: 24px; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.note-links a { display: inline-flex; align-items: center; gap: 8px; }
.note-links .note-link-primary { color: var(--text-dark); }
.note-links .note-link-secondary { color: var(--text-muted); }
.note-links a:hover { color: var(--gold); }

/* ---- Detalle de nota ---- */
.note-detail-body { max-width: 720px; }
.note-detail-body p { color: var(--text-muted); font-size: 17px; line-height: 1.8; margin-bottom: 22px; }
.note-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.note-tags span { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light-muted); border: 1px solid rgba(248,245,239,0.3); padding: 6px 14px; }
.note-quote { border-left: 3px solid var(--gold); padding: 4px 0 4px 26px; margin: 30px 0; }
.note-quote p { font-style: italic; font-size: 19px; color: var(--text-dark); line-height: 1.7; margin-bottom: 12px; }
.note-quote cite { font-style: normal; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); }
.note-original-box {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.note-original-box p { margin: 0; color: var(--text-muted); font-size: 14px; max-width: 380px; }
.note-original-box p a { color: var(--gold); text-decoration: underline; }
.note-original-box .btn-gold { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }

/* ---- Misión / Visión ---- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.mv-card {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 40px 36px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.mv-card:hover { border-color: rgba(193,176,103,0.4); background: rgba(255,255,255,0.02); }
.mv-card .card-icon { margin-bottom: 22px; }
.mv-card h4 { color: var(--gold); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.mv-rule { width: 32px; height: 2px; background: var(--gold); border: none; margin-bottom: 18px; }
.mv-card p { color: var(--text-light-muted); font-size: 15px; }

/* ---- Valores grid ---- */
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 56px; }
.value-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.value-item:hover { box-shadow: 0 16px 40px rgba(7,17,35,0.08); transform: translateY(-3px); }
.value-item .value-icon { color: var(--gold); margin-bottom: 22px; }
.value-item .value-icon svg { width: 28px; height: 28px; }
.value-item h4 { font-size: 19px; margin-bottom: 10px; }
.value-item p { color: var(--text-muted); font-size: 14px; }

/* ---- Team grid ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 28px;
  margin-top: 56px;
}
.team-card .photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/3.4;
  overflow: hidden;
  background: linear-gradient(135deg, #23324d, #0c1a30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 40px;
  margin-bottom: 18px;
}
.team-card .photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.team-card:hover .photo img {
  filter: grayscale(0);
  transform: scale(1.03);
}
.team-card h3 { font-size: 20px; color: var(--white); }
.team-card .role { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin: 6px 0 12px; }
.team-card p.bio { color: var(--text-light-muted); font-size: 13.5px; text-align: justify; }

/* ---- Footer ---- */
footer.site-footer {
  background: var(--navy);
  padding: 80px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-grid h4 { color: var(--white); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-grid p, .footer-grid a, .footer-grid li { color: var(--text-light-muted); font-size: 14px; }
.footer-grid ul li { margin-bottom: 12px; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; color: var(--text-light-muted); font-size: 12px; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.social-links svg { width: 18px; height: 18px; }

.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; gap: 10px; align-items: flex-start; }
.contact-list svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); width: 16px; height: 16px; }

.cnv-bar {
  text-align: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cnv-bar .divider { color: rgba(255,255,255,0.3); margin: 0 14px; }
.cnv-bar .matricula { font-family: var(--serif); font-style: italic; color: var(--gold-light); font-size: 19px; }

/* ---- Widget cotizaciones (solo Inicio) ---- */
.fx-widget {
  position: fixed;
  top: 104px;
  right: 20px;
  width: 186px;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
  overflow: hidden;
  z-index: 80;
  border: 1px solid rgba(255,255,255,0.08);
}
.fx-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 14px 9px;
}
.fx-widget-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--aqua);
}
.fx-widget-live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 0 rgba(131,200,179,0.6);
  animation: fx-pulse 1.8s infinite;
}
@keyframes fx-pulse {
  0% { box-shadow: 0 0 0 0 rgba(131,200,179,0.5); }
  70% { box-shadow: 0 0 0 6px rgba(131,200,179,0); }
  100% { box-shadow: 0 0 0 0 rgba(131,200,179,0); }
}
.fx-slide-viewport {
  position: relative;
  height: 92px;
  margin: 0 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.fx-slide {
  position: absolute;
  inset: 0;
  padding: 12px 0 0;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.fx-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fx-slide-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 8px;
}
.fx-slide-rates { display: flex; justify-content: space-between; }
.fx-slide-rates div span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 2px;
}
.fx-slide-rates div strong {
  font-size: 14px;
  color: var(--gold-light);
  font-weight: 700;
}
.fx-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 10px 0;
}
.fx-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
}
.fx-dot.is-active { background: var(--gold); }
.fx-widget-foot {
  font-size: 9.5px;
  color: var(--text-light-muted);
  padding: 8px 14px 11px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.fx-widget-foot a { color: var(--gold); font-weight: 600; }
@media (max-width: 1440px) {
  .fx-widget { display: none; }
}

.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 90;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  nav.main-nav, .nav-cta .btn-gold, .nav-cta .btn-outline-dark { display: none; }
  .nav-toggle { display: block; }

  .site-header .container { flex-wrap: wrap; }

  nav.main-nav.open {
    display: block;
    flex: 1 0 100%;
    order: 5;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    background: var(--navy);
  }
  nav.main-nav.open ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .main-nav.open ~ .nav-cta {
    display: flex;
    flex: 1 0 100%;
    order: 6;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
    padding-bottom: 24px;
    background: var(--navy);
  }
  .main-nav.open ~ .nav-cta .btn-outline-dark,
  .main-nav.open ~ .nav-cta .btn-gold {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .fx-widget {
    display: block;
    position: static;
    width: calc(100% - 40px);
    max-width: 340px;
    margin: 100px auto 0;
  }
  .hero { padding-top: 24px; }

  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .card-grid-3, .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
}
