/* =========================================================
   ARTE FLIMS — GEO ECUADOR V5
   Hoja específica de /geo-ecuador/
   Base global: /assets/css/style.css
   No sustituye ni modifica la identidad global de Arte Flims.
   ========================================================= */

/* ---------------------------------------------------------
   01. TOKENS LOCALES / BASE
   --------------------------------------------------------- */
:root {
  --geo-blue: var(--color-brand-accent, #0369a1);
  --geo-blue-deep: #075985;
  --geo-blue-soft: #eaf5fb;
  --geo-navy: var(--color-brand-dark, #0f172a);
  --geo-surface: var(--color-brand-surface, #1e293b);
  --geo-light: var(--color-brand-light, #f8fafc);
  --geo-muted: var(--color-brand-muted, #64748b);
  --geo-line: #dbe4ee;
  --geo-line-strong: #cbd5e1;
  --geo-white: #ffffff;
  --geo-radius-sm: 12px;
  --geo-radius: 18px;
  --geo-radius-lg: 26px;
  --geo-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --geo-shadow: 0 20px 48px rgba(15, 23, 42, 0.10);
  --geo-shadow-dark: 0 28px 70px rgba(15, 23, 42, 0.24);
  --geo-ease: cubic-bezier(.2,.65,.25,1);
}

html {
  scroll-padding-top: 92px;
}

body {
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.geo-section {
  position: relative;
  padding: clamp(76px, 8vw, 118px) 0;
}

.geo-section h2,
.geo-section h3,
.geo-section p,
.geo-section li,
.geo-section a,
.geo-section small,
.geo-section span,
.geo-hero h1,
.geo-hero p,
.geo-hero li {
  text-wrap: pretty;
}

.geo-kicker,
.geo-eyebrow,
.geo-plan-badge,
.geo-hero__architecture-label {
  letter-spacing: .13em;
  text-transform: uppercase;
}

.geo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--geo-blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.geo-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.geo-kicker--dark {
  color: #7dd3fc;
}

.geo-section-head {
  margin-bottom: 48px;
}

.geo-section-head h2 {
  max-width: 920px;
  color: var(--geo-navy);
  font-size: clamp(2.15rem, 4.3vw, 4.25rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.055em;
}

.geo-section-head > p,
.geo-section-head--split > p {
  color: var(--geo-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.geo-section-head--center {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.geo-section-head--center .geo-kicker {
  justify-content: center;
}

.geo-section-head--center h2 {
  margin: 0 auto;
}

.geo-section-head--center p {
  max-width: 720px;
  margin: 20px auto 0;
}

.geo-section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: end;
}

.geo-section-head--split h2 {
  max-width: 760px;
}

.geo-section-minihead h3 {
  color: var(--geo-navy);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.geo-btn,
.geo-plan-cta,
.geo-contact__submit,
.geo-text-link {
  transition: transform .25s var(--geo-ease), background-color .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.geo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.geo-btn svg,
.geo-text-link svg,
.geo-plan-cta svg,
.geo-enterprise-strip a svg,
.geo-contact__submit svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.geo-btn:hover,
.geo-plan-cta:hover,
.geo-text-link:hover,
.geo-contact__submit:hover {
  transform: translateY(-2px);
}

.geo-btn--primary {
  background: var(--geo-blue);
  color: var(--geo-white);
  box-shadow: 0 14px 32px rgba(3, 105, 161, .24);
}

.geo-btn--primary:hover {
  background: var(--geo-blue-deep);
  box-shadow: 0 18px 38px rgba(3, 105, 161, .30);
}

.geo-btn--ghost {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
  color: var(--geo-white);
}

.geo-btn--ghost:hover {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
}

.geo-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--geo-blue);
  font-size: 14px;
  font-weight: 900;
}

.geo-text-link:hover {
  color: var(--geo-blue-deep);
}

.geo-text-link--light {
  color: #e0f2fe;
}

.geo-text-link--light:hover {
  color: var(--geo-white);
}

/* ---------------------------------------------------------
   02. NAVEGACIÓN
   --------------------------------------------------------- */
#mainNav {
  transition: background-color .28s ease, box-shadow .28s ease, padding .28s ease, border-color .28s ease;
}

#mainNav .nav-link {
  position: relative;
}

#mainNav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: right .25s ease;
}

#mainNav .nav-link:hover::after {
  right: 0;
}

#mainNav.bg-white {
  background: rgba(255,255,255,.96) !important;
  border-bottom: 1px solid rgba(203,213,225,.7);
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

#mainNav.bg-white .nav-link {
  color: #475569 !important;
}

#mainNav.bg-white .nav-link:hover {
  color: var(--geo-navy) !important;
}

#mainNav.bg-white .geo-nav-cta {
  background: var(--geo-navy) !important;
  color: var(--geo-white) !important;
  box-shadow: 0 10px 26px rgba(15,23,42,.15);
}

#mainNav.bg-white #mobileMenuBtn {
  color: var(--geo-navy) !important;
}

/* ---------------------------------------------------------
   03. HERO
   --------------------------------------------------------- */
.geo-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 82px;
  isolation: isolate;
}

.geo-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -28% -8%;
  width: 48vw;
  height: 48vw;
  min-width: 520px;
  min-height: 520px;
  border: 1px solid rgba(125,211,252,.12);
  border-radius: 50%;
  z-index: 0;
}

.geo-hero::after {
  content: "";
  position: absolute;
  top: 14%;
  right: 34%;
  width: 1px;
  height: 66%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.14), transparent);
  z-index: 1;
}

