@charset "UTF-8";
/* ═══════════════════════════════════════════════════════════════
   GSM GLOBAL STYLESHEET — Georgia Smart Services
   Versión: 1.7 | --gsm-navy corregido a #00509D (azul vibrante)
   Uso: cargar en todas las páginas antes de cualquier CSS específico
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   0. CSS VARIABLES
───────────────────────────────────────── */
:root {
  /* Brand */
  --gsm-primary:      #FDC500;
  --gsm-primary-rgb:  253, 197, 0;
  --gsm-red:          #CC0001;
  --gsm-red-hover:    #aa0001;
  --gsm-navy:         #00509D;
  --gsm-navy-rgb:     0, 80, 157;
  --gsm-navy-deep:    #003870;
  --gsm-gold:         #F4A307;

  /* Altura del menú — calculada y actualizada por gsm-global.js */
  --gsm-menu-height:  0px;

  /* Text — dark bg */
  --gsm-text-primary-dark:    #ffffff;
  --gsm-text-secondary-dark:  rgba(255,255,255,0.62);
  --gsm-text-muted-dark:      rgba(255,255,255,0.35);
  --gsm-text-label-dark:      rgba(255,255,255,0.28);

  /* Text — white bg */
  --gsm-text-primary-light:   #1A2530;
  --gsm-text-secondary-light: #2a3a4a;
  --gsm-text-muted-light:     #5A6A7A;
  --gsm-text-label-light:     rgba(0,80,157,0.55);

  /* Borders */
  --gsm-border-dark:  rgba(255,255,255,0.09);
  --gsm-border-light: rgba(0,80,157,0.12);

  /* Surfaces */
  --gsm-surface-dark:   rgba(255,255,255,0.05);
  --gsm-surface-light:  rgba(0,80,157,0.03);

  /* Typography */
  --gsm-font-body:    'DM Sans', sans-serif;
  --gsm-font-display: 'Barlow Condensed', sans-serif;

  /* Spacing scale */
  --gsm-pad-mobile:  52px 20px;
  --gsm-pad-tablet:  64px 40px;
  --gsm-pad-desktop: 80px 60px;

  /* Radius */
  --gsm-radius-sm:  6px;
  --gsm-radius-md:  10px;
  --gsm-radius-lg:  14px;

  /* Transitions */
  --gsm-transition: 0.2s ease;
  --gsm-transition-slow: 0.35s cubic-bezier(0.16,1,0.3,1);
}

/* ─────────────────────────────────────────
   1. BASE RESET
───────────────────────────────────────── */
.gsm-section *,
.gsm-section *::before,
.gsm-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─────────────────────────────────────────
   2. SECTION WRAPPERS
───────────────────────────────────────── */
.gsm-section {
  font-family: var(--gsm-font-body);
  padding: var(--gsm-pad-mobile);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.gsm-section--dark {
  background: var(--gsm-navy);
  color: var(--gsm-text-primary-dark);
}

.gsm-section--white {
  background: #ffffff;
  color: var(--gsm-text-primary-light);
}

.gsm-section--hero {
  padding-top: calc(var(--gsm-menu-height) + 52px);
}

.gsm-section--last,
.gsm-section:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
}

.gsm-section--dark::before,
.gsm-section--white::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,0,1,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gsm-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────
   3. SECTION HEADER
───────────────────────────────────────── */
.gsm-section-header {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gsm-section-header--split {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gsm-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.gsm-section--dark .gsm-label  { color: var(--gsm-text-label-dark); }
.gsm-section--white .gsm-label { color: var(--gsm-text-label-light); }

.gsm-title {
  font-family: var(--gsm-font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.5px;
  margin: 0;
}
.gsm-section--dark .gsm-title  { color: var(--gsm-text-primary-dark); }
.gsm-section--white .gsm-title { color: var(--gsm-text-primary-light); }
.gsm-title .gsm-accent         { color: var(--gsm-red); font-style: normal; }

.gsm-subtitle {
  font-size: 15px;
  line-height: 1.7;
  max-width: 580px;
}
.gsm-section--dark .gsm-subtitle  { color: var(--gsm-text-muted-dark); }
.gsm-section--white .gsm-subtitle { color: var(--gsm-text-muted-light); }

.gsm-section-header--center {
  text-align: center;
}
.gsm-section-header--center .gsm-subtitle {
  margin: 0 auto;
}

.gsm-header-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(204,0,1,0.45) 0%, rgba(13,27,42,0.08) 40%, transparent 100%);
  margin-top: 8px;
}

/* ─────────────────────────────────────────
   4. TIPOGRAFÍA — BODY TEXT
───────────────────────────────────────── */
.gsm-body-text {
  font-size: 15px;
  line-height: 1.8;
}
.gsm-section--dark .gsm-body-text  { color: var(--gsm-text-secondary-dark); }
.gsm-section--white .gsm-body-text { color: var(--gsm-text-secondary-light); }

.gsm-text-sm {
  font-size: 13px;
  line-height: 1.75;
}
.gsm-section--dark .gsm-text-sm  { color: rgba(255,255,255,0.45); }
.gsm-section--white .gsm-text-sm { color: rgba(13,27,42,0.55); }

.gsm-link {
  color: var(--gsm-red);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--gsm-transition);
}
.gsm-link:hover { color: var(--gsm-red-hover); }

/* ─────────────────────────────────────────
   5. BOTONES
───────────────────────────────────────── */
.gsm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gsm-font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: var(--gsm-radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--gsm-transition), transform 0.15s, box-shadow var(--gsm-transition), color var(--gsm-transition), gap var(--gsm-transition);
}
.gsm-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.gsm-btn--primary {
  background: var(--gsm-red);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(204,0,1,0.35);
}
.gsm-btn--primary:hover {
  background: var(--gsm-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(204,0,1,0.45);
}

.gsm-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.20);
}
.gsm-btn--ghost:hover {
  border-color: rgba(255,255,255,0.45);
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}

.gsm-btn--ghost-light {
  background: transparent;
  color: var(--gsm-navy);
  border: 1px solid rgba(13,27,42,0.20);
}
.gsm-btn--ghost-light:hover {
  border-color: rgba(13,27,42,0.45);
  background: rgba(13,27,42,0.04);
}

