/* ==========================================================================
   SEO PAGES - GRUPO STÖLL
   Archivo ordenado y consolidado
   ========================================================================== */

:root {
  --color-primary: #ff9900;
  --color-primary-glow: rgba(255, 153, 0, 0.3);

  --color-bg-dark: #050505;
  --color-bg-surface-dark: #0a0a0a;
  --color-text-main-dark: #ffffff;
  --color-text-muted-dark: #888888;

  --color-bg-light: #ffffff;
  --color-bg-surface-light: #f5f5f7;
  --color-text-main-light: #111111;
  --color-text-muted-light: #555555;
  --color-border-light: rgba(0, 0, 0, 0.08);

  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 18px 48px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 24px 62px rgba(0, 0, 0, 0.09);

  --radius-sm: 3.6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 18px;

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --spacing-section: 108px;
}

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

html {
  font-size: 12.96px;
  background-color: var(--color-bg-dark);
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--color-bg-dark);
  color: var(--color-text-main-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
}

:focus-visible {
  outline: 1.8px solid var(--color-primary);
  outline-offset: 2.7px;
}

/* ==========================================================================
   HEADER Y NAVEGACIÓN
   ========================================================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0) 100%);
  border-bottom: 0.9px solid transparent;
  transition: background 0.6s ease, box-shadow 0.6s ease, border-color 0.6s ease;
  will-change: transform, background, backdrop-filter;
}

header.scrolled {
  background: rgba(5, 5, 5, 0.65);
  backdrop-filter: blur(13.5px);
  -webkit-backdrop-filter: blur(13.5px);
  border-bottom: 0.9px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 9px 27px rgba(0, 0, 0, 0.4);
}

header.scrolled.theme-light-active {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(13.5px);
  -webkit-backdrop-filter: blur(13.5px);
  border-bottom: 0.9px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 9px 27px rgba(0, 0, 0, 0.03);
}

header.scrolled.theme-surface-active {
  background: rgba(245, 245, 247, 0.75);
  backdrop-filter: blur(13.5px);
  -webkit-backdrop-filter: blur(13.5px);
  border-bottom: 0.9px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 9px 27px rgba(0, 0, 0, 0.03);
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 13.5px;
  position: relative;
  z-index: 1002;
  transition: transform 0.4s var(--ease-out-expo);
}

.brand-container::after {
  content: '';
  position: absolute;
  left: 46.8px;
  height: 23.4px;
  width: 0.9px;
  background: rgba(255, 255, 255, 0.15);
}

.brand-container:hover {
  transform: translateY(-1.8px);
}

.brand-container:hover .brand-icon {
  filter: drop-shadow(0 0 7.2px rgba(255, 153, 0, 0.3));
}

.brand-icon {
  height: 42px !important;
  width: auto !important;
  opacity: 1;
  padding-bottom: 12px;
  margin-left: 2px;
  flex-shrink: 0;
  transition: all 0.5s ease;
}

.brand-text {
  display: flex;
  flex-direction: column;
  padding-left: 10.8px;
  flex-shrink: 0;
}

.brand-title {
  font-size: 17.1px;
  font-weight: 300;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4.5px;
  color: #ffffff;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: all 0.5s ease;
}

.brand-title strong {
  font-weight: 900;
  margin-right: 4.5px;
}

.brand-subtitle {
  font-size: 7.2px;
  color: var(--color-primary);
  letter-spacing: 4.5px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.9;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  color: #b0b0b0;
  font-size: 0.675rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.5s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5.4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3.6px;
  height: 3.6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-1.8px);
}

header.scrolled.theme-light-active .brand-title,
header.scrolled.theme-surface-active .brand-title {
  color: var(--color-text-main-light);
}

header.scrolled.theme-light-active .nav-link,
header.scrolled.theme-surface-active .nav-link {
  color: var(--color-text-muted-light);
}

header.scrolled.theme-light-active .nav-link:hover,
header.scrolled.theme-surface-active .nav-link:hover {
  color: var(--color-text-main-light);
}

header.scrolled.theme-light-active .hamburger span,
header.scrolled.theme-surface-active .hamburger span {
  background: var(--color-text-main-light);
}

header.scrolled.theme-light-active .brand-container::after,
header.scrolled.theme-surface-active .brand-container::after {
  background: rgba(0, 0, 0, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22.5px;
  flex-shrink: 0;
}

.reading-progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.8px;
  background: transparent;
  opacity: 0;
  transition: opacity 0.4s ease;
}

header.scrolled .reading-progress-container {
  opacity: 1;
}

.reading-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--color-primary);
  box-shadow: 0 0 7.2px var(--color-primary-glow);
  will-change: width;
}

.nav-intro-ready {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.65s var(--ease-out-expo), transform 0.65s var(--ease-out-expo);
}

.nav-intro-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   BOTONES
   ========================================================================== */

.btn-nav {
  position: relative;
  isolation: isolate;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 21.6px;
  border: 0.9px solid rgba(255, 153, 0, 0.45);
  background: transparent !important;
  color: var(--color-primary) !important;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.2;
  text-transform: uppercase;
  overflow: hidden;
  border-radius: 27px;
  white-space: nowrap;
  transition: color 0.42s ease 0.12s, border-color 0.42s ease, transform 0.32s ease, box-shadow 0.42s ease;
}

.btn-nav::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -105%;
  width: 105%;
  height: 100%;
  background-color: var(--color-primary);
  transform: translateX(0);
  transition: transform 0.62s var(--ease-out-expo);
  z-index: -1;
  pointer-events: none;
}

.btn-nav:hover {
  background: transparent !important;
  color: #000 !important;
  border-color: var(--color-primary);
  transform: translateY(-1.8px);
  box-shadow: 0 9px 22px rgba(255, 153, 0, 0.18);
}

.btn-nav:hover::before {
  transform: translateX(100%);
}

.btn-nav:active {
  transform: translateY(0);
}

.btn-nav span,
.btn-nav i {
  position: relative;
  z-index: 3;
  color: inherit !important;
}

.hero .btn-nav {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.32);
}

.hero .btn-nav:hover {
  color: #000 !important;
  border-color: var(--color-primary);
}

.btn-cta,
.btn-submit {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  min-height: 46px;
  background: var(--color-primary) !important;
  color: #000 !important;
  padding: 12px 30px;
  font-size: 0.855rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1.2px;
  z-index: 1;
  box-shadow: 0 9px 27px var(--color-primary-glow);
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  white-space: normal;
}

.btn-cta::after,
.btn-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: left 0.75s var(--ease-out-expo);
  pointer-events: none;
}

.btn-cta:hover::after,
.btn-submit:hover::after {
  left: 220%;
}

.btn-cta:hover {
  transform: translateY(-2.7px);
  box-shadow: 0 13.5px 36px var(--color-primary-glow);
  filter: brightness(1.03);
}

.btn-cta:visited,
.btn-cta span,
.btn-cta i {
  color: #000 !important;
}