.geo-hero__media {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(54vw, 880px);
  z-index: -2;
  pointer-events: none;
}

.geo-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(22%) saturate(.92) contrast(1.02);
  opacity: .38;
}

.geo-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 28%, rgba(3,105,161,.20), transparent 34%),
    linear-gradient(90deg, var(--geo-navy) 0%, rgba(15,23,42,.98) 40%, rgba(15,23,42,.82) 67%, rgba(15,23,42,.72) 100%),
    linear-gradient(180deg, transparent 58%, var(--geo-navy) 100%);
}

.geo-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: center;
  width: 100%;
}

.geo-hero__content {
  max-width: 760px;
}

.geo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #bae6fd;
  font-size: 11px;
  font-weight: 900;
}

.geo-eyebrow--dark {
  color: #bae6fd;
}

.geo-diagnostic,
.geo-framework,
.geo-proof,
.geo-eeat,
.geo-process,
.geo-silo,
.geo-faq {
  isolation: isolate;
}

.geo-framework-step__body {
  min-width: 0;
}

.geo-eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 0 6px rgba(56,189,248,.10);
}

.geo-hero__title {
  max-width: 760px;
  color: var(--geo-white);
  font-size: clamp(3.4rem, 7.1vw, 7.25rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.072em;
}

.geo-hero__subtitle {
  max-width: 680px;
  margin-top: 24px;
  color: #f8fafc;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.geo-hero__lead {
  max-width: 680px;
  margin-top: 22px;
  color: #a9bacd;
  font-size: 1.02rem;
  line-height: 1.8;
}

.geo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.geo-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.geo-hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
}

.geo-hero__proof svg {
  width: 15px;
  height: 15px;
  color: #7dd3fc;
}

.geo-hero__architecture {
  position: relative;
  align-self: center;
  padding: 26px 0 26px 32px;
  border-left: 1px solid rgba(255,255,255,.14);
}

.geo-hero__architecture-label {
  margin-bottom: 18px;
  color: #7dd3fc;
  font-size: 10px;
  font-weight: 900;
}

.geo-hero__architecture-list {
  display: grid;
  gap: 0;
  counter-reset: architecture;
}

.geo-hero__architecture-list li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.geo-hero__architecture-list li:last-child {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.geo-hero__architecture-list li > span {
  grid-row: 1 / 3;
  color: rgba(255,255,255,.28);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.geo-hero__architecture-list strong {
  color: var(--geo-white);
  font-size: 14px;
  font-weight: 800;
}

.geo-hero__architecture-list small {
  color: #7f92a8;
  font-size: 11px;
  line-height: 1.5;
}

/* ---------------------------------------------------------
   04. EL RETO
   --------------------------------------------------------- */
.geo-challenge {
  overflow: hidden;
}

.geo-challenge__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}

.geo-challenge__signals {
  border-top: 1px solid var(--geo-line);
}

.geo-signal {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--geo-line);
}

.geo-signal__number {
  padding-top: 2px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.geo-signal h3 {
  color: var(--geo-navy);
  font-size: 1.04rem;
  font-weight: 850;
  line-height: 1.35;
}

.geo-signal p {
  max-width: 620px;
  margin-top: 7px;
  color: var(--geo-muted);
  font-size: .91rem;
  line-height: 1.7;
}

.geo-challenge__statement {
  position: sticky;
  top: 118px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid #26364b;
  border-radius: var(--geo-radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(3,105,161,.18), transparent 38%),
    var(--geo-navy);
  color: var(--geo-white);
  box-shadow: var(--geo-shadow-dark);
}

.geo-challenge__statement h3 {
  color: var(--geo-white);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.05em;
}

.geo-challenge__statement h3 span {
  color: #9fb0c4;
}

.geo-challenge__statement > p {
  margin-top: 20px;
  color: #b6c2d0;
  font-size: .96rem;
  line-height: 1.8;
}

.geo-challenge__framework-line {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.geo-challenge__framework-line small {
  display: block;
  margin-bottom: 8px;
  color: #7dd3fc;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.geo-challenge__framework-line strong {
  display: block;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

/* ---------------------------------------------------------
   05. DEFINICIÓN / TAXONOMÍA
   --------------------------------------------------------- */
.geo-definition {
  border-top: 1px solid var(--geo-line);
  border-bottom: 1px solid var(--geo-line);
}

.geo-definition__intro {
  max-width: 920px;
  margin-bottom: 42px;
}

.geo-definition__intro h2 {
  color: var(--geo-navy);
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.06em;
}

.geo-definition__intro > p {
  max-width: 880px;
  margin-top: 24px;
  color: #475569;
  font-size: 1rem;
  line-height: 1.9;
}

.geo-definition__intro strong {
  color: var(--geo-navy);
}

.geo-taxonomy {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--geo-line-strong);
  border-bottom: 1px solid var(--geo-line-strong);
}

.geo-taxonomy article {
  min-height: 188px;
  padding: 26px 24px 28px;
  border-right: 1px solid var(--geo-line);
  transition: background-color .25s ease, transform .25s var(--geo-ease);
}

.geo-taxonomy article:last-child {
  border-right: 0;
}

.geo-taxonomy article:hover {
  background: var(--geo-white);
}

.geo-taxonomy article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--geo-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.geo-taxonomy h3 {
  color: var(--geo-navy);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.3;
}

.geo-taxonomy p {
  margin-top: 9px;
  color: var(--geo-muted);
  font-size: .83rem;
  line-height: 1.65;
}

/* ---------------------------------------------------------
   06. FRAMEWORK — EDITORIAL, NO TARJETAS
   --------------------------------------------------------- */
.geo-framework__layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 124px);
  align-items: start;
}