.gsm-btn--text {
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gsm-red);
  gap: 7px;
}
.gsm-btn--text:hover { color: #ff1a1a; gap: 10px; }
.gsm-btn--text svg   { width: 14px; height: 14px; }

/* ─────────────────────────────────────────
   6. TARJETAS (CARDS)
───────────────────────────────────────── */
.gsm-card {
  border-radius: var(--gsm-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gsm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(13,27,42,0.18);
}

.gsm-card--dark {
  background: var(--gsm-navy);
}

.gsm-card--accent {
  background: var(--gsm-navy-deep);
  border: 1px solid rgba(204,0,1,0.22);
}

.gsm-card--light {
  background: rgba(13,27,42,0.02);
  border: 1px solid var(--gsm-border-light);
}

.gsm-card--glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gsm-card-img-wrap {
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.gsm-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gsm-card:hover .gsm-card-img { transform: scale(1.03); }

.gsm-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gsm-red);
  color: #ffffff;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
}

.gsm-card-body {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.gsm-card-title {
  font-family: var(--gsm-font-display);
  font-size: 22px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.3px;
  line-height: 1.1; margin: 0;
}
.gsm-card--dark .gsm-card-title,
.gsm-card--accent .gsm-card-title,
.gsm-card--glass .gsm-card-title { color: #ffffff; }
.gsm-card--light .gsm-card-title  { color: var(--gsm-navy); }

.gsm-card-rule {
  width: 28px; height: 2px;
  background: var(--gsm-red);
  border-radius: 2px;
  flex-shrink: 0;
}

.gsm-card-desc {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  flex: 1;
}
.gsm-card--dark .gsm-card-desc,
.gsm-card--accent .gsm-card-desc,
.gsm-card--glass .gsm-card-desc { color: rgba(255,255,255,0.55); }
.gsm-card--light .gsm-card-desc  { color: var(--gsm-text-secondary-light); }

.gsm-card-cta { margin-top: 6px; }

/* ─────────────────────────────────────────
   7. STATS CARD
───────────────────────────────────────── */
.gsm-stats-card {
  border-radius: var(--gsm-radius-lg);
  padding: 32px;
}
.gsm-stats-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gsm-text-label-dark);
  margin-bottom: 24px;
}
.gsm-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
}
.gsm-stat-number {
  font-family: var(--gsm-font-display);
  font-size: 42px; font-weight: 800;
  color: #ffffff; line-height: 1; margin-bottom: 4px;
}
.gsm-stat-number .gsm-accent { color: var(--gsm-red); }
.gsm-stat-label { font-size: 12px; color: var(--gsm-text-muted-dark); font-weight: 500; }
.gsm-stats-rule { height: 1px; background: rgba(255,255,255,0.08); margin: 24px 0; }
.gsm-stats-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.gsm-stats-footer-text { font-size: 12px; color: var(--gsm-text-muted-dark); }
.gsm-stars { color: var(--gsm-gold); font-size: 13px; letter-spacing: 2px; }

/* ─────────────────────────────────────────
   8. CONTACT LIST
───────────────────────────────────────── */
.gsm-contact-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.gsm-contact-item { display: flex; align-items: flex-start; gap: 12px; }

.gsm-contact-icon-box {
  width: 34px; height: 34px;
  border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.gsm-section--dark .gsm-contact-icon-box {
  background: rgba(204,0,1,0.12);
  border: 1px solid rgba(204,0,1,0.22);
  color: var(--gsm-red);
}
.gsm-section--white .gsm-contact-icon-box {
  background: rgba(204,0,1,0.07);
  border: 1px solid rgba(204,0,1,0.16);
  color: var(--gsm-red);
}
.gsm-contact-icon-box svg { width: 15px; height: 15px; }

.gsm-contact-text { display: flex; flex-direction: column; gap: 2px; padding-top: 1px; }
.gsm-contact-label {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
}
.gsm-section--dark .gsm-contact-label  { color: var(--gsm-text-label-dark); }
.gsm-section--white .gsm-contact-label { color: var(--gsm-text-label-light); }

.gsm-contact-value {
  font-size: 13px; font-weight: 500;
  text-decoration: none; line-height: 1.4;
  transition: color var(--gsm-transition);
}
.gsm-section--dark .gsm-contact-value  { color: rgba(255,255,255,0.75); }
.gsm-section--white .gsm-contact-value { color: rgba(13,27,42,0.75); }
a.gsm-contact-value:hover { color: var(--gsm-navy); }

/* ─────────────────────────────────────────
   9. MAP WRAP
───────────────────────────────────────── */
.gsm-map-wrap {
  position: relative;
  border-radius: var(--gsm-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(13,27,42,0.10);
  box-shadow: 0 12px 40px rgba(13,27,42,0.10);
  min-height: 280px;
}
.gsm-map-wrap iframe {
  display: block; width: 100%; height: 100%;
  min-height: 280px; border: none;
  position: absolute; inset: 0;
}
.gsm-map-badge {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(13,27,42,0.10);
  border-radius: var(--gsm-radius-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px; z-index: 2;
}
.gsm-map-badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gsm-red); flex-shrink: 0;
  animation: gsmPulse 2s ease-in-out infinite;
}
.gsm-map-badge-name { font-size: 12px; font-weight: 700; color: var(--gsm-navy); display: block; }
.gsm-map-badge-addr { font-size: 11px; color: var(--gsm-text-muted-light); display: block; margin-top: 1px; }

/* ─────────────────────────────────────────
   10. FAQ ACCORDION (CORREGIDO PARA gsm- y gss-)
───────────────────────────────────────── */
.gsm-faq-grid, .gss-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.gsm-faq-item, .gss-faq-item { border-bottom: 1px solid var(--gsm-border-dark); }
.gsm-section--white .gsm-faq-item, .gsm-section--white .gss-faq-item { border-bottom-color: var(--gsm-border-light); }

.gsm-faq-col:first-child .gsm-faq-item:first-child, .gss-faq-col:first-child .gss-faq-item:first-child,
.gsm-faq-col:last-child  .gsm-faq-item:first-child, .gss-faq-col:last-child  .gss-faq-item:first-child {
  border-top: 1px solid var(--gsm-border-dark);
}
.gsm-section--white .gsm-faq-col:first-child .gsm-faq-item:first-child,
.gsm-section--white .gss-faq-col:first-child .gss-faq-item:first-child,
.gsm-section--white .gsm-faq-col:last-child  .gsm-faq-item:first-child,
.gsm-section--white .gss-faq-col:last-child  .gss-faq-item:first-child {
  border-top-color: var(--gsm-border-light);
}

.gsm-faq-btn, .gss-faq-btn {
  width: 100%; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 16px; padding: 20px 0;
  background: none; border: none; cursor: pointer; text-align: left;
}
.gsm-faq-question, .gss-faq-question {
  font-size: 14px; font-weight: 600; line-height: 1.5;
  transition: color var(--gsm-transition);
}

/* Maneja el color del texto si la web tiene fondo oscuro/claro o si usas el gss-faq-wrap nativo */
.gsm-section--dark .gsm-faq-question, .gss-faq-wrap .gss-faq-question { color: rgba(255,255,255,0.68); }
.gsm-section--white .gsm-faq-question { color: rgba(13,27,42,0.70); }

.gsm-faq-btn:hover .gsm-faq-question, .gss-faq-btn:hover .gss-faq-question,
.gsm-faq-btn[aria-expanded="true"] .gsm-faq-question, .gss-faq-btn[aria-expanded="true"] .gss-faq-question {
  color: var(--gsm-navy);
}
.gsm-section--dark .gsm-faq-btn:hover .gsm-faq-question,
.gss-faq-wrap .gss-faq-btn:hover .gss-faq-question,
.gsm-section--dark .gsm-faq-btn[aria-expanded="true"] .gsm-faq-question,
.gss-faq-wrap .gss-faq-btn[aria-expanded="true"] .gss-faq-question {
  color: #ffffff;
}

.gsm-faq-chevron, .gss-faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px;
  color: rgba(255,255,255,0.25);
  transition: transform var(--gsm-transition-slow), color var(--gsm-transition);
}
.gsm-section--white .gsm-faq-chevron { color: rgba(13,27,42,0.25); }
.gsm-faq-btn[aria-expanded="true"] .gsm-faq-chevron, .gss-faq-btn[aria-expanded="true"] .gss-faq-chevron {
  transform: rotate(180deg);
  color: var(--gsm-red);
}