/* ==========================================================================
   HAMBURGER Y MOBILE NAV
   ========================================================================== */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 27px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.8px;
  background: #fff;
  transform-origin: left center;
  transition: all 0.5s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0, -1.8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-18px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0, 1.8px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  z-index: 1001;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 82px 12px 12px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s var(--ease-out-expo);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-card {
  width: 100%;
  max-width: 520px;
  max-height: calc(100dvh - 96px);
  overflow-y: auto;
  background: radial-gradient(circle at top left, rgba(255, 153, 0, 0.13), transparent 44%), rgba(8, 8, 8, 0.96);
  border: 0.9px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.55);
  padding: 22px;
  transform: translateY(28px) scale(0.98);
  opacity: 0;
  transition: transform 0.46s var(--ease-out-expo), opacity 0.36s ease;
}

.mobile-menu.active .mobile-menu-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 17px;
  margin-bottom: 16px;
  border-bottom: 0.9px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-kicker {
  display: block;
  color: var(--color-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mobile-menu-title {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.15;
}

.mobile-menu-close-hint {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

.mobile-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 15px 4px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
  border-bottom: 0.9px solid rgba(255, 255, 255, 0.07);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo), color 0.25s ease, padding-left 0.25s ease;
}

.mobile-nav-link::after {
  content: '↗';
  color: var(--color-primary);
  font-size: 0.95rem;
  opacity: 0.7;
  transform: translateX(-4px);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav-link:hover {
  color: var(--color-primary);
  padding-left: 8px;
}

.mobile-nav-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-link.mobile-link-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-link.text-primary {
  color: var(--color-primary);
}

.mobile-nav-link.text-primary::after {
  color: #fff;
}

.mobile-wa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  margin-top: 20px;
  padding: 15px 18px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #000 !important;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 12px 32px rgba(255, 153, 0, 0.26);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.mobile-wa-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(255, 153, 0, 0.36);
  filter: brightness(1.03);
}

.mobile-menu-note {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
  text-transform: none;
}

body.menu-open {
  overflow: hidden;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  height: 72vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
  overflow: hidden;
  background-color: #000;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero.avif');
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 0;
}

.hero-content {
  max-width: 810px;
  position: relative;
  z-index: 2;
  border-left: 1.8px solid var(--color-primary);
  padding: 18px 0 18px 36px;
}

.hero h1 {
  font-size: clamp(1.98rem, 4.5vw, 3.15rem);
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: -0.45px;
}

.hero p {
  font-size: clamp(0.9rem, 1.2vw, 1.035rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 585px;
  margin-bottom: 27px;
  font-weight: 400;
  line-height: 1.7;
  text-transform: none;
}

.hero-intro-ready {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo);
}

.hero-intro-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-bg-ready {
  transform: scale(1.04);
  transition: transform 1.4s var(--ease-out-expo), filter 1.4s var(--ease-out-expo);
}

.hero-bg-visible {
  transform: scale(1);
}

/* ==========================================================================
   LAYOUT Y CONTENIDO GENERAL
   ========================================================================== */

.section {
  padding: var(--spacing-section) 0;
  position: relative;
}

.section-inner {
  padding: 0 5%;
  max-width: 1260px;
  margin: 0 auto;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 54px;
  padding: 0 5%;
}

.section-title {
  font-size: clamp(2.07rem, 4.5vw, 2.88rem);
  margin-bottom: 18px;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.035rem;
  max-width: 810px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
  color: var(--color-text-muted-light);
  text-transform: none;
}

.theme-light {
  background-color: var(--color-bg-light);
  color: var(--color-text-main-light);
}

.theme-light p,
.theme-light li {
  color: var(--color-text-muted-light);
}

.theme-surface {
  background-color: var(--color-bg-surface-light);
  color: var(--color-text-main-light);
}

.theme-surface p,
.theme-surface li {
  color: var(--color-text-muted-light);
}

.seo-content {
  max-width: 1020px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 1.62rem;
  margin: 45px 0 13.5px;
  letter-spacing: 0.9px;
}

.seo-content h3 {
  letter-spacing: 0.6px;
}

.seo-content p {
  font-size: 1.035rem;
  line-height: 1.8;
  margin-bottom: 16.2px;
  text-transform: none;
}

.seo-content ul {
  padding-left: 18px;
  margin: 18px 0 27px;
}

.seo-content li {
  margin-bottom: 9px;
  line-height: 1.7;
  text-transform: none;
}

.seo-inline-links a {
  color: var(--color-primary);
  font-weight: 700;
}

.seo-inline-links a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.seo-cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
}

.seo-cta-row .btn-cta,
.seo-cta-row .btn-nav {
  min-height: 46px;
  min-width: clamp(220px, 35vw, 360px);
  padding: 12px 20px;
  white-space: normal;
}

.seo-visual-block {
  margin: 42px auto;
}

/* Animaciones de contenido */
.seo-animate {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(3px);
  transition: opacity 1.05s var(--ease-out-expo), transform 1.05s var(--ease-out-expo), filter 1.05s var(--ease-out-expo);
  will-change: opacity, transform, filter;
}

.seo-animate-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.section-title-wrapper.seo-animate,
.seo-content > h2.seo-animate,
.seo-content > h3.seo-animate,
.seo-content > p.seo-animate,
.seo-content > ul.seo-animate,
.seo-cta-row.seo-animate,
.form-container.seo-animate,
.contact-info-block.seo-animate {
  transition-duration: 1.1s;
}

/* ==========================================================================
   BLOQUES VISUALES COMPARTIDOS
   ========================================================================== */

.quick-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 36px auto 48px;
}

.quick-summary-card,
.visual-faq-card,
.ba-service-card,
.ba-zone-card,
.arg-region-card,
.arg-market-main,
.arg-market-card,
.alma-spec-card,
.alma-use-card,
.alma-kit-card,
.ret-feature-card,
.ret-fit-card,
.ret-scope-card {
  background: #fff;
  border: 0.9px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
}

.quick-summary-card {
  border-radius: 10px;
  padding: 22px;
}

.quick-summary-card .summary-icon,
.ba-service-icon,
.ba-corridor-icon,
.arg-market-icon,
.alma-spec-icon,
.ret-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 153, 0, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 16px;
}

.quick-summary-card .summary-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 18px;
  margin-bottom: 14px;
}

.quick-summary-card h3,
.visual-faq-card h3,
.ba-service-card h3,
.ba-zone-card h3,
.arg-market-card h3,
.arg-region-card h3,
.alma-spec-card h3,
.alma-use-card h3,
.alma-kit-card h3,
.ret-feature-card h3,
.ret-fit-card h3,
.ret-scope-card h3 {
  color: #111;
}

.quick-summary-card h3 {
  font-size: 0.96rem;
  margin-bottom: 9px;
  letter-spacing: 0.8px;
}

.quick-summary-card p,
.visual-faq-card p,
.ba-service-card p,
.ba-zone-card p,
.arg-market-card p,
.arg-region-card p,
.alma-spec-card p,
.alma-use-card p,
.ret-feature-card p,
.ret-fit-card p {
  color: #555;
  margin: 0;
}

/* Destacados de oferta */
.offer-highlight {
  background: radial-gradient(circle at top left, rgba(255, 153, 0, 0.14), transparent 45%), #080808;
  color: #fff;
  border-radius: 14px;
  padding: 34px;
  border: 0.9px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  margin: 42px 0;
}