.geo-framework__intro {
  position: sticky;
  top: 118px;
}

.geo-framework__intro h2 {
  color: var(--geo-navy);
  font-size: clamp(2.35rem, 4.6vw, 4.4rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.06em;
}

.geo-framework__intro > p {
  margin-top: 20px;
  color: var(--geo-muted);
  font-size: .95rem;
  line-height: 1.8;
}

.geo-framework__intro .geo-text-link {
  margin-top: 28px;
}

.geo-framework__steps {
  border-top: 1px solid var(--geo-line-strong);
}

.geo-framework-step {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 20px;
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--geo-line);
}

.geo-framework-step__number {
  color: #a8b7c7;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.05em;
}

.geo-framework-step__topline {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 9px;
}

.geo-framework-step__topline > span {
  color: var(--geo-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.geo-framework-step__topline small {
  color: #94a3b8;
  font-size: 11px;
  text-align: right;
}

.geo-framework-step h3 {
  color: var(--geo-navy);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.geo-framework-step p {
  max-width: 720px;
  margin-top: 9px;
  color: var(--geo-muted);
  font-size: .9rem;
  line-height: 1.75;
}

/* ---------------------------------------------------------
   07. DIAGNÓSTICO
   --------------------------------------------------------- */
.geo-diagnostic__shell {
  display: grid;
  grid-template-columns: minmax(310px, .76fr) minmax(0, 1.24fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--geo-line);
  border-radius: var(--geo-radius-lg);
  background: var(--geo-white);
  box-shadow: var(--geo-shadow);
}

.geo-diagnostic__offer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(34px, 5vw, 58px);
  background:
    radial-gradient(circle at 100% 0%, rgba(3,105,161,.22), transparent 42%),
    var(--geo-navy);
  color: var(--geo-white);
}

.geo-diagnostic__offer h2 {
  max-width: 440px;
  color: var(--geo-white);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.065em;
}

.geo-diagnostic__offer > p {
  max-width: 500px;
  margin-top: 22px;
  color: #b5c4d3;
  font-size: .96rem;
  line-height: 1.82;
}

.geo-diagnostic__price {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 4px 12px;
  margin: 34px 0 30px;
}

.geo-diagnostic__price > span {
  grid-row: 1 / 3;
  align-self: center;
  color: #93a7bb;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.geo-diagnostic__price strong {
  color: var(--geo-white);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.07em;
}

.geo-diagnostic__price small {
  color: #9fb0c4;
  font-size: 12px;
}

.geo-diagnostic__deliverables {
  padding: clamp(34px, 5vw, 58px);
}

.geo-deliverables {
  margin-top: 26px;
  border-top: 1px solid var(--geo-line);
}

.geo-deliverables li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--geo-line);
}

.geo-deliverables li > span {
  color: var(--geo-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.geo-deliverables strong {
  display: block;
  color: var(--geo-navy);
  font-size: .95rem;
  font-weight: 850;
}

.geo-deliverables p {
  margin-top: 4px;
  color: var(--geo-muted);
  font-size: .82rem;
  line-height: 1.6;
}

.geo-diagnostic__note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 3px solid var(--geo-blue);
  background: #eef6fb;
  color: #475569;
  font-size: .84rem;
  line-height: 1.65;
}

.geo-diagnostic__note strong {
  color: var(--geo-navy);
}

/* ---------------------------------------------------------
   08. PLANES Y PAQUETES
   --------------------------------------------------------- */
.geo-plans {
  overflow: hidden;
}

.geo-plan-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto 44px;
  padding: 18px 22px;
  border-top: 1px solid var(--geo-line);
  border-bottom: 1px solid var(--geo-line);
}

.geo-plan-path > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 1px 8px;
}

.geo-plan-path > div span {
  grid-row: 1 / 3;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 900;
}

.geo-plan-path strong {
  color: var(--geo-navy);
  font-size: 13px;
  font-weight: 900;
}

.geo-plan-path small {
  color: var(--geo-muted);
  font-size: 11px;
}

.geo-plan-path > svg {
  width: 16px;
  height: 16px;
  color: #b9c5d1;
}

.geo-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  padding: 14px;
  border: 1px solid #dce5ee;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.geo-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: var(--geo-navy);
  transition: transform .28s var(--geo-ease), box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
}

.geo-plan-card:hover {
  transform: translateY(-4px);
}

.geo-plan-card--featured {
  z-index: 2;
  border-color: #0f172a;
  background: var(--geo-white);
  box-shadow: 0 20px 44px rgba(15,23,42,.13);
}

.geo-plan-card--featured::before {
  content: "RECOMENDADO";
  position: absolute;
  top: 0;
  right: 24px;
  padding: 7px 11px 8px;
  border-radius: 0 0 8px 8px;
  background: var(--geo-blue);
  color: var(--geo-white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.geo-plan-card--dark {
  background:
    radial-gradient(circle at 100% 0%, rgba(3,105,161,.20), transparent 36%),
    var(--geo-navy);
  color: var(--geo-white);
  box-shadow: 0 18px 38px rgba(15,23,42,.16);
}

.geo-plan-card__head,
.geo-plan-card__body,
.geo-plan-card__foot {
  padding-left: 26px;
  padding-right: 26px;
}

.geo-plan-card__head {
  padding-top: 28px;
}

.geo-plan-card__head > p {
  min-height: 84px;
  margin-top: 10px;
  color: var(--geo-muted);
  font-size: .82rem;
  line-height: 1.65;
}

.geo-plan-card--dark .geo-plan-card__head > p {
  color: #b7c3d0;
}

.geo-plan-badge {
  display: inline-block;
  color: var(--geo-blue);
  font-size: 9px;
  font-weight: 900;
}

.geo-plan-card--dark .geo-plan-badge {
  color: #7dd3fc;
}

.geo-plan-card h3 {
  margin-top: 12px;
  color: var(--geo-navy);
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
}

.geo-plan-card--dark h3 {
  color: var(--geo-white);
}

.geo-plan-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--geo-line);
}