.gsm-faq-answer, .gss-faq-answer {
  overflow: hidden; max-height: 0;
  transition: max-height var(--gsm-transition-slow);
}
.gsm-faq-answer-inner, .gss-faq-answer-inner {
  padding-bottom: 18px;
  font-size: 15px; line-height: 1.85;
}
.gsm-section--dark .gsm-faq-answer-inner, .gss-faq-wrap .gss-faq-answer-inner { color: rgba(255,255,255,0.45); }
.gsm-section--white .gsm-faq-answer-inner { color: var(--gsm-text-secondary-light); }
.gsm-faq-answer-inner a, .gss-faq-answer-inner a { color: var(--gsm-red); text-decoration: underline; text-underline-offset: 3px; }

/* ─────────────────────────────────────────
   11. GOOGLE REVIEWS
───────────────────────────────────────── */
.gsm-reviews-header {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 48px; padding-bottom: 32px;
  border-bottom: 1px solid var(--gsm-border-dark);
  flex-wrap: wrap;
}
.gsm-section--white .gsm-reviews-header { border-bottom-color: var(--gsm-border-light); }

.gsm-rating-number {
  font-family: var(--gsm-font-display);
  font-size: 64px; font-weight: 800; line-height: 1;
}
.gsm-section--dark .gsm-rating-number  { color: #ffffff; }
.gsm-section--white .gsm-rating-number { color: var(--gsm-navy); }

.gsm-rating-max { font-size: 20px; font-weight: 400; }
.gsm-section--dark .gsm-rating-max  { color: rgba(255,255,255,0.35); }
.gsm-section--white .gsm-rating-max { color: rgba(13,27,42,0.35); }

.gsm-review-count { font-size: 13px; }
.gsm-section--dark .gsm-review-count  { color: rgba(255,255,255,0.45); }
.gsm-section--white .gsm-review-count { color: rgba(13,27,42,0.45); }

.gsm-review-card {
  border-radius: var(--gsm-radius-md);
  padding: 28px 28px 24px;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
  transition: background var(--gsm-transition), border-color var(--gsm-transition);
}
.gsm-section--dark .gsm-review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}
.gsm-section--white .gsm-review-card {
  background: #f8f8f8;
  border: 1px solid rgba(13,27,42,0.09);
}
.gsm-review-card::before {
  content: '"';
  position: absolute; top: 14px; right: 22px;
  font-size: 72px; line-height: 1;
  color: rgba(204,0,1,0.15); font-family: Georgia, serif;
  pointer-events: none;
}
.gsm-review-quote {
  font-size: 15px; line-height: 1.8;
  margin: 0 0 auto; padding-bottom: 20px;
}
.gsm-section--dark .gsm-review-quote  { color: rgba(255,255,255,0.78); }
.gsm-section--white .gsm-review-quote { color: rgba(13,27,42,0.75); }

.gsm-review-rule { height: 1px; margin-bottom: 18px; }
.gsm-section--dark .gsm-review-rule  { background: rgba(255,255,255,0.08); }
.gsm-section--white .gsm-review-rule { background: rgba(13,27,42,0.08); }

.gsm-review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gsm-red); color: #fff;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: 0.5px;
}
.gsm-review-name { font-size: 13px; font-weight: 600; display: block; margin-bottom: 2px; }
.gsm-section--dark .gsm-review-name  { color: #ffffff; }
.gsm-section--white .gsm-review-name { color: var(--gsm-navy); }

.gsm-review-date { font-size: 11px; }
.gsm-section--dark .gsm-review-date  { color: rgba(255,255,255,0.35); }
.gsm-section--white .gsm-review-date { color: rgba(13,27,42,0.40); }

/* ─────────────────────────────────────────
   12. TRUST BAR
───────────────────────────────────────── */
.gsm-trust-bar {
  position: relative;
  z-index: 4; /* sobre el overlay del hero (z-index:1) y el streak (z-index:2) */
  background: rgba(10,20,33,0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.gsm-trust-bar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gsm-primary) 30%, var(--gsm-primary) 70%, transparent 100%);
  opacity: 0.7;
}
.gsm-trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: stretch;
  padding: 0 20px;
}
.gsm-tb-item {
  flex: 1; display: flex; align-items: center; gap: 14px;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--gsm-transition);
  cursor: default;
}
.gsm-tb-item:first-child { padding-left: 0; }
.gsm-tb-item:last-child  { border-right: none; padding-right: 0; }
.gsm-tb-item:hover       { background: rgba(255,255,255,0.03); }

.gsm-tb-icon-box {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(253,197,0,0.15); border: 1px solid rgba(253,197,0,0.30);
  color: var(--gsm-primary);
  transition: background var(--gsm-transition), border-color var(--gsm-transition);
}
.gsm-tb-item:hover .gsm-tb-icon-box {
  background: rgba(253,197,0,0.25);
  border-color: rgba(253,197,0,0.50);
}
.gsm-tb-icon-box svg { width: 18px; height: 18px; }
.gsm-tb-label { display: block; font-size: 13px; font-weight: 700; color: #ffffff; margin-bottom: 3px; white-space: nowrap; }
.gsm-tb-sub   { display: block; font-size: 11px; color: rgba(255,255,255,0.62); white-space: nowrap; }

/* ─────────────────────────────────────────
   13. EYEBROW PILL (hero)
───────────────────────────────────────── */
.gsm-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(204,0,1,0.15); border: 1px solid rgba(204,0,1,0.35);
  border-radius: 100px; padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
}
.gsm-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gsm-red);
  animation: gsmPulse 2s ease-in-out infinite;
}
.gsm-eyebrow span {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
}

/* ─────────────────────────────────────────
   14. ANIMACIONES GLOBALES
───────────────────────────────────────── */
@keyframes gsmPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.55; transform:scale(0.8); }
}
@keyframes gsmMapPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.55; transform:scale(0.8); }
}