.offer-highlight h2,
.offer-highlight h3 {
  color: #fff;
  margin-top: 0;
}

.offer-highlight p {
  color: rgba(255, 255, 255, 0.74);
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 12px;
}

.offer-price strong {
  color: var(--color-primary);
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.offer-price span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 700;
}

/* Includes */
.include-grid,
.alma-kit-box,
.ret-scope-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 36px 0;
}

.include-card,
.alma-kit-card,
.ret-scope-card {
  border-radius: 16px;
  padding: 28px;
}

.include-card.dark,
.alma-kit-card.dark,
.ret-scope-card.dark {
  background: #111;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

.include-card h3,
.alma-kit-card h3,
.ret-scope-card h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.include-card.dark h3,
.alma-kit-card.dark h3,
.ret-scope-card.dark h3 {
  color: #fff;
}

.include-list,
.alma-kit-list,
.ret-scope-list {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

.include-list li,
.alma-kit-list li,
.ret-scope-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.5;
}

.include-list li i,
.alma-kit-list li i,
.ret-scope-list li i {
  color: var(--color-primary);
  margin-top: 3px;
}

.include-card.dark .include-list li,
.alma-kit-card.dark .alma-kit-list li,
.ret-scope-card.dark .ret-scope-list li {
  color: rgba(255, 255, 255, 0.72);
}

/* Tablas */
.decision-table-wrap,
.ba-fit-table-wrap,
.arg-fit-table-wrap,
.alma-compare-wrap,
.ret-compare-wrap {
  overflow-x: auto;
  margin: 36px 0;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.decision-table,
.arg-fit-table,
.alma-compare-table,
.ret-compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
}

.arg-fit-table,
.alma-compare-table,
.ret-compare-table {
  min-width: 760px;
}

.decision-table th,
.arg-fit-table th,
.alma-compare-table th,
.ret-compare-table th {
  background: #111;
  color: #fff;
  text-align: left;
  padding: 18px;
  font-size: 0.78rem;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.decision-table td,
.arg-fit-table td,
.alma-compare-table td,
.ret-compare-table td {
  padding: 18px;
  border-bottom: 0.9px solid rgba(0, 0, 0, 0.07);
  color: #555;
  font-size: 0.92rem;
  line-height: 1.55;
}

.decision-table td strong,
.arg-fit-table td strong,
.alma-compare-table td strong,
.ret-compare-table td strong {
  color: #111;
}

/* Procesos */
.process-steps,
.arg-flow,
.ba-route-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 40px 0;
  counter-reset: flow;
}

.arg-flow::before,
.ba-route-line::before {
  content: '';
  position: absolute;
  top: 29px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 153, 0, 0.35) 15%, rgba(255, 153, 0, 0.35) 85%, transparent 100%);
  z-index: 0;
}

.process-step,
.arg-flow-step,
.ba-route-step {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #111;
  border: 0.9px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 22px;
  min-height: 150px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.3s ease;
}

.arg-flow-step,
.ba-route-step {
  padding: 58px 20px 22px;
  min-height: 165px;
}

.process-step:hover,
.arg-flow-step:hover,
.ba-route-step:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 153, 0, 0.35);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #000;
  font-weight: 900;
  margin-bottom: 14px;
}

.arg-flow-step::before,
.ba-route-step::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--color-primary);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.arg-flow-step::after,
.ba-route-step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: 20px;
  width: 22px;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.7;
}

.process-step h3,
.arg-flow-step h3,
.ba-route-step h3 {
  color: #111;
  font-size: 0.86rem;
  margin-bottom: 9px;
}

.process-step p,
.arg-flow-step p,
.ba-route-step p {
  color: #555;
  font-size: 0.8rem;
  line-height: 1.55;
  margin: 0;
}

/* Notas técnicas y data boxes */
.arg-warning-box,
.alma-warning,
.ret-warning,
.data-box {
  position: relative;
  margin: 38px 0;
  padding: 26px 28px 26px 70px;
  border-radius: 16px;
  background: #fff;
  border: 0.9px solid rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.055);
}

.arg-warning-box::before,
.alma-warning::before,
.ret-warning::before,
.data-box::before {
  content: 'i';
  position: absolute;
  top: 26px;
  left: 24px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 153, 0, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 900;
  font-style: italic;
}

.arg-warning-box h3,
.alma-warning h3,
.ret-warning h3,
.data-box h3 {
  color: #111;
  font-size: 1rem;
  margin-bottom: 10px;
}

.arg-warning-box p,
.alma-warning p,
.ret-warning p,
.data-box p {
  color: #555;
  margin: 0;
  line-height: 1.65;
}

.data-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.data-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f7f7f8;
  border: 0.9px solid rgba(0, 0, 0, 0.07);
  color: #111;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.82rem;
  font-weight: 800;
}

.data-chip i {
  color: var(--color-primary);
}

/* Confianza, obras y contexto local */
.trust-signal-panel,
.local-context-panel {
  position: relative;
  overflow: hidden;
  margin: 42px 0;
  padding: 30px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(255, 153, 0, 0.14), transparent 42%), #101010;
  color: #fff;
  border: 0.9px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.2);
}

.local-context-panel {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 62%, #fff7e8 100%);
  color: #111;
  border: 0.9px solid rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-medium);
}

.trust-signal-panel h2,
.trust-signal-panel h3 {
  color: #fff;
  margin-top: 0;
}

.local-context-panel h2,
.local-context-panel h3 {
  color: #111;
  margin-top: 0;
}

.trust-signal-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.local-context-panel p {
  color: #555;
}

.trust-signal-grid,
.local-context-grid,
.project-case-grid,
.project-scope-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.trust-signal-grid {
  grid-template-columns: repeat(3, 1fr);
}

.local-context-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trust-signal-card,
.local-context-card {
  border-radius: 14px;
  padding: 22px;
}

.trust-signal-card {
  background: rgba(255, 255, 255, 0.055);
  border: 0.9px solid rgba(255, 255, 255, 0.09);
}

.local-context-card {
  background: #fff;
  border: 0.9px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.trust-signal-card i,
.local-context-card i {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--color-primary);
  background: rgba(255, 153, 0, 0.12);
}

.trust-signal-card h3,
.local-context-card h3 {
  font-size: 0.94rem;
  margin-bottom: 9px;
  letter-spacing: 0;
}

.trust-signal-card p,
.local-context-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
}

.trust-signal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.project-case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 36px 0;
}

.project-case-card {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 0.9px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), border-color 0.25s ease;
}

.project-case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 153, 0, 0.34);
  box-shadow: var(--shadow-hover);
}

.project-case-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.project-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.94);
  transition: transform 0.5s var(--ease-out-expo);
}

.project-case-card:hover .project-case-media img {
  transform: scale(1.04);
}

.project-case-body {
  padding: 24px;
}

.project-case-body h3 {
  color: #111;
  font-size: 1.05rem;
  margin-bottom: 12px;
  letter-spacing: 0;
}

.project-case-body p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.65;
}

.project-case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.project-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 8px 11px;
  background: #f5f5f7;
  color: #222;
  font-size: 0.74rem;
  font-weight: 800;
}

.project-pill i {
  color: var(--color-primary);
}

.project-scope-grid {
  grid-template-columns: repeat(4, 1fr);
}