.geo-plan-card--dark .geo-plan-price {
  border-top-color: rgba(255,255,255,.12);
}

.geo-plan-price span {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.geo-plan-price strong {
  color: var(--geo-navy);
  font-size: clamp(2.35rem, 4vw, 3.45rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.06em;
}

.geo-plan-card--dark .geo-plan-price strong {
  color: var(--geo-white);
}

.geo-plan-price small {
  color: #64748b;
  font-size: 11px;
}

.geo-plan-card--dark .geo-plan-price small {
  color: #94a3b8;
}

.geo-plan-card__body {
  flex: 1;
  padding-top: 24px;
}

.geo-plan-includes {
  margin-bottom: 14px;
  color: var(--geo-navy);
  font-size: 12px;
  font-weight: 900;
}

.geo-plan-card--dark .geo-plan-includes {
  color: #e2e8f0;
}

.geo-plan-card__body ul {
  display: grid;
  gap: 11px;
}

.geo-plan-card__body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #475569;
  font-size: .79rem;
  line-height: 1.55;
}

.geo-plan-card--dark .geo-plan-card__body li {
  color: #d1d9e3;
}

.geo-plan-card__body li svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--geo-blue);
  stroke-width: 2.4;
}

.geo-plan-card--dark .geo-plan-card__body li svg {
  color: #7dd3fc;
}

.geo-plan-card__foot {
  padding-top: 26px;
  padding-bottom: 26px;
}

.geo-plan-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid #d5dee8;
  border-radius: 12px;
  background: var(--geo-white);
  color: var(--geo-navy);
  font-size: 12px;
  font-weight: 900;
}

.geo-plan-card--featured .geo-plan-cta {
  border-color: var(--geo-blue);
  background: var(--geo-blue);
  color: var(--geo-white);
  box-shadow: 0 12px 24px rgba(3,105,161,.18);
}

.geo-plan-card--dark .geo-plan-cta {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: var(--geo-white);
}

.geo-plan-cta:hover {
  border-color: var(--geo-navy);
  background: var(--geo-navy);
  color: var(--geo-white);
}

.geo-plan-card--featured .geo-plan-cta:hover {
  border-color: var(--geo-blue-deep);
  background: var(--geo-blue-deep);
}

.geo-plan-card--dark .geo-plan-cta:hover {
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.12);
}

.geo-enterprise-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  margin-top: 18px;
  padding: 26px 28px;
  border: 1px solid var(--geo-line);
  border-radius: 16px;
  background: var(--geo-white);
}

.geo-enterprise-strip h3 {
  margin-top: 8px;
  color: var(--geo-navy);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -.035em;
}

.geo-enterprise-strip p {
  max-width: 760px;
  margin-top: 6px;
  color: var(--geo-muted);
  font-size: .82rem;
  line-height: 1.6;
}

.geo-enterprise-strip__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 190px;
}

.geo-enterprise-strip__price > span {
  color: var(--geo-muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.geo-enterprise-strip__price strong {
  margin: 2px 0 7px;
  color: var(--geo-navy);
  font-size: 1.35rem;
  font-weight: 900;
}

.geo-enterprise-strip__price a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--geo-blue);
  font-size: 12px;
  font-weight: 900;
}

.geo-package-logic {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: 44px 70px;
  margin-top: clamp(54px, 7vw, 88px);
  padding-top: 44px;
  border-top: 1px solid var(--geo-line-strong);
}

.geo-package-logic > div h3 {
  max-width: 420px;
  color: var(--geo-navy);
  font-size: clamp(1.85rem, 3.3vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.05em;
}

.geo-package-logic ol {
  border-top: 1px solid var(--geo-line);
}

.geo-package-logic ol li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--geo-line);
}

.geo-package-logic ol li > span {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 900;
}

.geo-package-logic ol strong {
  display: block;
  color: var(--geo-navy);
  font-size: .9rem;
  font-weight: 850;
}

.geo-package-logic ol p {
  margin-top: 4px;
  color: var(--geo-muted);
  font-size: .8rem;
  line-height: 1.55;
}

.geo-package-logic__note {
  grid-column: 1 / -1;
  margin-top: -18px;
  padding: 14px 0 0;
  border-top: 1px dashed var(--geo-line-strong);
  color: #7a899a;
  font-size: .76rem;
  line-height: 1.65;
}

/* ---------------------------------------------------------
   09. PRUEBA / CASO ARTE FLIMS
   --------------------------------------------------------- */
.geo-proof__layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.geo-proof__content h2 {
  color: var(--geo-navy);
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.06em;
}

.geo-proof__content > p {
  max-width: 590px;
  margin-top: 20px;
  color: var(--geo-muted);
  font-size: .94rem;
  line-height: 1.82;
}

.geo-proof__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--geo-line-strong);
  border-bottom: 1px solid var(--geo-line-strong);
}

.geo-proof__metrics > div {
  padding: 18px 10px 18px 0;
  border-right: 1px solid var(--geo-line);
}

.geo-proof__metrics > div:nth-child(even) {
  padding-left: 20px;
  border-right: 0;
}