[data-gsm-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  animation: gsmRevealFallback 0s 2s forwards;
}
[data-gsm-reveal].gsm-revealed {
  animation: none;
  opacity: 1;
  transform: none;
}
@keyframes gsmRevealFallback {
  to { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   15. LIGHTBOX GALLERY (Portafolio)
───────────────────────────────────────── */
#gsm-lightbox {
  position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center;
  justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
#gsm-lightbox.gsm-lb--open { opacity: 1; pointer-events: auto; }
.gsm-lb-backdrop {
  position: absolute; inset: 0; background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.gsm-lb-close, .gsm-lb-prev, .gsm-lb-next {
  position: absolute; background: rgba(255, 255, 255, 0.08); color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; transition: background var(--gsm-transition), border-color var(--gsm-transition), transform 0.25s;
}
.gsm-lb-close:hover, .gsm-lb-prev:hover, .gsm-lb-next:hover { background: var(--gsm-red); border-color: var(--gsm-red); transform: scale(1.1); }
.gsm-lb-close { top: 24px; right: 24px; width: 44px; height: 44px; font-size: 26px; line-height: 1; }
.gsm-lb-prev, .gsm-lb-next { top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 20px; }
.gsm-lb-prev:hover, .gsm-lb-next:hover { transform: translateY(-50%) scale(1.1); }
.gsm-lb-prev { left: 24px; } .gsm-lb-next { right: 24px; }
.gsm-lb-content {
  position: relative; z-index: 1; max-width: 90vw; max-height: 85vh; display: flex; flex-direction: column;
  align-items: center; transform: scale(0.95); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#gsm-lightbox.gsm-lb--open .gsm-lb-content { transform: scale(1); }
.gsm-lb-img { max-width: 100%; max-height: calc(85vh - 40px); object-fit: contain; border-radius: var(--gsm-radius-sm); box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.gsm-lb-caption { margin-top: 16px; color: #ffffff; font-size: 14px; font-family: var(--gsm-font-body); text-align: center; letter-spacing: 0.5px; }

/* ─────────────────────────────────────────
   16. VIDEO MODAL
───────────────────────────────────────── */
#gsm-video-modal {
  position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
#gsm-video-modal.gsm-vm--open { opacity: 1; pointer-events: auto; }
.gsm-vm-backdrop { position: absolute; inset: 0; background: rgba(13, 27, 42, 0.95); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.gsm-vm-wrap { position: relative; z-index: 1; width: 100%; max-width: 1000px; padding: 0 20px; transform: translateY(20px) scale(0.98); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
#gsm-video-modal.gsm-vm--open .gsm-vm-wrap { transform: translateY(0) scale(1); }
.gsm-vm-close { position: absolute; top: -40px; right: 20px; background: none; border: none; color: #ffffff; font-size: 32px; line-height: 1; cursor: pointer; transition: color var(--gsm-transition), transform 0.25s; }
.gsm-vm-close:hover { color: var(--gsm-red); transform: scale(1.1); }
.gsm-vm-ratio { position: relative; width: 100%; padding-bottom: 56.25%; background: #000; border-radius: var(--gsm-radius-md); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.gsm-vm-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ─────────────────────────────────────────
   17. TOAST NOTIFICATIONS
───────────────────────────────────────── */
#gsm-toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
.gsm-toast { background: #ffffff; color: var(--gsm-navy); padding: 16px 24px; border-radius: var(--gsm-radius-sm); font-family: var(--gsm-font-body); font-size: 14px; font-weight: 500; box-shadow: 0 10px 30px rgba(13, 27, 42, 0.15); transform: translateX(120%); opacity: 0; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease; border-left: 4px solid var(--gsm-navy); pointer-events: auto; }
.gsm-toast.gsm-toast--visible { transform: translateX(0); opacity: 1; }
.gsm-toast--success { border-left-color: #10B981; }
.gsm-toast--error   { border-left-color: var(--gsm-red); }
.gsm-toast--info    { border-left-color: var(--gsm-gold); }

/* ═══════════════════════════════════════════════════════════════
   18. RESPONSIVE — MOBILE FIRST
═══════════════════════════════════════════════════════════════ */

/* ── Tablet ≥ 640px ── */
@media (min-width: 640px) {
  .gsm-section { padding: var(--gsm-pad-tablet); }
  .gsm-section--hero { padding-top: calc(var(--gsm-menu-height) + 64px); }
  .gsm-section-header { margin-bottom: 48px; }
  .gsm-faq-grid, .gss-faq-grid { grid-template-columns: 1fr 1fr; gap: 0 48px; }
  .gsm-trust-bar-inner { padding: 0 40px; }
  .gsm-tb-item { padding: 20px 20px; gap: 12px; }
  .gsm-tb-sub { display: none; }
  .gsm-map-wrap { min-height: 340px; }
  .gsm-map-wrap iframe { min-height: 340px; }
}

/* ── Desktop ≥ 1024px ── */
@media (min-width: 1024px) {
  .gsm-section { padding: var(--gsm-pad-desktop); }
  .gsm-section--hero { padding-top: calc(var(--gsm-menu-height) + 80px); }
  .gsm-section-header { margin-bottom: 56px; }
  .gsm-section-header--split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .gsm-section-header--split .gsm-subtitle { max-width: 420px; }
  .gsm-tb-item { padding: 20px 24px; gap: 14px; }
  .gsm-tb-sub { display: block; }
  .gsm-trust-bar-inner { padding: 0 60px; }
  .gsm-map-wrap { min-height: 400px; }
  .gsm-map-wrap iframe { min-height: 400px; }
}

/* ── Ajustes Menores para Mobile ── */
@media (max-width: 639px) {
  .gsm-trust-bar-inner { flex-wrap: wrap; padding: 0 16px; }
  .gsm-tb-item { flex: none; width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 14px 12px; }
  .gsm-tb-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.07); }
  .gsm-tb-item:last-child      { border-bottom: none; }
  .gsm-tb-item:nth-last-child(2) { border-bottom: none; }
  .gsm-tb-sub { display: block; }
  .gsm-map-badge { flex-direction: column; align-items: flex-start; gap: 6px; }
  
  /* Ajustes Modales Mobile */
  .gsm-lb-prev, .gsm-lb-next { top: auto; bottom: 30px; transform: none; }
  .gsm-lb-prev:hover, .gsm-lb-next:hover { transform: scale(1.1); }
  .gsm-lb-prev { left: 50%; margin-left: -60px; }
  .gsm-lb-next { right: 50%; margin-right: -60px; }
  .gsm-lb-content { max-height: 75vh; }
  .gsm-lb-img { max-height: calc(75vh - 40px); }
  .gsm-lb-caption { margin-top: 12px; font-size: 13px; padding-bottom: 60px; }
  
  #gsm-toast-container { bottom: 16px; left: 16px; right: 16px; }
  .gsm-toast { transform: translateY(120%); border-left: none; border-bottom: 4px solid var(--gsm-navy); }
  .gsm-toast.gsm-toast--visible { transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   19. COMPONENTES RECUPERADOS
   (clases presentes en el DOM que no estaban en el CSS original)
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   A. UTILIDADES DE LAYOUT
   ────────────────────────────────────────── */
.gsm-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
}
.gsm-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.gsm-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gsm-header-divider {
  width: 48px; height: 3px;
  background: var(--gsm-primary);
  border-radius: 2px;
  margin: 20px 0 36px;
}

@media (max-width: 1024px) {
  .gsm-inner { padding: 0 40px; }
  .gsm-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .gsm-inner { padding: 0 20px; }
  .gsm-grid-2,
  .gsm-grid-3 { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   B. SECTION WRAPPERS INDEPENDIENTES
   ────────────────────────────────────────── */

/* Mixin base compartido por todas las secciones sin .gsm-section */
.gsm-portfolio,
.gsm-smart,
.gsm-where,
.gsm-sov,
.gsm-testi,
.gsm-vmsg,
.gsm-abcta-section,
.gsm-cfaq-section,
.gsm-expertise,
.gsm-process,
.gsm-mv-section,
.gsm-services-hero {
  font-family: var(--gsm-font-body);
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Secciones oscuras */
.gsm-portfolio,
.gsm-smart,
.gsm-sov,
.gsm-vmsg,
.gsm-abcta-section,
.gsm-cfaq-section,
.gsm-process {
  background: var(--gsm-navy);
  color: var(--gsm-text-primary-dark);
  padding: var(--gsm-pad-mobile);
}
.gsm-portfolio .gsm-label,
.gsm-smart .gsm-label,
.gsm-sov .gsm-label,
.gsm-vmsg .gsm-label,
.gsm-abcta-section .gsm-label,
.gsm-cfaq-section .gsm-label,
.gsm-process .gsm-label { color: var(--gsm-text-label-dark); }

.gsm-portfolio .gsm-title,
.gsm-smart .gsm-title,
.gsm-sov .gsm-title,
.gsm-vmsg .gsm-title,
.gsm-abcta-section .gsm-title,
.gsm-cfaq-section .gsm-title,
.gsm-process .gsm-title { color: var(--gsm-text-primary-dark); }

.gsm-portfolio .gsm-subtitle,
.gsm-smart .gsm-subtitle,
.gsm-sov .gsm-subtitle,
.gsm-vmsg .gsm-subtitle,
.gsm-abcta-section .gsm-subtitle,
.gsm-cfaq-section .gsm-subtitle,
.gsm-process .gsm-subtitle { color: var(--gsm-text-muted-dark); }

/* Secciones claras */
.gsm-where,
.gsm-testi,
.gsm-expertise,
.gsm-mv-section {
  background: #ffffff;
  color: var(--gsm-text-primary-light);
  padding: var(--gsm-pad-mobile);
}
.gsm-where .gsm-label,
.gsm-testi .gsm-label,
.gsm-expertise .gsm-label,
.gsm-mv-section .gsm-label { color: var(--gsm-text-label-light); }

.gsm-where .gsm-title,
.gsm-testi .gsm-title,
.gsm-expertise .gsm-title,
.gsm-mv-section .gsm-title { color: var(--gsm-text-primary-light); }

.gsm-where .gsm-subtitle,
.gsm-testi .gsm-subtitle,
.gsm-expertise .gsm-subtitle,
.gsm-mv-section .gsm-subtitle { color: var(--gsm-text-muted-light); }

/* Ajustes de padding en tablet/desktop */
@media (min-width: 640px) {
  .gsm-portfolio,
  .gsm-smart,
  .gsm-where,
  .gsm-sov,
  .gsm-testi,
  .gsm-vmsg,
  .gsm-abcta-section,
  .gsm-cfaq-section,
  .gsm-expertise,
  .gsm-process,
  .gsm-mv-section { padding: var(--gsm-pad-tablet); }
}
@media (min-width: 1024px) {
  .gsm-portfolio,
  .gsm-smart,
  .gsm-where,
  .gsm-sov,
  .gsm-testi,
  .gsm-vmsg,
  .gsm-abcta-section,
  .gsm-cfaq-section,
  .gsm-expertise,
  .gsm-process,
  .gsm-mv-section { padding: var(--gsm-pad-desktop); }
}

/* FAQ dentro de secciones oscuras independientes */
.gsm-cfaq-section .gsm-faq-item { border-bottom-color: var(--gsm-border-dark); }
.gsm-cfaq-section .gsm-faq-question { color: rgba(255,255,255,0.68); }
.gsm-cfaq-section .gsm-faq-chevron { color: rgba(255,255,255,0.25); }
.gsm-cfaq-section .gsm-faq-answer-inner { color: rgba(255,255,255,0.45); }
.gsm-abcta-section .gsm-faq-item { border-bottom-color: var(--gsm-border-dark); }
.gsm-abcta-section .gsm-faq-question { color: rgba(255,255,255,0.68); }

/* ─────────────────────────────────────────
   C. SERVICES HERO (variante de .gsm-hero)
   ────────────────────────────────────────── */
.gsm-services-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--gsm-menu-height) + 52px);
  padding-bottom: 80px;
  color: #ffffff;
}
.gsm-services-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gsm-services-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gsm-services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.72) 55%, rgba(13,27,42,0.52) 100%);
  z-index: 1;
}
.gsm-services-hero-streak {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gsm-primary);
  z-index: 2;
}
.gsm-services-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}
.gsm-services-hero-headline {
  font-family: var(--gsm-font-display);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 16px 0 24px;
  max-width: 720px;
}
.gsm-services-hero-headline em {
  font-style: normal;
  color: var(--gsm-primary);
}
.gsm-services-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 36px;
}
.gsm-services-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 640px) {
  .gsm-services-hero { padding-top: calc(var(--gsm-menu-height) + 64px); }
}
@media (min-width: 1024px) {
  .gsm-services-hero { padding-top: calc(var(--gsm-menu-height) + 80px); }
  .gsm-services-hero-content { padding: 0 60px; }
}
@media (max-width: 640px) {
  .gsm-services-hero-content { padding: 0 20px; }
}

/* ─────────────────────────────────────────
   D. HISTORIA / WHO WE ARE
   ────────────────────────────────────────── */
.gsm-history-container {
  padding: 48px 0;
}
.gsm-history-p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--gsm-text-secondary-light);
  margin-bottom: 16px;
}
.gsm-history-p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────
   E. MISSION BANNER (oscuro dentro de sección blanca)
   ────────────────────────────────────────── */
.gsm-mission-banner {
  background: var(--gsm-navy);
  border-radius: var(--gsm-radius-lg);
  padding: 40px 48px;
  margin: 0 0 56px;
  position: relative;
  overflow: hidden;
}
.gsm-mission-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gsm-primary);
}
.gsm-mission-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gsm-primary);
  margin-bottom: 16px;
}
.gsm-mission-quote {
  font-family: var(--gsm-font-display);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin: 0;
}
.gsm-mission-quote em {
  font-style: normal;
  color: var(--gsm-primary);
}
@media (max-width: 640px) {
  .gsm-mission-banner { padding: 28px 24px; }
}