.project-scope-card {
  background: #fff;
  border: 0.9px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.project-scope-card h3 {
  color: #111;
  font-size: 0.95rem;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.project-scope-card p {
  color: #555;
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
}

/* FAQ y links */
.visual-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 32px 0;
}

.visual-faq-card {
  border-radius: 12px;
  padding: 24px;
}

.visual-faq-card h3 {
  font-size: 0.96rem;
  margin-bottom: 12px;
  line-height: 1.25;
}

.visual-faq-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.related-links-box {
  background: #f5f5f7;
  border-radius: 12px;
  padding: 24px;
  margin: 36px 0;
}

.related-links-box h3 {
  color: #111;
  font-size: 1rem;
  margin-bottom: 15px;
}

.related-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 0.9px solid rgba(0, 0, 0, 0.08);
  color: #111 !important;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.related-chip:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  color: var(--color-primary) !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   BUENOS AIRES HUB
   ========================================================================== */

.ba-hub-panel {
  position: relative;
  overflow: hidden;
  margin: 44px 0;
  padding: 36px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(255, 153, 0, 0.16), transparent 42%), linear-gradient(135deg, #090909 0%, #161616 100%);
  border: 0.9px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  color: #fff;
}

.ba-hub-panel::after {
  content: '';
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  border: 1px solid rgba(255, 153, 0, 0.24);
  opacity: 0.5;
}

.ba-hub-panel h2,
.ba-hub-panel h3 {
  color: #fff;
  margin-top: 0;
}

.ba-hub-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.ba-hub-kpis {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.ba-kpi-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.055);
  border: 0.9px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 24px;
}

.ba-kpi-card strong {
  display: block;
  color: var(--color-primary);
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.ba-kpi-card span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ba-kpi-card p {
  margin: 10px 0 0;
  font-size: 0.84rem;
  line-height: 1.55;
}

.ba-service-matrix,
.ba-map-grid {
  display: grid;
  gap: 18px;
  margin: 40px 0;
}

.ba-service-matrix {
  grid-template-columns: repeat(4, 1fr);
}

.ba-map-grid {
  grid-template-columns: repeat(3, 1fr);
}

.ba-service-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ba-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 153, 0, 0.38);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.09);
}

.ba-service-card::before {
  content: '';
  position: absolute;
  inset: auto -35px -55px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(255, 153, 0, 0.1);
}

.ba-service-icon {
  background: #111;
}

.ba-service-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.ba-service-card p {
  font-size: 0.88rem;
  line-height: 1.65;
}

.ba-corridor-showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  margin: 42px 0;
}

.ba-corridor-main {
  background: radial-gradient(circle at top right, rgba(255, 153, 0, 0.16), transparent 40%), #101010;
  color: #fff;
  border-radius: 18px;
  padding: 34px;
  border: 0.9px solid rgba(255, 255, 255, 0.09);
}

.ba-corridor-main h3 {
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.ba-corridor-main p {
  color: rgba(255, 255, 255, 0.72);
}

.ba-corridor-list {
  display: grid;
  gap: 14px;
}

.ba-corridor-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  background: #fff;
  border: 0.9px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.ba-corridor-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 0;
}

.ba-corridor-item h3 {
  color: #111;
  font-size: 0.95rem;
  margin: 0 0 7px;
}

.ba-corridor-item p {
  color: #555;
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0;
}

.ba-zone-card {
  border-radius: 16px;
  padding: 26px;
}

.ba-zone-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.ba-zone-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.ba-zone-card .related-chip-row {
  margin-top: 18px;
}

.ba-cta-band {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px;
  align-items: center;
  margin: 44px 0;
  padding: 30px;
  border-radius: 18px;
  background: #fff7e8;
  border: 0.9px solid rgba(255, 153, 0, 0.3);
}

.ba-cta-band h3 {
  color: #111;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.ba-cta-band p {
  color: #555;
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================================
   ARGENTINA INDUSTRIAL MAP
   ========================================================================== */

.arg-hub-panel {
  position: relative;
  overflow: hidden;
  margin: 44px 0;
  padding: 38px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 56%, #fff7e8 100%);
  color: #111;
  border: 0.9px solid rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--color-primary);
  box-shadow: var(--shadow-medium);
}

.arg-hub-panel::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: rgba(255, 153, 0, 0.1);
  pointer-events: none;
}

.arg-hub-panel::after {
  content: 'Mapa industrial';
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(0, 0, 0, 0.06);
  font-size: clamp(1.8rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  pointer-events: none;
}

.arg-hub-panel h2,
.arg-hub-panel h3 {
  position: relative;
  z-index: 1;
  color: #111;
  margin-top: 0;
}

.arg-hub-panel h2 {
  max-width: 620px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.arg-hub-panel p {
  position: relative;
  z-index: 1;
  color: #555;
  max-width: 680px;
}

.arg-hub-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.arg-hub-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  border: 0.9px solid rgba(0, 0, 0, 0.08);
  color: #222;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.arg-hub-tag i {
  color: var(--color-primary);
}

.arg-market-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
  margin: 42px 0;
}

.arg-market-main {
  border-radius: 18px;
  padding: 34px;
}

.arg-market-main h3 {
  color: #111;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.arg-market-main p {
  color: #555;
  line-height: 1.7;
}

.arg-market-side {
  display: grid;
  gap: 14px;
}

.arg-market-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  border-radius: 16px;
  padding: 20px;
}

.arg-market-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 0;
}

.arg-market-card h3 {
  margin: 0 0 7px;
  font-size: 0.95rem;
}

.arg-market-card p {
  font-size: 0.84rem;
  line-height: 1.55;
}

.arg-region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 40px 0;
}

.arg-region-card {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  border-radius: 18px;
  padding: 28px;
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo), border-color 0.35s ease;
}

.arg-region-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 153, 0, 0.38);
  box-shadow: var(--shadow-hover);
}

.arg-region-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(255, 153, 0, 0.35) 45%, transparent 100%);
}

.arg-region-card::after {
  content: '';
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 145px;
  height: 145px;
  border-radius: 999px;
  background: rgba(255, 153, 0, 0.08);
  pointer-events: none;
}

.arg-region-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.03rem;
  margin-bottom: 12px;
}

.arg-region-card p {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  line-height: 1.65;
}

.arg-region-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.arg-region-meta span {
  border-radius: 999px;
  padding: 7px 10px;
  background: #f5f5f7;
  border: 0.9px solid rgba(0, 0, 0, 0.06);
  color: #333;
  font-size: 0.72rem;
  font-weight: 800;
}

/* ==========================================================================
   PRODUCT PAGES: ALMA LLENA Y RETICULADAS
   ========================================================================== */

.alma-product-panel,
.ret-product-panel {
  position: relative;
  overflow: hidden;
  margin: 44px 0;
  padding: 38px;
  border-radius: 20px;
  background: linear-gradient(135deg, #080808 0%, #171717 100%);
  color: #fff;
  border: 0.9px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.24);
}