.geo-proof__metrics > div:nth-child(-n+2) {
  border-bottom: 1px solid var(--geo-line);
}

.geo-proof__metrics strong {
  display: block;
  color: var(--geo-navy);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
}

.geo-proof__metrics span {
  display: block;
  margin-top: 7px;
  color: var(--geo-muted);
  font-size: 11px;
}

.geo-proof__disclaimer {
  margin-top: 20px !important;
  padding-top: 18px;
  border-top: 1px dashed var(--geo-line-strong);
  color: #7b8b9d !important;
  font-size: .78rem !important;
}

.geo-proof__disclaimer strong {
  color: var(--geo-navy);
}

.geo-proof__visual {
  position: relative;
  margin: 0;
  padding: 10px;
  border-radius: 16px;
  background: var(--geo-navy);
  box-shadow: var(--geo-shadow-dark);
}

.geo-proof__visual::before {
  content: "";
  display: block;
  height: 24px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 8px 8px, #475569 0 3px, transparent 3.5px),
    radial-gradient(circle at 20px 8px, #475569 0 3px, transparent 3.5px),
    radial-gradient(circle at 32px 8px, #475569 0 3px, transparent 3.5px);
  background-repeat: no-repeat;
}

.geo-proof__visual img {
  width: 100%;
  max-height: 630px;
  object-fit: cover;
  object-position: top;
  border-radius: 9px;
  background: var(--geo-white);
}

.geo-proof__visual figcaption {
  padding: 9px 4px 2px;
  color: #8697aa;
  font-size: 10px;
  line-height: 1.5;
}

/* ---------------------------------------------------------
   10. RECONOCIMIENTO + E-E-A-T
   --------------------------------------------------------- */
.geo-eeat__recognition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 14px 70px;
  align-items: start;
  margin-bottom: 62px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--geo-line-strong);
}

.geo-eeat__recognition .geo-kicker,
.geo-eeat__recognition h2,
.geo-eeat__recognition .geo-text-link {
  grid-column: 1;
}

.geo-eeat__recognition > p,
.geo-eeat__recognition > small {
  grid-column: 2;
}

.geo-eeat__recognition h2 {
  max-width: 770px;
  color: var(--geo-navy);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.055em;
}

.geo-eeat__recognition > p {
  color: var(--geo-muted);
  font-size: .92rem;
  line-height: 1.75;
}

.geo-eeat__recognition > small {
  color: #94a3b8;
  font-size: 10px;
  line-height: 1.6;
}

.geo-eeat__profile {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  min-height: 490px;
  overflow: hidden;
  border-radius: var(--geo-radius-lg);
  background: var(--geo-navy);
  box-shadow: var(--geo-shadow-dark);
}

.geo-eeat__photo {
  position: relative;
  min-height: 490px;
  overflow: hidden;
}

.geo-eeat__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, var(--geo-navy) 100%);
}

.geo-eeat__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.92) contrast(1.04);
}

.geo-eeat__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 76px);
  color: var(--geo-white);
}

.geo-eeat__content h2 {
  max-width: 720px;
  color: var(--geo-white);
  font-size: clamp(2.25rem, 4.7vw, 4.5rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.06em;
}

.geo-eeat__content > p {
  max-width: 720px;
  margin-top: 22px;
  color: #b8c6d4;
  font-size: .95rem;
  line-height: 1.8;
}

.geo-eeat__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.geo-eeat__tags li {
  padding: 7px 11px;
  border: 1px solid #334155;
  border-radius: 999px;
  color: #dbeafe;
  font-size: 10px;
  font-weight: 800;
}

.geo-eeat__content .geo-text-link {
  margin-top: 30px;
}

/* ---------------------------------------------------------
   11. MANIFIESTO
   --------------------------------------------------------- */
.geo-manifesto {
  position: relative;
  overflow: hidden;
  background: var(--geo-blue);
  color: var(--geo-white);
}

.geo-manifesto::before {
  content: "GEO · ENTITY SEO · AEO · LLMO · GEO · ENTITY SEO · AEO · LLMO";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  white-space: nowrap;
  color: rgba(255,255,255,.055);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: -.055em;
}

.geo-manifesto__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  padding: 64px 0;
  text-align: center;
}

.geo-manifesto__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
}

.geo-manifesto__icon svg {
  width: 18px;
  height: 18px;
}

.geo-manifesto p {
  max-width: 980px;
  color: var(--geo-white);
  font-size: clamp(2.35rem, 5.7vw, 5.6rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.06em;
}

.geo-manifesto strong {
  color: var(--geo-white);
}

/* ---------------------------------------------------------
   12. PROCESO
   --------------------------------------------------------- */
.geo-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--geo-line-strong);
  border-bottom: 1px solid var(--geo-line-strong);
}

.geo-process__steps li {
  position: relative;
  padding: 26px 24px 28px;
  border-right: 1px solid var(--geo-line);
}

.geo-process__steps li:last-child {
  border-right: 0;
}