/* ─────────────────────────────────────────
   F. VALUES GRID
   ────────────────────────────────────────── */
.gsm-values-container { padding-bottom: 0; }
.gsm-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.gsm-value-card {
  background: #f8f9fb;
  border: 1px solid rgba(13,27,42,0.07);
  border-radius: var(--gsm-radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--gsm-transition), transform var(--gsm-transition);
}
.gsm-value-card:hover {
  box-shadow: 0 8px 32px rgba(13,27,42,0.08);
  transform: translateY(-2px);
}
.gsm-value-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(204,0,1,0.08);
  border-radius: var(--gsm-radius-sm);
  color: var(--gsm-red);
  flex-shrink: 0;
}
.gsm-value-icon svg { width: 22px; height: 22px; }
.gsm-value-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gsm-text-label-light);
}
.gsm-value-title {
  font-family: var(--gsm-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gsm-navy);
  line-height: 1.2;
  margin: 0;
}
.gsm-value-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--gsm-text-secondary-light);
  margin: 0;
}

/* ─────────────────────────────────────────
   G. ABOUT CTA
   ────────────────────────────────────────── */
.gsm-abcta-container {
  max-width: 1200px;
  margin: 0 auto;
}
.gsm-abcta-content-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gsm-abcta-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}
.gsm-abcta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  margin-top: 8px;
}
.gsm-abcta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.gsm-abcta-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.gsm-abcta-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.3px;
}