.alma-product-panel {
  background: radial-gradient(circle at top left, rgba(255, 153, 0, 0.18), transparent 42%), linear-gradient(135deg, #080808 0%, #171717 100%);
}

.ret-product-panel {
  background: radial-gradient(circle at top right, rgba(255, 153, 0, 0.18), transparent 42%), linear-gradient(135deg, #080808 0%, #171717 100%);
}

.alma-product-panel h2,
.alma-product-panel h3,
.ret-product-panel h2,
.ret-product-panel h3 {
  color: #fff;
  margin-top: 0;
}

.alma-product-panel p,
.ret-product-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.alma-product-grid,
.ret-product-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.ret-product-grid {
  grid-template-columns: 1.12fr 0.88fr;
}

.alma-price-card,
.ret-geometry-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 0.9px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px;
}

.alma-price-card strong,
.ret-geometry-card strong {
  display: block;
  color: var(--color-primary);
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

.ret-geometry-card strong {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.alma-price-card span,
.ret-geometry-card span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.alma-spec-grid,
.ret-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 40px 0;
}

.alma-spec-card,
.ret-feature-card {
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.alma-spec-card:hover,
.ret-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 153, 0, 0.36);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

.alma-spec-icon,
.ret-feature-icon {
  background: #111;
}

.alma-spec-card h3,
.ret-feature-card h3 {
  font-size: 0.98rem;
  margin-bottom: 10px;
}

.alma-spec-card p,
.ret-feature-card p {
  font-size: 0.86rem;
  line-height: 1.62;
}

.alma-use-grid,
.ret-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0;
}

.alma-use-card,
.ret-fit-card {
  background: #f5f5f7;
  border-radius: 16px;
  padding: 24px;
  border: 0.9px solid rgba(0, 0, 0, 0.06);
}

.alma-use-card h3,
.ret-fit-card h3 {
  font-size: 0.98rem;
  margin-bottom: 10px;
}

.alma-use-card p,
.ret-fit-card p {
  font-size: 0.86rem;
  line-height: 1.62;
}

/* ==========================================================================
   CONTACTO
   ========================================================================== */

.contact-section {
  background-color: var(--color-bg-dark);
  border-top: 0.9px solid #222;
  padding-bottom: 54px;
  position: relative;
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-info-block {
  padding-right: 36px;
}

.contact-header-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 27px;
  margin-left: 0;
}

.contact-logo-hero {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  display: flex;
}

.contact-logo-hero img {
  width: 110px;
  height: 120px;
  display: block;
  margin-left: -30px;
  filter: drop-shadow(0 0 15px rgba(255, 153, 0, 0.3));
  animation: logoPulse 2.7s ease-in-out infinite alternate;
  will-change: transform, filter;
}

@keyframes logoPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 15px rgba(255, 153, 0, 0.2));
  }

  100% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 35px rgba(255, 153, 0, 0.7));
  }
}

.contact-title {
  font-size: clamp(2.25rem, 4vw, 3.15rem);
  margin-bottom: 0;
  line-height: 1.1;
  color: #fff;
  margin-left: -20px;
}

.contact-title span {
  color: var(--color-primary);
}

.contact-desc {
  color: var(--color-text-muted-dark);
  font-size: 1.035rem;
  line-height: 1.8;
  max-width: 540px;
  font-weight: 300;
  text-transform: none;
}

.contact-details {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact-item h5 {
  color: var(--color-text-muted-dark);
  font-size: 0.765rem;
  letter-spacing: 1.8px;
  margin-bottom: 9px;
}

.contact-item a,
.contact-item p {
  font-size: 1.26rem;
  font-weight: 500;
  transition: color 0.3s ease;
  color: #fff;
}

.contact-item a:hover {
  color: var(--color-primary);
}

.form-container {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  padding: 54px;
  border: 0.9px solid rgba(255, 255, 255, 0.08);
  border-radius: 3.6px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.form-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  transform: translate(-50%, -50%);
  background-image: url('./images/logo.avif');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  filter: brightness(0) invert(1);
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
}

.form-container form {
  position: relative;
  z-index: 1;
}

.form-group {
  position: relative;
  margin-bottom: 36px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.9px solid rgba(255, 255, 255, 0.2);
  padding: 13.5px 0;
  color: #fff;
  font-family: inherit;
  font-size: 0.99rem;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
}

.form-label {
  position: absolute;
  top: 13.5px;
  left: 0;
  color: var(--color-text-muted-dark);
  font-size: 0.99rem;
  pointer-events: none;
  transition: all 0.3s ease;
  font-weight: 300;
}

.form-group.has-value .form-label,
.form-group.is-focused .form-label,
.form-input:focus ~ .form-label,
.form-input:valid ~ .form-label,
.form-textarea:focus ~ .form-label,
.form-textarea:valid ~ .form-label {
  top: -18px;
  font-size: 0.765rem;
  color: var(--color-primary);
  letter-spacing: 0.9px;
  font-weight: 700;
}

.form-group.is-focused .form-input,
.form-group.is-focused .form-textarea {
  border-bottom-color: var(--color-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 108px;
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22.5px;
}

.form-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
}

.form-checkbox-label {
  color: var(--color-text-muted-dark);
  font-size: 0.9rem;
  font-weight: 300;
  text-transform: none;
}

.form-checkbox-label a {
  color: var(--color-primary);
  font-weight: 500;
}

.form-checkbox-label a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  background: var(--color-primary) !important;
  color: #000 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  min-height: 46px;
  padding: 13.5px;
  border: none;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.9px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  z-index: 1;
}

.btn-submit:hover {
  transform: translateY(-1.8px);
  filter: brightness(1.03);
}

.btn-submit span,
.btn-submit i {
  color: #000 !important;
}

.form-container .btn-submit:disabled {
  cursor: wait;
}

.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-textarea:-webkit-autofill,
.form-textarea:-webkit-autofill:hover,
.form-textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 9999s ease-in-out 0s;
}

.form-input::selection,
.form-textarea::selection {
  background: rgba(255, 153, 0, 0.35);
  color: #fff;
}

/* ==========================================================================
   FOOTER Y FABS
   ========================================================================== */

footer {
  background: linear-gradient(180deg, #050505 0%, #000 100%);
  padding: 63px 5% 36px;
  border-top: 0.9px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.18fr;
  gap: 40px;
  max-width: 1260px;
  margin: 0 auto 45px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13.5px;
  margin-bottom: 18px;
}

.footer-brand img {
  height: 45px;
  opacity: 0.9;
  filter: grayscale(100%);
}

.footer-brand h4 {
  font-size: 1.35rem;
  letter-spacing: 0.9px;
  color: #fff;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  max-width: 390px;
  margin-bottom: 13.5px;
  font-weight: 300;
  text-transform: none;
}

.footer-col h5 {
  font-size: 0.72rem;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-col h5::after {
  content: '';
  display: block;
  width: 32px;
  height: 1.8px;
  margin-top: 10px;
  background: var(--color-primary);
}

.footer-link-list,
.footer-zone-list {
  display: grid;
  gap: 10px;
}

.footer-link-list a,
.footer-zone-list a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.45;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link-list a:hover,
.footer-zone-list a:hover {
  color: var(--color-primary);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 13.5px;
  font-weight: 300;
}

.footer-contact-item i {
  color: var(--color-primary);
  width: 16px;
  text-align: center;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease;
}

.footer-contact-item a:hover {
  color: var(--color-primary);
}

.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.9px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 153, 0, 0.55);
  background: rgba(255, 153, 0, 0.12);
  color: var(--color-primary);
}