.geo-process__steps li > span {
  display: block;
  margin-bottom: 20px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.geo-process__steps h3 {
  color: var(--geo-navy);
  font-size: 1.05rem;
  font-weight: 900;
}

.geo-process__steps p {
  margin-top: 8px;
  color: var(--geo-muted);
  font-size: .8rem;
  line-height: 1.6;
}

/* ---------------------------------------------------------
   13. ARQUITECTURA SILO
   --------------------------------------------------------- */
.geo-silo__map {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.geo-silo__hub,
.geo-silo__spokes a {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  color: inherit;
  transition: transform .25s var(--geo-ease), border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.geo-silo__hub {
  max-width: 620px;
  margin: 0 auto 50px;
  padding: 26px 28px;
  border: 1px solid #aac2d4;
  border-radius: 16px;
  background: var(--geo-white);
  box-shadow: var(--geo-shadow-sm);
}

.geo-silo__hub::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 50px;
  background: #b9c8d6;
}

.geo-silo__hub > span,
.geo-silo__spokes a > span {
  color: var(--geo-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.geo-silo__hub strong,
.geo-silo__spokes strong {
  grid-column: 1;
  color: var(--geo-navy);
  font-weight: 900;
}

.geo-silo__hub strong {
  font-size: 1.15rem;
}

.geo-silo__hub small,
.geo-silo__spokes small {
  grid-column: 1;
  color: var(--geo-muted);
  font-size: .78rem;
  line-height: 1.55;
}

.geo-silo__hub svg,
.geo-silo__spokes svg {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: start;
  width: 18px;
  height: 18px;
  color: #64748b;
}

.geo-silo__spokes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.geo-silo__spokes::before {
  content: "";
  position: absolute;
  left: 16.66%;
  right: 16.66%;
  top: -26px;
  height: 1px;
  background: #b9c8d6;
}

.geo-silo__spokes a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -26px;
  width: 1px;
  height: 26px;
  background: #b9c8d6;
}

.geo-silo__spokes a {
  min-height: 155px;
  padding: 23px 22px;
  border: 1px solid var(--geo-line);
  border-radius: 14px;
  background: rgba(255,255,255,.74);
}

.geo-silo__spokes a:hover,
.geo-silo__hub:hover {
  transform: translateY(-3px);
  border-color: #93b0c5;
  background: var(--geo-white);
  box-shadow: var(--geo-shadow-sm);
}

.geo-silo__spokes strong {
  font-size: .95rem;
  line-height: 1.35;
}

/* ---------------------------------------------------------
   14. TRANSPARENCIA
   --------------------------------------------------------- */
.geo-transparency__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.geo-transparency__yes,
.geo-transparency__no {
  min-height: 100%;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--geo-radius);
}

.geo-transparency__yes {
  border: 1px solid var(--geo-line);
  background: var(--geo-light);
}

.geo-transparency__no {
  border: 1px solid #26364b;
  background: var(--geo-navy);
  color: var(--geo-white);
  box-shadow: 0 18px 38px rgba(15,23,42,.13);
}

.geo-transparency__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--geo-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
}

.geo-transparency__no .geo-transparency__label {
  color: #7dd3fc;
}

.geo-transparency__label svg {
  width: 16px;
  height: 16px;
}

.geo-transparency h3 {
  margin-top: 16px;
  color: var(--geo-navy);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -.035em;
}

.geo-transparency__no h3 {
  color: var(--geo-white);
}

.geo-transparency ul {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.geo-transparency li {
  position: relative;
  padding-left: 22px;
  color: #475569;
  font-size: .84rem;
  line-height: 1.55;
}

.geo-transparency__yes li::before,
.geo-transparency__no li::before {
  position: absolute;
  left: 0;
  top: .1em;
  font-size: 13px;
  font-weight: 900;
}

.geo-transparency__yes li::before {
  content: "✓";
  color: var(--geo-blue);
}

.geo-transparency__no li {
  color: #c6d0dc;
}

.geo-transparency__no li::before {
  content: "×";
  color: #7f94aa;
}

/* ---------------------------------------------------------
   15. CONTACTO
   --------------------------------------------------------- */
.geo-contact {
  overflow: hidden;
}

.geo-contact::before {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -42%;
  width: 46vw;
  height: 46vw;
  min-width: 520px;
  min-height: 520px;
  border: 1px solid rgba(125,211,252,.09);
  border-radius: 50%;
}

.geo-contact__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, .72fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.geo-contact__content h2 {
  max-width: 700px;
  color: var(--geo-white);
  font-size: clamp(2.7rem, 5.4vw, 5.2rem);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.065em;
}

.geo-contact__content h2 span {
  color: #94a3b8;
}

.geo-contact__content > p {
  max-width: 650px;
  margin-top: 22px;
  color: #b8c6d4;
  font-size: .96rem;
  line-height: 1.82;
}

.geo-contact__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.geo-contact__summary > div {
  padding: 19px 16px 19px 0;
  border-right: 1px solid rgba(255,255,255,.10);
}

.geo-contact__summary > div + div {
  padding-left: 16px;
}

.geo-contact__summary > div:last-child {
  border-right: 0;
}

.geo-contact__summary strong {
  display: block;
  color: var(--geo-white);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.04em;
}

.geo-contact__summary span {
  display: block;
  margin-top: 5px;
  color: #8092a6;
  font-size: 10px;
  line-height: 1.5;
}

.geo-contact__form {
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--geo-radius);
  background: var(--geo-white);
  color: var(--geo-navy);
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}

.geo-contact__form-badge {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid #cde3ef;
  border-radius: 999px;
  background: #f0f9ff;
  color: var(--geo-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
}

.geo-contact__form h3 {
  margin-top: 18px;
  color: var(--geo-navy);
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
}

.geo-contact__form > p {
  margin-top: 9px;
  color: var(--geo-muted);
  font-size: .8rem;
}

.geo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 26px;
}

.geo-form-grid > div {
  min-width: 0;
}

.geo-contact__form label {
  display: block;
  margin-bottom: 7px;
  color: #334155;
  font-size: 11px;
  font-weight: 850;
}

.geo-contact__form input,
.geo-contact__form select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #d7e0e9;
  border-radius: 10px;
  background: #fbfdff;
  color: var(--geo-navy);
  font-size: 13px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.geo-contact__form input::placeholder {
  color: #9aa8b7;
}

.geo-contact__form input:focus,
.geo-contact__form select:focus {
  border-color: var(--geo-blue);
  background: var(--geo-white);
  box-shadow: 0 0 0 3px rgba(3,105,161,.10);
}

.geo-contact__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 11px;
  background: var(--geo-navy);
  color: var(--geo-white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(15,23,42,.14);
}

.geo-contact__submit:hover {
  background: var(--geo-blue);
}

.geo-form-alert {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #eff6ff;
  color: #1e40af;
  font-size: 12px;
  line-height: 1.55;
}

/* ---------------------------------------------------------
   16. FAQ
   --------------------------------------------------------- */
.geo-faq__list {
  border-top: 1px solid var(--geo-line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--geo-line);
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 21px 0;
  color: var(--geo-navy);
  font-size: 14px;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-btn svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: #64748b;
  transition: transform .22s ease;
}

.faq-btn[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.faq-content {
  max-width: 760px;
  padding: 0 42px 22px 0;
  color: var(--geo-muted);
  font-size: .84rem;
  line-height: 1.75;
}

/* ---------------------------------------------------------
   17. FOOTER / WHATSAPP
   --------------------------------------------------------- */
#btn-flotante-wsp {
  transition: transform .25s var(--geo-ease), box-shadow .25s ease, background-color .25s ease;
}

#btn-flotante-wsp:hover {
  box-shadow: 0 12px 34px rgba(37,211,102,.34);
}