/* ─────────────────────────────────────────
   H. SOV CARDS (Scope of Value)
   ────────────────────────────────────────── */
.gsm-sov-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--gsm-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background var(--gsm-transition), border-color var(--gsm-transition);
}
.gsm-sov-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(253,197,0,0.22);
}
.gsm-sov-card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(253,197,0,0.1);
  border-radius: var(--gsm-radius-sm);
  color: var(--gsm-primary);
  flex-shrink: 0;
}
.gsm-sov-card-icon svg { width: 24px; height: 24px; }
.gsm-sov-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gsm-primary);
}
.gsm-sov-card-title {
  font-family: var(--gsm-font-display);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
}
.gsm-sov-card-content {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
}
.gsm-sov-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.gsm-sov-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}
.gsm-sov-check::before {
  content: '';
  width: 16px; height: 16px;
  min-width: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FDC500' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
  margin-top: 1px;
}
.gsm-sov-stat { margin-top: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07); }
.gsm-sov-stat-num {
  font-family: var(--gsm-font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--gsm-primary);
  line-height: 1;
}
.gsm-sov-stat-txt {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  margin-top: 3px;
}
.gsm-sov-card-cta { margin-top: auto; padding-top: 8px; }

/* ─────────────────────────────────────────
   I. DIFFERENTIATOR CARDS
   ────────────────────────────────────────── */
.gsm-diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.gsm-diff-card {
  display: flex;
  gap: 16px;
  padding: 24px 20px;
  background: #f8f9fb;
  border: 1px solid rgba(13,27,42,0.07);
  border-radius: var(--gsm-radius-md);
  transition: box-shadow var(--gsm-transition), transform var(--gsm-transition);
}
.gsm-diff-card:hover {
  box-shadow: 0 6px 28px rgba(13,27,42,0.08);
  transform: translateY(-2px);
}
.gsm-diff-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,80,157,0.08);
  border-radius: var(--gsm-radius-sm);
  color: #00509D;
}
.gsm-diff-icon svg { width: 20px; height: 20px; }
.gsm-diff-body { display: flex; flex-direction: column; gap: 5px; }
.gsm-diff-title {
  font-family: var(--gsm-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gsm-navy);
  margin: 0;
  line-height: 1.2;
}
.gsm-diff-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gsm-text-secondary-light);
  margin: 0;
}
.gsm-diff-chip {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gsm-red);
  background: rgba(204,0,1,0.08);
  border-radius: 4px;
  padding: 3px 8px;
  margin-top: 4px;
  width: fit-content;
}

/* ─────────────────────────────────────────
   J. SERVICE PATHS
   ────────────────────────────────────────── */
.gsm-service-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.gsm-path-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--gsm-radius-md);
  text-decoration: none;
  color: #ffffff;
  transition: background var(--gsm-transition), border-color var(--gsm-transition), transform var(--gsm-transition);
}
.gsm-path-card:hover {
  background: rgba(253,197,0,0.08);
  border-color: rgba(253,197,0,0.28);
  transform: translateX(3px);
}
.gsm-path-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(253,197,0,0.1);
  border-radius: var(--gsm-radius-sm);
  color: var(--gsm-primary);
}
.gsm-path-icon svg { width: 20px; height: 20px; }
.gsm-path-body { flex: 1; min-width: 0; }
.gsm-path-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
  line-height: 1.2;
}
.gsm-path-desc {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.48);
}
.gsm-path-arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,0.22);
  transition: color var(--gsm-transition);
}
.gsm-path-card:hover .gsm-path-arrow { color: var(--gsm-primary); }

/* ─────────────────────────────────────────
   K. STEPS / PROCESS
   ────────────────────────────────────────── */
.gsm-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-top: 44px;
}
.gsm-step {
  display: flex;
  gap: 18px;
}
.gsm-step-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.gsm-step-num {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gsm-primary);
  color: var(--gsm-navy);
  font-family: var(--gsm-font-display);
  font-size: 16px;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}
.gsm-step-body { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.gsm-step-title {
  font-family: var(--gsm-font-display);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  padding-top: 7px;
  line-height: 1.2;
}
.gsm-step-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.52);
  margin: 0;
}
.gsm-step-note {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gsm-primary);
  margin-top: 3px;
}

/* ─────────────────────────────────────────
   L. SMART STEPS
   ────────────────────────────────────────── */
.gsm-smart-grid-inner {
  margin-top: 44px;
}
.gsm-smart-step {
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--gsm-radius-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--gsm-transition);
}
.gsm-smart-step:hover { background: rgba(255,255,255,0.06); }
.gsm-smart-step-num {
  font-family: var(--gsm-font-display);
  font-size: 44px;
  font-weight: 800;
  color: rgba(253,197,0,0.13);
  line-height: 1;
}
.gsm-smart-step-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gsm-smart-icon-box {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(253,197,0,0.1);
  border-radius: var(--gsm-radius-sm);
  color: var(--gsm-primary);
  flex-shrink: 0;
}
.gsm-smart-icon-box svg { width: 18px; height: 18px; }
.gsm-smart-step-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gsm-primary);
}
.gsm-smart-step-title {
  font-family: var(--gsm-font-display);
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
}
.gsm-smart-step-text {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
  margin: 0;
}

/* ─────────────────────────────────────────
   M. PORTFOLIO / PROYECTOS
   ────────────────────────────────────────── */
.gsm-portfolio-item {
  position: relative;
  border-radius: var(--gsm-radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: rgba(255,255,255,0.04);
}
.gsm-portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gsm-portfolio-item:hover img { transform: scale(1.04); }
.gsm-portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--gsm-transition);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gsm-portfolio-item:hover .gsm-portfolio-item-overlay { opacity: 1; }
.gsm-portfolio-item-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gsm-portfolio-item-name {
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  line-height: 1.3;
}
.gsm-portfolio-item-location {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.gsm-portfolio-item-type {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gsm-primary);
  background: rgba(253,197,0,0.15);
  border-radius: 3px;
  padding: 2px 6px;
  margin-top: 4px;
  width: fit-content;
}
.gsm-portfolio-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   N. VIDEO MESSAGE (VMSG)
   ────────────────────────────────────────── */