.footer-bottom {
  max-width: 1260px;
  margin: 0 auto;
  text-align: center;
  padding-top: 27px;
  border-top: 0.9px solid rgba(255, 255, 255, 0.08);
  color: #666;
  font-size: 0.81rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-legals {
  display: flex;
  justify-content: center;
  gap: 27px;
  margin-top: 0;
}

.footer-legals a {
  color: #555;
  font-size: 0.765rem;
  transition: color 0.3s ease;
}

.footer-legals a:hover {
  color: var(--color-primary);
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fab-container {
  position: fixed;
  bottom: 36px;
  right: 36px;
  display: flex;
  flex-direction: column;
  gap: 13.5px;
  z-index: 999;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21.6px;
  color: #fff;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, background-color 0.3s;
  border: 0.9px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.fab:hover {
  transform: translateY(-1.8px);
}

.fab-wa {
  background-color: #25d366;
  border-color: #25d366;
}

.fab-wa i,
.fab-top i {
  color: #fff;
  opacity: 1;
  font-size: 1em;
  line-height: 1;
}

.fab-top {
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 153, 0, 0.5);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.3s ease;
}

.fab-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.fab-top.visible:hover {
  background: #121212;
  border-color: rgba(255, 153, 0, 0.75);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {
  .ba-service-matrix,
  .alma-spec-grid,
  .ret-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-map-grid,
  .arg-region-grid,
  .alma-use-grid,
  .ret-fit-grid,
  .trust-signal-grid,
  .local-context-grid,
  .project-scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-hub-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps,
  .arg-flow,
  .ba-route-line {
    grid-template-columns: repeat(3, 1fr);
  }

  .arg-flow::before,
  .ba-route-line::before {
    display: none;
  }
}

@media (max-width: 980px) {
  header {
    padding: 13px 5%;
    min-height: 70px;
    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: blur(13.5px);
    -webkit-backdrop-filter: blur(13.5px);
    border-bottom: 0.9px solid rgba(255, 255, 255, 0.06);
  }

  .desktop-nav,
  .desktop-only {
    display: none !important;
  }

  .header-actions {
    gap: 13px;
  }

  .brand-container {
    gap: 10px;
    max-width: calc(100vw - 95px);
  }

  .brand-container::after {
    left: 43px;
    height: 22px;
  }

  .brand-icon {
    height: 38px !important;
    padding-bottom: 10px;
    margin-left: 0;
  }

  .brand-text {
    padding-left: 8px;
    min-width: 0;
  }

  .brand-title {
    font-size: 13px;
    letter-spacing: 2.2px;
  }

  .brand-subtitle {
    font-size: 6.4px;
    letter-spacing: 2.6px;
  }

  .hamburger {
    display: flex !important;
    width: 31px;
    height: 22px;
    padding: 3px;
  }

  .hamburger span {
    height: 2px;
    border-radius: 99px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(1px, -2px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-14px);
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(1px, 2px);
  }

  .quick-summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .include-grid,
  .alma-kit-box,
  .ret-scope-box {
    grid-template-columns: 1fr;
  }

  .visual-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 921.6px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-info-block {
    padding-right: 0;
  }

  .form-container {
    padding: 36px;
  }

}

@media (max-width: 892.8px) {
  .hero {
    padding: 0 5%;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    padding: 18px 0;
    border-left: none;
    border-top: 1.8px solid var(--color-primary);
    width: 100%;
  }

  .hero-content > div {
    flex-direction: column;
    width: 100%;
    gap: 13.5px !important;
  }

  .btn-cta,
  .btn-nav {
    width: 100%;
    justify-content: center;
  }

  .seo-cta-row .btn-cta,
  .seo-cta-row .btn-nav {
    min-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 780px) {
  .ba-hub-panel,
  .arg-hub-panel,
  .arg-market-main,
  .alma-product-panel,
  .ret-product-panel {
    padding: 28px 22px;
  }

  .arg-hub-panel::after {
    display: none;
  }

  .ba-hub-kpis,
  .ba-service-matrix,
  .ba-corridor-showcase,
  .ba-map-grid,
  .ba-route-line,
  .ba-cta-band,
  .arg-market-grid,
  .arg-region-grid,
  .arg-flow,
  .alma-product-grid,
  .ret-product-grid,
  .alma-spec-grid,
  .ret-feature-grid,
  .alma-use-grid,
  .ret-fit-grid,
  .trust-signal-grid,
  .local-context-grid,
  .project-case-grid,
  .project-scope-grid {
    grid-template-columns: 1fr;
  }

  .ba-cta-band {
    text-align: left;
  }

  .arg-warning-box,
  .alma-warning,
  .ret-warning,
  .data-box {
    padding: 24px 20px;
  }

  .arg-warning-box::before,
  .alma-warning::before,
  .ret-warning::before,
  .data-box::before {
    display: none;
  }

  .data-chip {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 691.2px) {
  .fab-container {
    bottom: 18px;
    right: 18px;
  }

  .fab {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .footer-legals {
    flex-direction: column;
    gap: 9px;
  }

  .form-container {
    padding: 27px 18px;
  }
}

@media (max-width: 560px) {
  .quick-summary-grid {
    grid-template-columns: 1fr;
  }

  .offer-highlight {
    padding: 26px 20px;
  }

  .include-card,
  .alma-kit-card,
  .ret-scope-card {
    padding: 22px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  header {
    padding: 12px 4.5%;
  }

  .brand-title {
    font-size: 12px;
    letter-spacing: 1.8px;
  }

  .brand-subtitle {
    font-size: 5.8px;
    letter-spacing: 2px;
  }

  .brand-icon {
    height: 35px !important;
  }

  .brand-container::after {
    left: 39px;
  }

  .mobile-menu-card {
    padding: 19px;
    border-radius: 18px;
  }

  .mobile-menu-title {
    font-size: 1rem;
  }

  .mobile-nav-link {
    font-size: 0.94rem;
    min-height: 51px;
  }
}

/* ==========================================================================
   ACCESIBILIDAD: REDUCCIÓN DE MOVIMIENTO
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .nav-intro-ready,
  .hero-intro-ready,
  .hero-bg-ready,
  .seo-animate,
  .mobile-nav-link {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .contact-logo-hero img {
    animation: none !important;
  }

  .btn-nav::before,
  .btn-cta::after,
  .btn-submit::after {
    transition: none !important;
  }
}
/* =========================================================
   AJUSTE PREMIUM CONTENIDO SEO
   Mantiene intacto: navbar, hero, footer, contacto, formulario,
   mobile menu, FAB y estilos base del index.
   ========================================================= */


/* =========================================================
   1) CONTENIDO SEO GENERAL
   ========================================================= */

.theme-light {
  background-color: var(--color-bg-light);
}

.seo-content {
  max-width: 1040px;
  margin: 0 auto;
}

.seo-content > h2 {
  max-width: 860px;
  margin: 64px auto 22px;
  padding-left: 18px;
  border-left: 3px solid var(--color-primary);
  position: relative;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  letter-spacing: 0.7px;
  line-height: 1.08;
}

.seo-content > h2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 14px;
  height: 1px;
  background: var(--color-primary);
}

.seo-content > h3 {
  max-width: 860px;
  margin: 42px auto 14px;
  font-size: 1.16rem;
  letter-spacing: 0.7px;
}

.seo-content > p {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: 1.02rem;
  line-height: 1.82;
  font-weight: 400;
  color: var(--color-text-muted-light);
}

.seo-content ul {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.seo-inline-links a {
  color: var(--color-text-main-light);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 153, 0, 0.65);
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.seo-inline-links a:hover {
  color: var(--color-primary);
  border-bottom-color: transparent;
  text-decoration: none;
}


/* =========================================================
   2) BLOQUES TIPO HUB / PANEL PRINCIPAL
   Aplica a Argentina, Buenos Aires, Alma llena y Reticuladas
   sin tocar hero ni header.
   ========================================================= */

.arg-hub-panel,
.ba-hub-panel,
.alma-product-panel,
.ret-product-panel {
  position: relative;
  overflow: hidden;
  margin: 56px 0;
  padding: clamp(32px, 5vw, 56px);
  border-radius: 0;
  background: #fff;
  background-image:
    linear-gradient(rgba(255, 153, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 153, 0, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: center;
  color: var(--color-text-main-light);
  border: 0.9px solid rgba(0, 0, 0, 0.055);
  box-shadow: -7px 7px 0 rgba(255, 153, 0, 0.11);
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo);
}

.arg-hub-panel:hover,
.ba-hub-panel:hover,
.alma-product-panel:hover,
.ret-product-panel:hover {
  transform: translate(3px, -3px);
  box-shadow: -11px 11px 0 rgba(255, 153, 0, 0.16);
}

.arg-hub-panel::before,
.ba-hub-panel::before,
.alma-product-panel::before,
.ret-product-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
}

.arg-hub-panel::after,
.ba-hub-panel::after {
  display: none;
}

.arg-hub-panel h2,
.ba-hub-panel h2,
.alma-product-panel h2,
.ret-product-panel h2 {
  max-width: 720px;
  margin-top: 0;
  padding-left: 0 !important;
  border-left: none !important;
  color: var(--color-text-main-light);
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  letter-spacing: 0.2px;
}

.arg-hub-panel h2::before,
.ba-hub-panel h2::before,
.alma-product-panel h2::before,
.ret-product-panel h2::before {
  display: none !important;
}

.arg-hub-panel p,
.ba-hub-panel p,
.alma-product-panel p,
.ret-product-panel p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: var(--color-text-muted-light);
  line-height: 1.85;
}


/* =========================================================
   3) CHIPS PREMIUM
   ========================================================= */

.arg-hub-tags,
.related-chip-row,
.data-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.arg-hub-tags {
  margin-top: 32px;
}

.arg-hub-tag,
.related-chip,
.data-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 0;
  padding: 10px 16px;
  background: #fff;
  border: 0.9px solid rgba(0, 0, 0, 0.085);
  color: var(--color-text-main-light) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 2px 2px 0 rgba(255, 153, 0, 0.09);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    background 0.28s ease;
}

.arg-hub-tag:hover,
.related-chip:hover,
.data-chip:hover {
  transform: translate(-2px, -2px);
  border-color: rgba(255, 153, 0, 0.48);
  color: var(--color-primary) !important;
  box-shadow: 4px 4px 0 rgba(255, 153, 0, 0.18);
  background: rgba(255, 153, 0, 0.025);
}

.arg-hub-tag i,
.data-chip i {
  color: var(--color-primary);
  font-size: 0.85em;
}


/* =========================================================
   4) BLOQUE REFERENCIA / MERCADO ARGENTINA
   ========================================================= */

.arg-market-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  gap: 24px;
  margin: 54px 0;
}

.arg-market-main {
  position: relative;
  background: #fff;
  border-radius: 0;
  padding: clamp(30px, 4vw, 52px);
  border: 0.9px solid rgba(0, 0, 0, 0.055);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.035);
}

.arg-market-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

.arg-market-main h3 {
  color: var(--color-text-main-light);
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
  letter-spacing: 0.4px;
  margin-bottom: 18px;
}

.arg-market-main p {
  color: var(--color-text-muted-light);
  line-height: 1.82;
}

.arg-market-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.arg-market-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
  background: #fff;
  color: var(--color-text-main-light);
  border-radius: 0;
  padding: 22px;
  border: 0.9px solid rgba(0, 0, 0, 0.055);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.025);
  transition:
    transform 0.36s var(--ease-out-expo),
    box-shadow 0.36s var(--ease-out-expo),
    border-color 0.28s ease;
}

.arg-market-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.36s var(--ease-out-expo);
}