/* ---------------------------------------------------------
   18. RESPONSIVE — TABLET
   --------------------------------------------------------- */
@media (max-width: 1100px) {
  .geo-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(290px, .72fr);
    gap: 46px;
  }

  .geo-hero__title {
    font-size: clamp(3.4rem, 8vw, 6.4rem);
  }

  .geo-challenge__layout,
  .geo-framework__layout,
  .geo-proof__layout,
  .geo-contact__layout {
    gap: 52px;
  }

  .geo-pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .geo-plan-card--dark {
    grid-column: 1 / -1;
  }

  .geo-plan-card--dark .geo-plan-card__head > p {
    min-height: auto;
  }

  .geo-eeat__profile {
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  }
}

/* ---------------------------------------------------------
   19. RESPONSIVE — 1024
   --------------------------------------------------------- */
@media (max-width: 1024px) {
  .geo-section-head--split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .geo-section-head--split > p {
    max-width: 700px;
  }

  .geo-hero {
    min-height: auto;
    padding-top: 128px;
  }

  .geo-hero::after {
    display: none;
  }

  .geo-hero__media {
    width: 68vw;
    opacity: .78;
  }

  .geo-hero__inner {
    grid-template-columns: 1fr;
  }

  .geo-hero__content {
    max-width: 760px;
  }

  .geo-hero__architecture {
    max-width: 760px;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 24px;
  }

  .geo-hero__architecture-list {
    grid-template-columns: repeat(2, minmax(0,1fr));
    column-gap: 28px;
  }

  .geo-challenge__layout,
  .geo-framework__layout,
  .geo-diagnostic__shell,
  .geo-proof__layout,
  .geo-contact__layout {
    grid-template-columns: 1fr;
  }

  .geo-challenge__statement,
  .geo-framework__intro {
    position: static;
  }

  .geo-taxonomy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .geo-taxonomy article:nth-child(2) {
    border-right: 0;
  }

  .geo-taxonomy article:nth-child(-n+2) {
    border-bottom: 1px solid var(--geo-line);
  }

  .geo-diagnostic__shell {
    border-radius: 22px;
  }

  .geo-plan-path {
    grid-template-columns: repeat(4, 1fr);
  }

  .geo-plan-path > svg {
    display: none;
  }

  .geo-package-logic {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .geo-package-logic__note {
    grid-column: 1;
    margin-top: 0;
  }

  .geo-eeat__recognition {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .geo-eeat__recognition .geo-kicker,
  .geo-eeat__recognition h2,
  .geo-eeat__recognition .geo-text-link,
  .geo-eeat__recognition > p,
  .geo-eeat__recognition > small {
    grid-column: 1;
  }

  .geo-eeat__profile {
    grid-template-columns: 1fr;
  }

  .geo-eeat__photo {
    min-height: 460px;
  }

  .geo-eeat__photo::after {
    background: linear-gradient(180deg, transparent 64%, var(--geo-navy) 100%);
  }

  .geo-process__steps {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .geo-process__steps li:nth-child(2) {
    border-right: 0;
  }

  .geo-process__steps li:nth-child(-n+2) {
    border-bottom: 1px solid var(--geo-line);
  }

  .geo-silo__spokes {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .geo-silo__spokes::before,
  .geo-silo__spokes a::before,
  .geo-silo__hub::after {
    display: none;
  }

  .geo-silo__hub {
    max-width: none;
    margin-bottom: 14px;
  }

  .geo-transparency__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------
   20. RESPONSIVE — MOBILE
   --------------------------------------------------------- */
@media (max-width: 767px) {
  html {
    scroll-padding-top: 78px;
  }

  .geo-section {
    padding: 72px 0;
  }

  .geo-kicker {
    font-size: 10px;
  }

  .geo-section-head {
    margin-bottom: 34px;
  }

  .geo-section-head h2,
  .geo-definition__intro h2,
  .geo-framework__intro h2,
  .geo-proof__content h2,
  .geo-eeat__recognition h2 {
    line-height: 1.02;
  }

  .geo-hero {
    padding: 118px 0 66px;
  }

  .geo-hero::before {
    left: -70%;
    bottom: -15%;
  }

  .geo-hero__media {
    width: 100%;
    inset: 0;
  }

  .geo-hero__media img {
    object-position: 58% top;
    opacity: .22;
  }

  .geo-hero__overlay {
    background:
      linear-gradient(180deg, rgba(15,23,42,.76) 0%, rgba(15,23,42,.92) 42%, var(--geo-navy) 78%),
      var(--geo-navy);
  }

  .geo-hero__title {
    max-width: 100%;
    font-size: clamp(3.2rem, 16vw, 5rem);
    line-height: .88;
  }

  .geo-hero__subtitle {
    font-size: 1.35rem;
  }

  .geo-hero__lead {
    font-size: .94rem;
    line-height: 1.72;
  }

  .geo-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .geo-btn {
    width: 100%;
  }

  .geo-hero__proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .geo-hero__architecture-list {
    grid-template-columns: 1fr;
  }

  .geo-challenge__layout {
    gap: 34px;
  }

  .geo-signal {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 20px 0;
  }

  .geo-challenge__statement {
    padding: 28px 24px;
    border-radius: 18px;
  }

  .geo-taxonomy {
    grid-template-columns: 1fr;
  }

  .geo-taxonomy article {
    min-height: 0;
    border-right: 0 !important;
    border-bottom: 1px solid var(--geo-line) !important;
  }

  .geo-taxonomy article:last-child {
    border-bottom: 0 !important;
  }

  .geo-framework-step {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .geo-framework-step__number {
    font-size: 1.45rem;
  }

  .geo-framework-step__topline {
    flex-direction: column;
    gap: 4px;
  }

  .geo-framework-step__topline small {
    text-align: left;
  }

  .geo-diagnostic__offer,
  .geo-diagnostic__deliverables {
    padding: 30px 24px;
  }

  .geo-diagnostic__offer h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .geo-diagnostic__price {
    margin: 30px 0 26px;
  }

  .geo-diagnostic__price strong {
    font-size: 3.3rem;
  }

  .geo-plan-path {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
    padding: 16px 0;
  }

  .geo-pricing-grid {
    grid-template-columns: 1fr;
    padding: 8px;
    border-radius: 16px;
  }

  .geo-plan-card--dark {
    grid-column: auto;
  }

  .geo-plan-card__head,
  .geo-plan-card__body,
  .geo-plan-card__foot {
    padding-left: 20px;
    padding-right: 20px;
  }

  .geo-plan-card__head > p {
    min-height: auto;
  }

  .geo-enterprise-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .geo-enterprise-strip__price {
    align-items: flex-start;
  }

  .geo-package-logic {
    margin-top: 54px;
    padding-top: 34px;
  }

  .geo-proof__metrics {
    grid-template-columns: 1fr 1fr;
  }

  .geo-proof__visual img {
    max-height: 460px;
  }

  .geo-eeat__recognition {
    margin-bottom: 42px;
    padding-bottom: 30px;
  }

  .geo-eeat__profile {
    border-radius: 18px;
  }

  .geo-eeat__photo {
    min-height: 360px;
  }

  .geo-eeat__content {
    padding: 34px 24px 38px;
  }

  .geo-eeat__content h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .geo-manifesto__inner {
    min-height: 290px;
  }

  .geo-manifesto p {
    font-size: clamp(2.1rem, 11vw, 3.8rem);
  }

  .geo-process__steps {
    grid-template-columns: 1fr;
  }

  .geo-process__steps li {
    border-right: 0;
    border-bottom: 1px solid var(--geo-line);
  }

  .geo-process__steps li:last-child {
    border-bottom: 0;
  }

  .geo-silo__hub,
  .geo-silo__spokes a {
    padding: 21px 19px;
  }

  .geo-transparency__yes,
  .geo-transparency__no {
    padding: 26px 22px;
  }

  .geo-contact__layout {
    gap: 38px;
  }

  .geo-contact__content h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .geo-contact__summary {
    grid-template-columns: 1fr;
  }

  .geo-contact__summary > div,
  .geo-contact__summary > div + div {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  .geo-contact__summary > div:last-child {
    border-bottom: 0;
  }

  .geo-contact__form {
    padding: 26px 20px;
    border-radius: 16px;
  }

  .geo-form-grid {
    grid-template-columns: 1fr;
  }

  .faq-btn {
    padding: 19px 0;
    font-size: 13px;
  }

  .faq-content {
    padding-right: 0;
  }

  #btn-flotante-wsp {
    right: 16px;
    bottom: 16px;
    padding: 13px;
  }
}

/* ---------------------------------------------------------
   21. PANTALLAS PEQUEÑAS
   --------------------------------------------------------- */
@media (max-width: 420px) {
  .geo-hero__title {
    font-size: 3rem;
  }

  .geo-diagnostic__price {
    grid-template-columns: 1fr;
  }

  .geo-diagnostic__price > span {
    grid-row: auto;
  }

  .geo-plan-path {
    grid-template-columns: 1fr;
  }

  .geo-proof__metrics {
    grid-template-columns: 1fr;
  }

  .geo-proof__metrics > div,
  .geo-proof__metrics > div:nth-child(even) {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--geo-line);
  }

  .geo-proof__metrics > div:last-child {
    border-bottom: 0;
  }
}

/* ---------------------------------------------------------
   22. ACCESIBILIDAD / MOVIMIENTO
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