.gsm-vmsg-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.gsm-vmsg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.gsm-vmsg-eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--gsm-primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.gsm-vmsg-eyebrow span:last-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gsm-primary);
}
.gsm-vmsg-title {
  font-family: var(--gsm-font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 18px;
}
.gsm-vmsg-title em {
  font-style: normal;
  color: var(--gsm-primary);
}
.gsm-vmsg-divider {
  width: 40px; height: 3px;
  background: var(--gsm-primary);
  border-radius: 2px;
  margin-bottom: 20px;
}
.gsm-vmsg-sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin: 0;
}
.gsm-vmsg-video-wrap {
  position: relative;
  border-radius: var(--gsm-radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.gsm-vmsg-video-wrap video {
  width: 50%;
  display: block;
  margin: 0 auto;
}
.gsm-vmsg-video-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(13,27,42,0.75);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.65);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .gsm-vmsg-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─────────────────────────────────────────
   O. WHERE WE WORK
   ────────────────────────────────────────── */
.gsm-where-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 44px;
  align-items: start;
}
.gsm-where-card {
  background: #f8f9fb;
  border: 1px solid rgba(13,27,42,0.07);
  border-radius: var(--gsm-radius-md);
  padding: 24px;
}
.gsm-where-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gsm-text-label-light);
  margin-bottom: 16px;
  display: block;
}
.gsm-cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gsm-city-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gsm-text-secondary-light);
  padding: 5px 12px;
  background: #ffffff;
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: 20px;
  transition: border-color var(--gsm-transition);
}
.gsm-city-item--highlight {
  color: #00509D;
  border-color: rgba(0,80,157,0.2);
  background: rgba(0,80,157,0.04);
  font-weight: 600;
}
.gsm-city-dot {
  width: 6px; height: 6px;
  background: var(--gsm-red);
  border-radius: 50%;
  flex-shrink: 0;
}
.gsm-city-item--highlight .gsm-city-dot { background: #00509D; }
.gsm-where-map-wrap {
  border-radius: var(--gsm-radius-md);
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(13,27,42,0.07);
}
.gsm-where-map-wrap iframe,
.gsm-where-map-wrap img { width: 100%; display: block; }
@media (max-width: 768px) {
  .gsm-where-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   P. TESTIMONIALS
   ────────────────────────────────────────── */
.gsm-testi-score {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  background: #f8f9fb;
  border: 1px solid rgba(13,27,42,0.07);
  border-radius: var(--gsm-radius-md);
  text-decoration: none;
  color: var(--gsm-navy);
  margin-bottom: 32px;
  transition: box-shadow var(--gsm-transition);
  width: fit-content;
}
.gsm-testi-score:hover { box-shadow: 0 4px 16px rgba(13,27,42,0.08); }
.gsm-testi-score-left { display: flex; flex-direction: column; gap: 3px; }
.gsm-testi-score-num {
  font-family: var(--gsm-font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--gsm-navy);
  line-height: 1;
}
.gsm-testi-score-label {
  font-size: 11px;
  color: var(--gsm-text-muted-light);
  font-weight: 500;
}
.gsm-testi-score-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--gsm-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gsm-testi-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gsm-primary);
  background: rgba(253,197,0,0.1);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 10px;
  width: fit-content;
}
.gsm-testi-card {
  background: #f8f9fb;
  border: 1px solid rgba(13,27,42,0.07);
  border-radius: var(--gsm-radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.gsm-testi-quote {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gsm-text-secondary-light);
  margin: 0;
  flex: 1;
}
.gsm-testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(13,27,42,0.06);
}
.gsm-testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(13,27,42,0.08);
}
.gsm-testi-author,
.gsm-testi-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.gsm-testi-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--gsm-navy);
}
.gsm-testi-meta {
  font-size: 11px;
  color: var(--gsm-text-muted-light);
}
.gsm-testi-stars-static { color: var(--gsm-gold); font-size: 12px; letter-spacing: 1px; }
.gsm-testi-stars-wrap { display: flex; align-items: center; gap: 6px; }

/* ─────────────────────────────────────────
   Q. SECCIÓN HERO INLINE STYLES SUPPORT
   (colores hardcodeados en el HTML quedan visibles)
   ────────────────────────────────────────── */
/* Aseguramos que los em dentro de titulos de sección respetan el color heredado si no tienen estilo inline */
.gsm-portfolio .gsm-title em,
.gsm-smart .gsm-title em,
.gsm-sov .gsm-title em,
.gsm-testi .gsm-title em,
.gsm-expertise .gsm-title em,
.gsm-where .gsm-title em,
.gsm-mv-section .gsm-title em,
.gsm-process .gsm-title em,
.gsm-vmsg .gsm-title em,
.gsm-abcta-section .gsm-title em {
  font-style: normal;
  color: var(--gsm-primary);
}

/* ─────────────────────────────────────────
   R. FIX HERENCIA STACKABLE — TEXTO EN SECCIONES BLANCAS
   Stackable pone color:white en .stk-container, que hereda a todos los hijos.
   Las secciones gsm-* con fondo blanco/claro necesitan color explícito
   para vencer la herencia (especificidad 0,2,0 > Stackable 0,1,0).
   ────────────────────────────────────────── */

/* Secciones con fondo BLANCO — título y texto deben ser oscuros */
.gsm-smart .gsm-title,
.gsm-sov .gsm-title,
.gsm-where .gsm-title,
.gsm-mv-section .gsm-title,
.gsm-abcta-section .gsm-title,
.gsm-expertise .gsm-title,
.gsm-testi .gsm-title { color: var(--gsm-navy); }

.gsm-smart .gsm-subtitle,
.gsm-sov .gsm-subtitle,
.gsm-where .gsm-subtitle,
.gsm-mv-section .gsm-subtitle,
.gsm-abcta-section .gsm-subtitle,
.gsm-expertise .gsm-subtitle,
.gsm-testi .gsm-subtitle { color: var(--gsm-text-muted-light); }

.gsm-smart .gsm-label,
.gsm-sov .gsm-label,
.gsm-where .gsm-label,
.gsm-mv-section .gsm-label,
.gsm-abcta-section .gsm-label,
.gsm-expertise .gsm-label,
.gsm-testi .gsm-label { color: var(--gsm-navy); }

.gsm-smart .gsm-body-text,
.gsm-sov .gsm-body-text,
.gsm-where .gsm-body-text,
.gsm-mv-section .gsm-body-text,
.gsm-abcta-section .gsm-body-text,
.gsm-expertise .gsm-body-text,
.gsm-testi .gsm-body-text { color: var(--gsm-text-secondary-light); }

/* eyebrow (badge de sección) en secciones blancas */
.gsm-smart .gsm-eyebrow span,
.gsm-sov .gsm-eyebrow span,
.gsm-where .gsm-eyebrow span,
.gsm-mv-section .gsm-eyebrow span,
.gsm-abcta-section .gsm-eyebrow span,
.gsm-expertise .gsm-eyebrow span,
.gsm-testi .gsm-eyebrow span { color: var(--gsm-navy); }