.arg-market-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 0, 0.28);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.arg-market-card:hover::after {
  width: 100%;
}

.arg-market-icon {
  width: 50px;
  height: 50px;
  border-radius: 0;
  background: rgba(255, 153, 0, 0.08);
  color: var(--color-primary);
  border: 0.9px solid rgba(255, 153, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.arg-market-card h3 {
  color: var(--color-text-main-light);
  margin: 0 0 8px;
  font-size: 0.98rem;
  letter-spacing: 0.6px;
}

.arg-market-card p {
  color: var(--color-text-muted-light);
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.68;
}


/* =========================================================
   5) CARDS DE CORREDORES / REGIONES
   ========================================================= */

.arg-region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 54px 0;
}

.arg-region-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border-radius: 0;
  padding: 36px 30px;
  background: #fff;
  border: 0.9px solid rgba(0, 0, 0, 0.055);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.028);
  transition:
    transform 0.42s var(--ease-out-expo),
    box-shadow 0.42s var(--ease-out-expo),
    border-color 0.28s ease;
  display: flex;
  flex-direction: column;
}

.arg-region-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 153, 0, 0.24);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.075);
}

.arg-region-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 153, 0, 0.42);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s var(--ease-out-expo);
}

.arg-region-card:hover::before {
  transform: scaleX(1);
}

.arg-region-card::after {
  display: none;
}

.arg-region-card h3 {
  position: relative;
  z-index: 1;
  color: var(--color-text-main-light);
  font-size: 1.06rem;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 0.9px solid rgba(0, 0, 0, 0.065);
  letter-spacing: 0.8px;
}

.arg-region-card p {
  position: relative;
  z-index: 1;
  color: var(--color-text-muted-light);
  font-size: 0.92rem;
  line-height: 1.75;
  flex-grow: 1;
}

.arg-region-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.arg-region-meta span {
  border-radius: 0;
  padding: 6px 11px;
  background: transparent;
  border: 0.9px solid rgba(0, 0, 0, 0.1);
  color: var(--color-text-main-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* =========================================================
   6) TABLAS TIPO SPEC SHEET
   ========================================================= */

.arg-fit-table-wrap,
.decision-table-wrap,
.alma-compare-wrap,
.ret-compare-wrap {
  overflow-x: auto;
  margin: 54px 0;
  border-radius: 0;
  background: #fff;
  border: 0.9px solid rgba(0, 0, 0, 0.065);
  box-shadow: 6px 6px 0 rgba(255, 153, 0, 0.13);
}

.arg-fit-table,
.decision-table,
.alma-compare-table,
.ret-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.arg-fit-table th,
.decision-table th,
.alma-compare-table th,
.ret-compare-table th {
  background: #111;
  color: #fff;
  text-align: left;
  padding: 19px 22px;
  font-size: 0.78rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 800;
  border-bottom: 3px solid var(--color-primary);
}

.arg-fit-table td,
.decision-table td,
.alma-compare-table td,
.ret-compare-table td {
  padding: 19px 22px;
  border-bottom: 0.9px solid rgba(0, 0, 0, 0.045);
  color: var(--color-text-muted-light);
  font-size: 0.94rem;
  line-height: 1.62;
}

.arg-fit-table tr:nth-child(even) td,
.decision-table tr:nth-child(even) td,
.alma-compare-table tr:nth-child(even) td,
.ret-compare-table tr:nth-child(even) td {
  background: rgba(245, 245, 247, 0.52);
}

.arg-fit-table tr:hover td,
.decision-table tr:hover td,
.alma-compare-table tr:hover td,
.ret-compare-table tr:hover td {
  background: rgba(255, 153, 0, 0.035);
  color: var(--color-text-main-light);
}

.arg-fit-table td strong,
.decision-table td strong,
.alma-compare-table td strong,
.ret-compare-table td strong {
  color: var(--color-text-main-light);
  font-weight: 900;
  letter-spacing: 0.35px;
}


/* =========================================================
   7) NOTAS TÉCNICAS / DATA BOXES
   ========================================================= */

.arg-warning-box,
.alma-warning,
.ret-warning,
.data-box {
  position: relative;
  margin: 46px 0;
  padding: 30px 38px 30px 76px;
  border-radius: 0;
  background: #fff;
  border: 0.9px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.035);
}

.arg-warning-box::after,
.alma-warning::after,
.ret-warning::after,
.data-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
}

.arg-warning-box::before,
.alma-warning::before,
.ret-warning::before {
  content: '!';
  position: absolute;
  top: 30px;
  left: 24px;
  width: 30px;
  height: 30px;
  border-radius: 0;
  background: transparent;
  border: 0.9px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 900;
  font-style: normal;
}

.data-box::before {
  content: '✓';
  position: absolute;
  top: 30px;
  left: 24px;
  width: 30px;
  height: 30px;
  border-radius: 0;
  background: var(--color-primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  font-style: normal;
}

.arg-warning-box h3,
.alma-warning h3,
.ret-warning h3,
.data-box h3 {
  color: var(--color-text-main-light);
  font-size: 1.04rem;
  margin-bottom: 10px;
  letter-spacing: 0.7px;
}

.arg-warning-box p,
.alma-warning p,
.ret-warning p,
.data-box p {
  color: var(--color-text-muted-light);
  margin: 0;
  line-height: 1.72;
}


/* =========================================================
   8) TIMELINE / PROCESO
   ========================================================= */

.arg-flow,
.ba-route-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 60px 0;
  counter-reset: flow;
}

.arg-flow::before,
.ba-route-line::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-primary) 0,
    var(--color-primary) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.24;
  z-index: 0;
}

.arg-flow-step,
.ba-route-step {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--color-text-main-light);
  border: 0.9px solid rgba(0, 0, 0, 0.055);
  border-radius: 0;
  padding: 62px 22px 30px;
  min-height: 190px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.032);
  transition:
    transform 0.38s var(--ease-out-expo),
    box-shadow 0.38s var(--ease-out-expo),
    border-color 0.28s ease;
}

.arg-flow-step:hover,
.ba-route-step:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 153, 0, 0.25);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.07);
}

.arg-flow-step::before,
.ba-route-step::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  top: 15px;
  left: 19px;
  color: rgba(255, 153, 0, 0.2);
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
  transition: color 0.35s ease;
}

.arg-flow-step:hover::before,
.ba-route-step:hover::before {
  color: var(--color-primary);
}

.arg-flow-step::after,
.ba-route-step::after {
  display: none;
}

.arg-flow-step h3,
.ba-route-step h3 {
  color: var(--color-text-main-light);
  font-size: 0.94rem;
  margin-bottom: 11px;
  letter-spacing: 0.8px;
}

.arg-flow-step p,
.ba-route-step p {
  color: var(--color-text-muted-light);
  font-size: 0.84rem;
  line-height: 1.65;
  margin: 0;
}


/* =========================================================
   9) FAQ Y RELATED LINKS
   ========================================================= */

.related-links-box {
  background: transparent;
  padding: 38px 0;
  margin: 52px 0;
  border-top: 0.9px solid rgba(0, 0, 0, 0.085);
  border-bottom: 0.9px solid rgba(0, 0, 0, 0.085);
  border-left: none;
}

.related-links-box h3 {
  color: var(--color-text-main-light);
  font-size: 1.04rem;
  margin-bottom: 22px;
  letter-spacing: 1px;
}

.visual-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 46px 0;
}

.visual-faq-card {
  position: relative;
  background: #fff;
  border-radius: 0;
  padding: 36px;
  border: 0.9px solid rgba(0, 0, 0, 0.055);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.026);
  transition:
    transform 0.38s var(--ease-out-expo),
    box-shadow 0.38s var(--ease-out-expo),
    border-color 0.28s ease;
}

.visual-faq-card::before {
  content: 'Q.';
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-style: italic;
  color: rgba(255, 153, 0, 0.12);
  line-height: 1;
  pointer-events: none;
}

.visual-faq-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 153, 0, 0.22);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.06);
}

.visual-faq-card h3 {
  color: var(--color-text-main-light);
  font-size: 1.02rem;
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  max-width: 90%;
}

.visual-faq-card p {
  color: var(--color-text-muted-light);
  font-size: 0.94rem;
  line-height: 1.72;
  margin: 0;
}


/* =========================================================
   10) RESPONSIVE DE BLOQUES SEO
   ========================================================= */

@media (max-width: 1100px) {
  .arg-market-grid {
    grid-template-columns: 1fr;
  }

  .arg-region-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .arg-flow,
  .ba-route-line {
    grid-template-columns: repeat(3, 1fr);
  }

  .arg-flow::before,
  .ba-route-line::before {
    display: none;
  }
}

@media (max-width: 780px) {
  .seo-content > h2 {
    margin-top: 46px;
  }

  .arg-hub-panel,
  .ba-hub-panel,
  .alma-product-panel,
  .ret-product-panel,
  .arg-market-main,
  .arg-warning-box,
  .alma-warning,
  .ret-warning,
  .data-box,
  .related-links-box {
    padding: 24px 20px;
  }

  .arg-warning-box,
  .alma-warning,
  .ret-warning,
  .data-box {
    padding-left: 20px;
  }

  .arg-warning-box::before,
  .alma-warning::before,
  .ret-warning::before,
  .data-box::before {
    display: none;
  }

  .arg-region-grid,
  .arg-flow,
  .ba-route-line,
  .visual-faq-grid {
    grid-template-columns: 1fr;
  }

  .arg-region-card,
  .arg-flow-step,
  .ba-route-step {
    min-height: auto;
  }

  .data-chip {
    width: 100%;
    justify-content: flex-start;
  }
}