/* Secciones con fondo OSCURO/AZUL — título y texto deben ser blancos */
.gsm-faq-section .gsm-title,
.gsm-cfaq-section .gsm-title,
.gsm-cta .gsm-title,
.gsm-cta-section .gsm-title,
.gsm-portfolio .gsm-title,
.gsm-vmsg .gsm-title,
.gsm-process .gsm-title { color: #ffffff; }

.gsm-faq-section .gsm-subtitle,
.gsm-cfaq-section .gsm-subtitle,
.gsm-cta .gsm-subtitle,
.gsm-cta-section .gsm-subtitle,
.gsm-portfolio .gsm-subtitle,
.gsm-vmsg .gsm-subtitle,
.gsm-process .gsm-subtitle { color: rgba(255,255,255,0.72); }

.gsm-faq-section .gsm-label,
.gsm-cfaq-section .gsm-label,
.gsm-cta .gsm-label,
.gsm-cta-section .gsm-label,
.gsm-portfolio .gsm-label,
.gsm-vmsg .gsm-label,
.gsm-process .gsm-label { color: rgba(255,255,255,0.55); }

/* ─────────────────────────────────────────
   S. ROJO → AMARILLO EN SECCIONES AZULES
   El rojo (#CC0001) no contrasta bien sobre el azul vibrante (#00509D).
   En secciones oscuras/azules, todos los elementos decorativos en rojo
   pasan a amarillo (--gsm-primary = #FDC500, contraste 7:1 sobre azul).
   ────────────────────────────────────────── */

/* Acentos en títulos (gsm-accent / em) — secciones oscuras y azules explícitas */
.gsm-section--dark .gsm-title .gsm-accent,
.gsm-section--dark .gsm-title em,
.gsm-faq-section .gsm-title .gsm-accent,
.gsm-faq-section .gsm-title em,
.gsm-cfaq-section .gsm-title .gsm-accent,
.gsm-cfaq-section .gsm-title em,
.gsm-cta .gsm-title .gsm-accent,
.gsm-cta .gsm-title em,
.gsm-cta-section .gsm-title .gsm-accent,
.gsm-cta-section .gsm-title em,
.gsm-portfolio .gsm-title .gsm-accent,
.gsm-portfolio .gsm-title em,
.gsm-vmsg .gsm-title .gsm-accent,
.gsm-vmsg .gsm-title em,
.gsm-process .gsm-title .gsm-accent,
.gsm-process .gsm-title em { color: var(--gsm-primary); font-style: normal; }

/* Línea divisora bajo títulos en secciones oscuras */
.gsm-section--dark .gsm-header-divider,
.gsm-faq-section .gsm-header-divider,
.gsm-cfaq-section .gsm-header-divider,
.gsm-cta .gsm-header-divider,
.gsm-cta-section .gsm-header-divider,
.gsm-portfolio .gsm-header-divider,
.gsm-vmsg .gsm-header-divider,
.gsm-process .gsm-header-divider {
  background: linear-gradient(90deg, var(--gsm-primary) 0%, rgba(253,197,0,0.25) 40%, transparent 100%);
}

/* Acentos en números de stats (hero, secciones oscuras) */
.gsm-section--dark .gsm-stat-number .gsm-accent { color: var(--gsm-primary); }

/* Badges/tags de categoría en cards oscuras — fondo amarillo, texto navy */
.gsm-card--dark .gsm-card-tag,
.gsm-card--accent .gsm-card-tag,
.gsm-card--glass .gsm-card-tag,
.gsm-section--dark .gsm-card-tag {
  background: var(--gsm-primary);
  color: var(--gsm-navy);
  box-shadow: none;
}

/* Línea decorativa bajo título de cards oscuras */
.gsm-card--dark .gsm-card-rule,
.gsm-card--accent .gsm-card-rule,
.gsm-card--glass .gsm-card-rule,
.gsm-section--dark .gsm-card-rule { background: var(--gsm-primary); }

/* Ícono de contacto en secciones oscuras */
.gsm-section--dark .gsm-contact-icon-box {
  background: rgba(253,197,0,0.12);
  border-color: rgba(253,197,0,0.28);
  color: var(--gsm-primary);
}

/* Chevron del FAQ al expandir (en secciones azules) */
.gsm-faq-section .gsm-faq-btn[aria-expanded="true"] .gsm-faq-chevron,
.gsm-cfaq-section .gsm-faq-btn[aria-expanded="true"] .gsm-faq-chevron,
.gss-faq-wrap .gss-faq-btn[aria-expanded="true"] .gss-faq-chevron,
.gsm-section--dark .gsm-faq-btn[aria-expanded="true"] .gsm-faq-chevron { color: var(--gsm-primary); }

/* Links dentro de respuestas FAQ en secciones oscuras */
.gsm-faq-section .gsm-faq-answer-inner a,
.gsm-cfaq-section .gsm-faq-answer-inner a,
.gss-faq-wrap .gss-faq-answer-inner a,
.gsm-section--dark .gsm-faq-answer-inner a {
  color: var(--gsm-primary);
  text-decoration-color: rgba(253,197,0,0.5);
}

/* Botones de texto en cards oscuras / secciones azules */
.gsm-card--dark .gsm-btn--text,
.gsm-card--accent .gsm-btn--text,
.gsm-card--glass .gsm-btn--text,
.gsm-section--dark .gsm-btn--text { color: var(--gsm-primary); }
.gsm-card--dark .gsm-btn--text:hover,
.gsm-card--accent .gsm-btn--text:hover,
.gsm-card--glass .gsm-btn--text:hover,
.gsm-section--dark .gsm-btn--text:hover { color: #ffffff; }

/* ─────────────────────────────────────────
   T. FIX GAP HEADER / HERO — TODAS LAS PÁGINAS
   El gap tiene dos causas distintas:

   CAUSA 1 — margin-top positivo en el stk-block-column (hardcodeado en el editor):
   home: +6rem, contact-us: +5rem, about-us: +5rem.
   Solución: resetear margin-top a 0 en el stk-block-column que contiene el hero.

   CAUSA 2 — padding-top: 60px del ct-container-full de Blocksy:
   Blocksy aplica data-vertical-spacing="top:bottom" en storm-damage, roofing,
   projects y areas-we-serve, lo que genera padding-top: var(--theme-content-vertical-spacing)
   = 60px. Los márgenes negativos originales de Stackable (-6rem/-7rem) compensaban
   este padding, pero al resetearlos a 0 el gap reaparece.
   Solución: anular padding-top del ct-container-full en esas páginas via body:has().
   ────────────────────────────────────────── */

/* FIX 1 — Resetear margin-top positivo del stk-block-column */
.stk-block-column:has(.gsm-hero),
.stk-block-column:has(.gsm-hero--storm),
.stk-block-column:has(.gss-about-hero),
.stk-block-column:has(.gsm-services-hero),
.stk-block-column:has(.gss-areas-hero),
.stk-block-column:has(.gss-projects-hero),
.stk-block-column:has(.gsm-section--hero) {
  margin-top: 0 !important;
}

/* FIX 2 — Anular padding-top de Blocksy en páginas con hero full-width */
body:has(.gsm-hero) .ct-container-full,
body:has(.gsm-hero--storm) .ct-container-full,
body:has(.gss-about-hero) .ct-container-full,
body:has(.gsm-services-hero) .ct-container-full,
body:has(.gss-areas-hero) .ct-container-full,
body:has(.gss-projects-hero) .ct-container-full,
body:has(.gsm-section--hero) .ct-container-full {
  padding-top: 0 !important;
}