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

:root {
  --teal:       #1BBFB9;
  --teal-dark:  #17A09A;
  --teal-light: #E6F8F7;
  --teal-mid:   #C2EFED;
  --dark:       #0D1B2A;
  --dark-2:     #1E2D3D;
  --gray:       #64748B;
  --gray-light: #94A3B8;
  --border:     #E2E8F0;
  --bg:         #F8FAFB;
  --white:      #FFFFFF;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(13,27,42,.07);
  --shadow-md:  0 8px 40px rgba(13,27,42,.12);
  --max-w:      1200px;
  --gap:        clamp(40px, 8vw, 96px);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); }
h3, h4, nav, .btn { font-family: "Inter", sans-serif; }
h3 { font-size: 1.2rem; line-height: 1.35; }
p { color: var(--gray); line-height: 1.75; }

.container { width: min(100% - 40px, var(--max-w)); margin: 0 auto; }
.section { padding: var(--gap) 0; }
.section-soft { background: var(--bg); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark p { color: rgba(255,255,255,.68); }
.section-teal { background: var(--teal-light); }
.eyebrow {
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: var(--teal-mid); }
.lead { font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 680px; }
.teal { color: var(--teal); }
.center { text-align: center; }
.center .lead { margin: 0 auto; }
.section-head { margin-bottom: 44px; }
.section-head .eyebrow {
  font-size: clamp(.88rem, 1vw, 1rem);
  letter-spacing: .11em;
}
.seo-page .section-head .eyebrow,
.seo-page .two-col .eyebrow,
.seo-page .cta-band .eyebrow {
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.webs-page .section-head .eyebrow,
.webs-page .two-col .eyebrow,
.webs-page .cta-band .eyebrow {
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.btn {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: .95rem;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  padding: 13px 22px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 8px 24px rgba(27,191,185,.28); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--dark); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-white { background: var(--white); color: var(--teal-dark); }
.btn-white:hover { background: var(--teal-light); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-1px); }

.site-header {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226,232,240,.8);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  transition: box-shadow .25s ease;
  z-index: 1000;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  height: 72px;
  justify-content: space-between;
}
.brand { align-items: center; display: flex; flex-shrink: 0; gap: 12px; }
.brand-logo {
  align-items: center;
  display: flex;
  height: 52px;
  overflow: hidden;
  width: 168px;
}
.brand-logo img {
  height: 100%;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}
.brand-mark {
  align-items: center;
  background: var(--teal);
  border-radius: 10px;
  color: var(--white);
  display: flex;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.brand-text strong { color: var(--dark); display: block; font-size: 1.05rem; line-height: 1; }
.brand-text span { color: var(--gray); display: block; font-size: .66rem; font-weight: 700; letter-spacing: .08em; margin-top: 4px; text-transform: uppercase; }
.nav-links { align-items: center; display: flex; gap: 4px; }
.nav-links a {
  border-radius: 8px;
  color: var(--gray);
  font-size: .9rem;
  font-weight: 650;
  padding: 8px 11px;
}
.nav-links a:hover, .nav-links a.active { background: var(--bg); color: var(--dark); }
.nav-actions { align-items: center; display: flex; gap: 12px; }
.hamburger {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 42px;
  padding: 8px;
  width: 42px;
}
.hamburger span { background: var(--dark); border-radius: 999px; display: block; height: 2px; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: none;
  left: 0;
  padding: 12px 20px 24px;
  position: fixed;
  right: 0;
  top: 72px;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a { border-bottom: 1px solid var(--border); display: block; font-weight: 700; padding: 14px 4px; }
.mobile-menu .btn { margin-top: 16px; width: 100%; }

.hero {
  background: linear-gradient(135deg, var(--white) 56%, var(--teal-light));
  overflow: hidden;
  padding: clamp(54px, 8vw, 92px) 0 clamp(44px, 6vw, 72px);
  position: relative;
}
.hero-grid { align-items: center; display: grid; gap: 60px; grid-template-columns: minmax(0,1fr) minmax(360px,1fr); }
.home-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 34%, rgba(255,255,255,.36) 58%, rgba(255,255,255,.04) 100%),
    linear-gradient(0deg, rgba(13,27,42,.18), rgba(13,27,42,.18));
  min-height: calc(80vh - 58px);
  padding: clamp(48px, 7vw, 96px) 0 clamp(44px, 6vw, 76px);
}
.home-hero::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 34%, rgba(255,255,255,.46) 58%, rgba(255,255,255,.12) 100%),
    linear-gradient(0deg, rgba(13,27,42,.16), rgba(13,27,42,.16)),
    radial-gradient(circle at 72% 48%, rgba(27,191,185,.14), rgba(27,191,185,0) 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.home-hero-bg {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: right center;
  position: absolute;
  width: 100%;
  z-index: 0;
}
.home-hero-overlay {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(80vh - 190px);
  position: relative;
  z-index: 2;
}
.home-hero .hero-content {
  max-width: 700px;
}
.home-hero .lead {
  color: var(--dark-2);
  max-width: 640px;
}
.pill {
  align-items: center;
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: .78rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: .06em;
  margin-bottom: 22px;
  padding: 7px 14px;
  text-transform: uppercase;
}
.pill::before { background: var(--teal); border-radius: 50%; content: ""; height: 7px; width: 7px; }
.hero h1 { margin-bottom: 20px; max-width: 720px; }
.hero .lead { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.proof { color: var(--gray); font-size: .92rem; font-weight: 650; }
.proof-avatars { align-items: center; display: flex; gap: 12px; }
.avatar-stack {
  display: inline-flex;
  flex-shrink: 0;
  padding-left: 2px;
}
.avatar-stack span {
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.95) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 76%, rgba(255,255,255,.95) 0 30%, transparent 31%),
    linear-gradient(135deg, var(--teal), var(--teal-dark));
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(13,27,42,.12);
  height: 28px;
  margin-left: -8px;
  width: 28px;
}
.avatar-stack span:first-child { margin-left: 0; }
.avatar-stack span:nth-child(2) { background-color: #79DAD6; filter: hue-rotate(8deg); }
.avatar-stack span:nth-child(3) { background-color: #C2EFED; filter: saturate(1.1); }
.avatar-stack span:nth-child(4) { background: var(--dark); color: var(--white); position: relative; }
.avatar-stack span:nth-child(4)::after {
  color: var(--white);
  content: "+";
  font-size: .9rem;
  font-weight: 900;
  inset: 0;
  line-height: 24px;
  position: absolute;
  text-align: center;
}
.hero-media { position: relative; }
.image-card {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.image-card img { height: 100%; object-fit: cover; width: 100%; }
.home-hero-badges {
  bottom: clamp(12px, 5vw, 44px);
  display: flex;
  gap: 14px;
  position: absolute;
  right: 0;
}
.home-hero-badges .float-badge,
.home-hero-badges .float-badge-alt {
  bottom: auto;
  left: auto;
  position: static;
  right: auto;
  top: auto;
}
.seo-hero {
  background:
    radial-gradient(ellipse at 20% 48%, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 32%, rgba(255,255,255,.28) 52%, rgba(255,255,255,0) 68%),
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 36%, rgba(255,255,255,.32) 58%, rgba(255,255,255,.04) 100%),
    linear-gradient(0deg, rgba(13,27,42,.08), rgba(13,27,42,.08)),
    url("/assets/img/hero-seo-monitor.webp") center right / auto 100% no-repeat;
  min-height: calc(68vh - 48px);
  padding: clamp(44px, 6vw, 82px) 0 clamp(38px, 5vw, 64px);
}
.seo-hero-overlay {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(68vh - 150px);
}
.seo-hero .fade-up {
  max-width: 720px;
}
.seo-hero .lead {
  color: var(--dark-2);
}
.seo-local-hero {
  background:
    radial-gradient(ellipse at 23% 50%, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 35%, rgba(255,255,255,.32) 58%, rgba(255,255,255,0) 78%),
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 38%, rgba(255,255,255,.24) 64%, rgba(255,255,255,.04) 100%),
    linear-gradient(0deg, rgba(13,27,42,.08), rgba(13,27,42,.08)),
    url("/assets/img/home-seo-local.webp") center right / auto 100% no-repeat;
  min-height: calc(72vh - 48px);
  padding: clamp(48px, 7vw, 94px) 0 clamp(42px, 6vw, 72px);
}
.seo-local-hero-overlay {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(72vh - 170px);
}
.seo-local-hero .fade-up {
  max-width: 760px;
}
.seo-local-hero .lead {
  color: var(--dark-2);
}
.webs-hero {
  background:
    radial-gradient(circle at 78% 26%, rgba(27,191,185,.18), transparent 34%),
    linear-gradient(135deg, var(--white) 54%, var(--teal-light));
}
.process-hero {
  background:
    radial-gradient(ellipse at 22% 50%, rgba(255,255,255,.94) 0%, rgba(255,255,255,.84) 34%, rgba(255,255,255,.3) 58%, rgba(255,255,255,0) 76%),
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 38%, rgba(255,255,255,.28) 64%, rgba(255,255,255,.04) 100%),
    linear-gradient(0deg, rgba(13,27,42,.08), rgba(13,27,42,.08)),
    url("/assets/img/home-service-procesos.webp") center right / auto 100% no-repeat;
  min-height: calc(72vh - 48px);
  padding: clamp(48px, 7vw, 94px) 0 clamp(42px, 6vw, 72px);
}
.process-hero-overlay {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(72vh - 170px);
}
.process-hero .fade-up {
  max-width: 760px;
}
.process-hero .lead {
  color: var(--dark-2);
}
.consultoria-seo-hero {
  background:
    radial-gradient(ellipse at 22% 50%, rgba(255,255,255,.94) 0%, rgba(255,255,255,.84) 34%, rgba(255,255,255,.3) 58%, rgba(255,255,255,0) 76%),
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 38%, rgba(255,255,255,.28) 64%, rgba(255,255,255,.04) 100%),
    linear-gradient(0deg, rgba(13,27,42,.08), rgba(13,27,42,.08)),
    url("/assets/img/seo-ai-visibility.webp") center right / auto 100% no-repeat;
  min-height: calc(72vh - 48px);
  padding: clamp(48px, 7vw, 94px) 0 clamp(42px, 6vw, 72px);
}
.consultoria-seo-hero-overlay {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(72vh - 170px);
}
.consultoria-seo-hero .fade-up {
  max-width: 760px;
}
.consultoria-seo-hero .lead {
  color: var(--dark-2);
}
.process-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.process-proof span {
  background: rgba(255,255,255,.84);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--gray);
  display: grid;
  font-size: .84rem;
  padding: 12px 14px;
}
.process-proof strong {
  color: var(--teal-dark);
  font-size: 1rem;
}
.float-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  bottom: -18px;
  box-shadow: var(--shadow-md);
  left: -18px;
  padding: 14px 18px;
  position: absolute;
}
.float-badge strong, .float-badge-alt strong { display: block; line-height: 1.2; }
.float-badge span, .float-badge-alt span { color: var(--gray); font-size: .76rem; }
.float-badge-alt {
  background: var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(27,191,185,.32);
  color: var(--white);
  padding: 13px 16px;
  position: absolute;
  right: -14px;
  top: -14px;
}
.float-badge-alt span { color: rgba(255,255,255,.84); }

.logos-band {
  background: url("/assets/img/logos/fondo_logos.webp") center center / cover no-repeat;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 34px 0;
}
.logos-band .container { max-width: min(1640px, 98vw); }
.logos-label {
  color: var(--dark-2);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.1;
  margin-bottom: 22px;
  text-align: center;
}
.logos-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.logos-track {
  animation: logos-marquee 34s linear infinite;
  display: flex;
  gap: 28px;
  width: max-content;
}
.logos-carousel:hover .logos-track {
  animation-play-state: paused;
}
.logos-row {
  align-items: center;
  display: flex;
  gap: 28px;
}
.logo-item {
  align-items: center;
  display: inline-flex;
  flex: 0 0 164px;
  height: 78px;
  justify-content: center;
}
.logo-item img {
  height: 38px;
  max-width: 150px;
  object-fit: contain;
  width: 100%;
}
.logo-item.logo-priority img {
  height: 44px;
}
.logo-item.logo-boost img {
  transform: scale(1.22);
  transform-origin: center;
}
@keyframes logos-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 14px)); }
}

.two-col { display: grid; gap: 56px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.check-list, .x-list { display: grid; gap: 14px; margin-top: 26px; }
.check-list li, .x-list li { align-items: flex-start; display: flex; gap: 11px; }
.check-list li::before {
  align-items: center;
  background: rgba(27,191,185,.16);
  border-radius: 50%;
  color: var(--teal);
  content: "✓";
  display: flex;
  flex: 0 0 24px;
  font-weight: 900;
  height: 24px;
  justify-content: center;
}
.x-list li::before {
  align-items: center;
  background: rgba(239,68,68,.15);
  border-radius: 50%;
  color: #EF4444;
  content: "×";
  display: flex;
  flex: 0 0 24px;
  font-weight: 900;
  height: 24px;
  justify-content: center;
}
.dark-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 38px);
}

.card-grid { display: grid; gap: 26px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.card-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.pricing-grid { align-items: stretch; grid-template-columns: repeat(3, minmax(0,1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-img { height: 185px; overflow: hidden; }
.card-img img { height: 100%; object-fit: cover; transition: transform .3s ease; width: 100%; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 24px; position: relative; }
.service-icon {
  align-items: center;
  background: #fff;
  border: 1px solid var(--teal);
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(13,27,42,.14);
  color: var(--teal);
  display: inline-flex;
  height: 72px;
  justify-content: center;
  right: 24px;
  position: absolute;
  top: -36px;
  width: 72px;
}
.service-icon svg {
  fill: none;
  height: 34px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 34px;
}
.card .tag { margin-top: 18px; }
.tag {
  background: var(--teal-light);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  margin-bottom: 14px;
  padding: 5px 10px;
  text-transform: uppercase;
}
.price { color: var(--teal-dark); font-weight: 800; margin: 18px 0 12px; }
.text-link { color: var(--teal-dark); font-weight: 800; }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--teal-dark); }

.stats-bar {
  background:
    radial-gradient(circle at 12% 20%, rgba(27,191,185,.16), transparent 38%),
    linear-gradient(120deg, #061426 0%, #071b32 55%, #051326 100%);
  color: var(--white);
  overflow: hidden;
  padding: clamp(56px, 8vw, 84px) 0;
}
.stats-layout {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(230px, .9fr) minmax(0, 2.45fr);
}
.stats-intro {
  align-self: center;
  max-width: 460px;
}
.stats-intro .eyebrow {
  color: var(--teal);
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.stats-intro h2 {
  color: rgba(255,255,255,.95);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.04;
  margin-bottom: 18px;
}
.stats-intro p {
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  max-width: 44ch;
}
.stats-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.stat-card {
  backdrop-filter: blur(2px);
  background: linear-gradient(180deg, rgba(9,30,53,.76), rgba(6,21,38,.84));
  border: 1px solid rgba(47,138,176,.28);
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(2,10,21,.36), inset 0 1px 0 rgba(125,232,255,.08);
  min-height: 420px;
  padding: 22px 20px 18px;
  position: relative;
}
.stat-icon {
  align-items: center;
  background: linear-gradient(145deg, rgba(50,221,211,.9), rgba(27,191,185,.84));
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(27,191,185,.28);
  color: #f0ffff;
  display: inline-flex;
  height: 74px;
  justify-content: center;
  margin-bottom: 20px;
  width: 74px;
}
.stat-icon svg {
  fill: none;
  height: 34px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 34px;
}
.stat-card strong {
  color: var(--teal);
  display: block;
  font-size: clamp(2rem, 2.8vw, 2.45rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 14px;
  white-space: nowrap;
}
.stat-label {
  color: rgba(238,248,255,.92);
  display: block;
  font-size: clamp(1.05rem, 1.15vw, 1.25rem);
  font-weight: 720;
  line-height: 1.2;
}
.stat-sub {
  color: rgba(226,242,255,.7);
  font-size: .99rem;
  margin-top: 18px;
}
.stat-avatars {
  display: block;
  margin-top: 18px;
}
.stat-avatars img {
  display: block;
  height: auto;
  max-width: 220px;
  width: 100%;
}
.stat-bars {
  align-items: end;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(7, minmax(0,1fr));
  height: 86px;
  margin-top: 20px;
  width: 100%;
}
.stat-bars span {
  background: linear-gradient(180deg, rgba(62,236,227,.95), rgba(27,191,185,.86));
  border-radius: 2px 2px 0 0;
  box-shadow: 0 10px 20px rgba(27,191,185,.2);
  display: block;
}
.stat-bars span:nth-child(1) { height: 7px; }
.stat-bars span:nth-child(2) { height: 10px; }
.stat-bars span:nth-child(3) { height: 18px; }
.stat-bars span:nth-child(4) { height: 24px; }
.stat-bars span:nth-child(5) { height: 34px; }
.stat-bars span:nth-child(6) { height: 48px; }
.stat-bars span:nth-child(7) { height: 62px; }
.stat-graphic {
  border-radius: 12px;
  inset: auto 18px 18px;
  position: absolute;
}
.trend-line {
  background:
    linear-gradient(180deg, rgba(39,197,188,.14), rgba(39,197,188,.04)),
    linear-gradient(90deg, rgba(121,217,252,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(121,217,252,.08) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
  height: 140px;
  overflow: hidden;
}
.trend-line::after {
  background: linear-gradient(95deg, transparent 0%, rgba(61,218,210,.2) 45%, rgba(91,245,255,.58) 100%);
  clip-path: polygon(0% 78%, 12% 68%, 24% 70%, 35% 56%, 47% 60%, 57% 52%, 66% 53%, 77% 43%, 87% 41%, 100% 26%, 100% 100%, 0% 100%);
  content: "";
  inset: 0;
  position: absolute;
}
.stat-locations {
  color: rgba(228,245,255,.92);
  display: grid;
  font-size: 1.02rem;
  font-weight: 700;
  gap: 10px;
  list-style: none;
  margin-top: 18px;
  padding: 0;
}
.stat-locations li {
  align-items: center;
  display: flex;
  gap: 10px;
}
.stat-locations li::before {
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(27,191,185,.2);
  content: "";
  height: 9px;
  width: 9px;
}

.web-approach {
  background:
    radial-gradient(circle at 50% 14%, rgba(27,191,185,.13), transparent 28%),
    linear-gradient(180deg, #0a1a26 0%, #0d2030 100%);
  color: var(--white);
  overflow: hidden;
  padding: clamp(54px, 7vw, 86px) 0 clamp(60px, 8vw, 96px);
}
.web-approach-head {
  margin: 0 auto clamp(44px, 5vw, 62px);
  max-width: 820px;
  text-align: center;
}
.web-approach-head .eyebrow {
  color: var(--teal);
  font-size: clamp(.92rem, 1.25vw, 1.14rem);
  letter-spacing: .11em;
  margin-bottom: 10px;
}
.web-approach-head h2 {
  color: rgba(255,255,255,.94);
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  text-shadow: 0 2px 18px rgba(255,255,255,.12);
}
.web-approach-head h2 span {
  display: inline-block;
  position: relative;
}
.web-approach-head h2 span::after {
  background: var(--teal);
  border-radius: 999px;
  bottom: .02em;
  content: "";
  height: .08em;
  left: -.04em;
  position: absolute;
  right: -.08em;
  transform: rotate(-2deg);
}
.web-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.web-approach-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 0 clamp(22px, 3vw, 46px);
  position: relative;
  text-align: center;
}
.web-approach-item + .web-approach-item::before {
  background: linear-gradient(180deg, transparent, rgba(27,191,185,.28) 12%, rgba(27,191,185,.28) 88%, transparent);
  content: "";
  height: 82%;
  left: 0;
  position: absolute;
  top: 9%;
  width: 1px;
}
.web-approach-icon {
  align-items: center;
  background: rgba(27,191,185,.07);
  border: 1px solid rgba(27,191,185,.2);
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(27,191,185,.08), 0 0 36px rgba(27,191,185,.08);
  color: var(--teal);
  display: flex;
  height: clamp(92px, 9vw, 116px);
  justify-content: center;
  margin-bottom: 30px;
  width: clamp(92px, 9vw, 116px);
}
.web-approach-icon svg {
  fill: none;
  height: 42px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  width: 42px;
}
.web-approach-item h3 {
  color: rgba(255,255,255,.94);
  font-size: clamp(1.12rem, 1.25vw, 1.38rem);
  line-height: 1.25;
  margin: 0 auto 22px;
  max-width: 300px;
}
.web-approach-line {
  background: var(--teal);
  border-radius: 999px;
  display: block;
  height: 3px;
  margin-bottom: 24px;
  width: 54px;
}
.web-approach-item p {
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.75;
  max-width: 310px;
}

.split-images { min-height: 420px; position: relative; }
.split-images .main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 320px;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 76%;
}
.split-images .side-img {
  border: 5px solid var(--white);
  border-radius: var(--radius-lg);
  bottom: 0;
  box-shadow: var(--shadow-md);
  height: 220px;
  object-fit: cover;
  position: absolute;
  right: 0;
  width: 56%;
}
.office-list { display: grid; gap: 12px; margin: 26px 0; }
.office {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.office strong { display: block; }
.team-row { display: flex; flex-wrap: wrap; gap: 12px; }
.team-pill { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 14px; }
.team-pill strong { display: block; font-size: .92rem; }
.team-pill span { color: var(--gray); font-size: .8rem; }

.team-expertise .two-col {
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
}
.team-expertise .eyebrow { color: var(--teal); }
.team-expertise .fade-up > p:not(.eyebrow) {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1.35rem;
}
.team-expertise .fade-up > p strong { color: var(--dark); }
.team-expertise-cards {
  display: grid;
  gap: 20px;
}
.team-expertise-card {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr;
  padding: clamp(22px, 2.4vw, 30px);
}
.expertise-icon {
  align-items: center;
  background: rgba(27,191,185,.12);
  border-radius: 999px;
  color: #0f9f99;
  display: inline-flex;
  height: 76px;
  justify-content: center;
  width: 76px;
}
.expertise-icon svg {
  fill: currentColor;
  height: 34px;
  width: 34px;
}
.team-expertise-card h3 {
  color: var(--dark);
  margin: 0 0 8px;
}
.team-expertise-card p {
  color: var(--gray);
  line-height: 1.75;
  margin: 0;
}

.cta-band { background: var(--dark); color: var(--white); padding: var(--gap) 0; }
.cta-band p { color: rgba(255,255,255,.68); }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  color: var(--dark);
  padding: clamp(24px, 4vw, 38px);
}
.contact-form p { color: var(--gray); }
.form-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.form-group { display: grid; gap: 6px; margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { color: var(--dark); font-size: .84rem; font-weight: 800; }
input, select, textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--dark);
  font: inherit;
  outline: 0;
  padding: 12px 13px;
  width: 100%;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { background: var(--white); border-color: var(--teal); }
input[type="checkbox"] { width: auto; }
.privacy-check {
  align-items: flex-start;
  color: var(--gray);
  display: flex;
  font-size: .82rem;
  font-weight: 650;
  gap: 10px;
  line-height: 1.45;
  margin: 2px 0 18px;
}
.privacy-check input {
  flex: 0 0 auto;
  height: 16px;
  margin-top: 2px;
  width: 16px;
}
.privacy-check a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-message { color: var(--teal-dark); font-size: .9rem; font-weight: 800; margin-top: 12px; min-height: 24px; }
.form-note { color: var(--gray-light); font-size: .78rem; margin-top: 10px; text-align: center; }

.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.feature .num { color: var(--teal); display: block; font-size: 2rem; font-weight: 900; line-height: 1; margin-bottom: 12px; }
.process-page .section-head .eyebrow,
.process-page .two-col .eyebrow,
.process-page .cta-band .eyebrow {
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.consultoria-seo-page .section-head .eyebrow,
.consultoria-seo-page .two-col .eyebrow,
.consultoria-seo-page .cta-band .eyebrow {
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.consultoria-seo-page .process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
}
.process-feature h3 {
  color: var(--dark);
  font-size: clamp(1.15rem, 1.5vw, 1.42rem);
  margin-bottom: 10px;
}
.process-feature {
  position: relative;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.process-feature::after {
  background: linear-gradient(135deg, rgba(27,191,185,.12), rgba(255,255,255,0));
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity .22s ease;
}
.process-feature > * {
  position: relative;
  z-index: 1;
}
.process-feature:hover {
  border-color: var(--teal-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.process-feature:hover::after {
  opacity: 1;
}
.process-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(27,191,185,.25);
  color: var(--white);
  display: flex;
  height: 56px;
  justify-content: center;
  margin-bottom: 18px;
  transition: box-shadow .22s ease, transform .22s ease;
  width: 56px;
}
.process-feature:hover .process-icon {
  box-shadow: 0 16px 34px rgba(27,191,185,.34);
  transform: translateY(-2px) rotate(-3deg) scale(1.04);
}
.process-icon svg {
  fill: none;
  height: 29px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .22s ease;
  width: 29px;
}
.process-feature:hover .process-icon svg {
  transform: scale(1.08);
}
.process-stack div,
.process-steps .step,
.process-pricing .pricing-card {
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.process-stack div:hover,
.process-steps .step:hover,
.process-pricing .pricing-card:hover {
  border-color: var(--teal-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.process-value {
  align-items: center;
}
.process-stack {
  display: grid;
  gap: 14px;
}
.process-stack div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
}
.process-stack strong {
  color: var(--dark);
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.process-stack span {
  color: var(--gray);
}
.process-steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0,1fr));
}
.process-steps .step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
  padding: 24px;
}
.process-steps .step-num {
  margin-bottom: 16px;
}
.tool-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.tool-row span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  font-weight: 700;
  padding: 9px 14px;
}
.process-pricing {
  align-items: stretch;
}
.ai-visibility {
  overflow: hidden;
}
.ai-visibility-grid {
  align-items: center;
  margin-bottom: 34px;
}
.ai-visibility-media {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.ai-visibility-media::after {
  background: linear-gradient(135deg, rgba(27,191,185,.14), rgba(13,27,42,0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.ai-visibility-media img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.ai-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.ai-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
}
.ai-icon {
  align-items: center;
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-radius: 14px;
  color: var(--teal-dark);
  display: flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 16px;
  width: 48px;
}
.ai-icon svg {
  fill: none;
  height: 25px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 25px;
}
.ai-card h3 {
  color: var(--dark);
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.ai-card p {
  font-size: .92rem;
}
.seo-professional {
  background:
    radial-gradient(circle at 50% 18%, rgba(27,191,185,.12), transparent 34%),
    var(--white);
}
.professional-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.professional-card {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-height: 250px;
  padding: 28px;
  position: relative;
}
.professional-card::after {
  background: linear-gradient(135deg, rgba(27,191,185,.16), transparent);
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: .65;
  pointer-events: none;
  position: absolute;
}
.professional-card > * { position: relative; z-index: 1; }
.professional-icon {
  align-items: center;
  background: var(--teal);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(27,191,185,.26);
  color: var(--white);
  display: flex;
  height: 54px;
  justify-content: center;
  margin-bottom: 18px;
  width: 54px;
}
.professional-icon svg {
  fill: none;
  height: 28px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 28px;
}
.professional-card h3 {
  color: var(--dark);
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  margin-bottom: 10px;
}
.timeline { display: grid; gap: 18px; }
.step { align-items: flex-start; display: grid; gap: 18px; grid-template-columns: 58px 1fr; }
.step-num { align-items: center; background: var(--teal); border-radius: 50%; color: var(--white); display: flex; font-weight: 900; height: 46px; justify-content: center; width: 46px; }
.pricing-card { padding: 30px; }
.pricing-card .amount { color: var(--dark); font-size: 2.5rem; font-weight: 900; line-height: 1; margin: 18px 0 8px; }
.pricing-card .amount span { color: var(--gray); font-size: 1rem; font-weight: 700; }
.process-pricing .amount { font-size: clamp(2rem, 3vw, 2.5rem); }
.pricing-note { margin: 22px 0 0; color: var(--gray); font-size: .95rem; text-align: center; }
.pricing-card ul { display: grid; gap: 10px; margin: 22px 0; }
.pricing-card li { color: var(--gray); }
.pricing-card .btn {
  margin-top: 12px;
}
.seo-local-price {
  background:
    radial-gradient(circle at 82% 18%, rgba(27,191,185,.16), transparent 28%),
    linear-gradient(180deg, var(--white), var(--teal-light));
}
.seo-local-price-card {
  margin: 0 auto;
  max-width: 860px;
}
.seo-local-price-card h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  margin-bottom: 16px;
}
.seo-local-price-card p {
  color: var(--dark-2);
}

.case-hero {
  background:
    radial-gradient(circle at 82% 24%, rgba(27,191,185,.16), transparent 28%),
    linear-gradient(135deg, var(--white) 54%, var(--teal-light));
}
.case-hero-grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0,1fr) minmax(360px,.82fr);
}
.case-hero-media {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.case-hero-media::after {
  background: linear-gradient(135deg, rgba(27,191,185,.18), rgba(13,27,42,0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.case-hero-media img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.case-stats .stat strong { font-size: clamp(2rem, 3.4vw, 3rem); }
.case-intro {
  align-items: start;
  margin-bottom: 34px;
}
.case-note {
  color: var(--gray-light);
  font-size: .88rem;
  margin-top: 18px;
}
.case-problem-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.case-card,
.case-checklist {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}
.case-card {
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.case-card:hover {
  border-color: var(--teal-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.case-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 14px;
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  margin-bottom: 18px;
  width: 48px;
}
.case-card h3,
.case-checklist h3 {
  color: var(--dark);
  margin-bottom: 10px;
}
.case-infographic { align-items: center; }
.case-infographic-img {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 10px;
}
.case-infographic-img img {
  border-radius: calc(var(--radius-lg) - 8px);
  width: 100%;
}
.case-solution .card-body { min-height: 260px; }
.case-conclusion { align-items: center; }

/* Caso Furgonetas.net: mantener lectura en fondo claro homogéneo */
.case-page .case-hero {
  background: var(--white);
}
.case-page .hero.case-hero {
  padding-bottom: clamp(18px, 3vw, 34px);
}
.case-page #problema.section {
  padding-top: clamp(14px, 2.4vw, 26px);
}
.case-page .article-content {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.case-page .article-content > * {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}
.case-page .article-content h2 {
  margin: 42px 0 16px;
}
.case-page .article-content h2:first-of-type {
  margin-top: 0;
}
.case-page .table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 20px 0 18px;
  overflow-x: auto;
}
.case-page .table-wrap table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}
.case-page .table-wrap th,
.case-page .table-wrap td {
  border-bottom: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
}
.case-page .table-wrap th {
  background: #f6f9fc;
  color: var(--dark);
  font-weight: 800;
}
.case-page .table-wrap tr:last-child td {
  border-bottom: 0;
}
.case-page .case-infographic-img figcaption {
  color: var(--gray);
  font-size: .9rem;
  margin-top: 10px;
}
.teletest-case .teletest-metrics {
  background:
    radial-gradient(circle at 84% 18%, rgba(27,191,185,.12), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7fb 100%);
}
.teletest-case .teletest-metrics .section-head {
  margin-bottom: 26px;
}
.teletest-case .teletest-metrics .section-head h2 {
  color: var(--dark);
}
.teletest-metrics-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.teletest-metric-card {
  background: linear-gradient(180deg, #0b2239 0%, #091a2e 100%);
  border: 1px solid rgba(47,138,176,.32);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(7,20,36,.28);
  min-height: 190px;
  padding: 16px 14px;
}
.teletest-metric-icon {
  align-items: center;
  background: linear-gradient(145deg, rgba(50,221,211,.92), rgba(27,191,185,.86));
  border-radius: 12px;
  color: #f0ffff;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  margin-bottom: 14px;
  width: 52px;
}
.teletest-metric-icon svg {
  fill: none;
  height: 25px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 25px;
}
.teletest-metric-card strong {
  color: var(--teal);
  display: block;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  line-height: 1.03;
  margin-bottom: 10px;
}
.teletest-metric-label {
  color: rgba(233,246,255,.9);
  display: block;
  font-size: .95rem;
  font-weight: 650;
  line-height: 1.35;
}
.teletest-case .teletest-article > h2 {
  border-left: 4px solid var(--teal);
  margin-top: 44px;
  padding-left: 12px;
}
.teletest-case .teletest-article > h3 {
  color: var(--dark);
  margin-top: 24px;
  position: relative;
}
.teletest-case .teletest-article > h3::before {
  background: linear-gradient(140deg, var(--teal), var(--teal-dark));
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 8px;
  margin-right: 8px;
  transform: translateY(-1px);
  width: 8px;
}
.teletest-case .teletest-article ul li {
  margin-bottom: 9px;
}
.teletest-case .table-wrap {
  box-shadow: var(--shadow);
}
.teletest-case .table-wrap th {
  background: linear-gradient(180deg, #f1f7fb 0%, #eaf2f9 100%);
}
.teletest-case .table-wrap tbody tr:nth-child(even) td {
  background: #fbfdff;
}
.teletest-case .case-infographic-img {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  margin-top: 10px;
  padding: 10px;
}
.teletest-case .case-infographic-img figcaption {
  text-align: center;
}

.article-hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(27,191,185,.14), transparent 28%),
    linear-gradient(135deg, var(--white) 56%, var(--teal-light));
}
.article-hero-grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0,1fr) minmax(360px,.78fr);
}
.article-meta {
  color: var(--gray);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: .86rem;
  font-weight: 700;
  margin-top: 26px;
}
.article-meta span {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}
.article-meta span::before {
  background: var(--teal);
  border-radius: 50%;
  content: "";
  height: 6px;
  width: 6px;
}
.article-hero-media {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.article-hero-media::after {
  background: linear-gradient(135deg, rgba(27,191,185,.16), rgba(13,27,42,0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.article-hero-media img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.article-section {
  background:
    linear-gradient(90deg, rgba(230,248,247,.42), rgba(255,255,255,0) 28%),
    var(--white);
}
.article-layout {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  justify-content: stretch;
}
.article-sidebar {
  position: sticky;
  top: 96px;
}
.toc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  padding: 22px;
}
.toc-card strong {
  color: var(--dark);
  font-size: .9rem;
  margin-bottom: 8px;
}
.toc-card a {
  border-radius: 8px;
  color: var(--gray);
  font-size: .88rem;
  font-weight: 700;
  padding: 7px 8px;
}
.toc-card a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}
.article-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(26px, 5vw, 56px);
  width: 100%;
}
.article-content > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 840px;
}
.article-content p {
  color: var(--dark-2);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  margin-bottom: 22px;
}
.article-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 46px 0 18px;
  scroll-margin-top: 96px;
}
.article-content h2:first-of-type {
  margin-top: 36px;
}
.article-content strong {
  color: var(--dark);
}
.blog-article-page .article-content a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(23,160,154,.35);
  text-underline-offset: 2px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.blog-article-page .article-content a:hover {
  color: var(--teal);
  text-decoration-color: var(--teal);
}
.article-content ul,
.article-content ol {
  display: grid;
  gap: 10px;
  list-style: disc;
  margin-bottom: 24px;
  padding-left: 24px;
}
.article-content li {
  color: var(--dark-2);
  line-height: 1.75;
}
.blog-article-page .article-sidebar.fade-up,
.blog-article-page .article-content.fade-up {
  opacity: 1;
  transform: none;
}
.article-cta .contact-form p {
  color: var(--gray);
}

.kit-official-banner {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.kit-official-banner .container {
  display: flex;
  justify-content: center;
}
.kit-official-banner img {
  height: auto;
  max-height: 95px;
  object-fit: contain;
  width: min(100%, 1024px);
}
.kit-hero {
  background: linear-gradient(135deg, #46678a 0%, #46678a 52%, #f5f7fb 52%, #f5f7fb 100%);
}
.kit-hero h1,
.kit-hero .lead {
  color: var(--white);
}
.kit-hero .pill {
  background: rgba(255,255,255,.16);
  color: var(--white);
}
.kit-hero-image {
  background: var(--white);
  box-shadow: none;
}
.kit-hero-image img {
  object-fit: contain;
  padding: clamp(18px, 4vw, 34px);
}
.kit-grants .card-body {
  text-align: center;
}
.kit-grants img {
  height: 118px;
  margin: 0 auto 18px;
  object-fit: contain;
  width: 118px;
}
.kit-grants h3 {
  margin-bottom: 8px;
}
.kit-solutions {
  background: var(--white);
}
.kit-solution {
  padding: clamp(42px, 6vw, 72px) 0;
}
.kit-solution:nth-child(odd) {
  background: #ededed;
}
.kit-solution-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
}
.kit-solution figure {
  align-items: center;
  display: flex;
  justify-content: center;
}
.kit-solution img {
  max-height: 420px;
  object-fit: contain;
}
.kit-solution h2 {
  color: var(--dark);
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 18px;
}
.kit-solution h3 {
  margin: 24px 0 10px;
}
.kit-solution p {
  color: var(--dark-2);
  margin-bottom: 14px;
}
.kit-solution ul {
  display: grid;
  gap: 9px;
  list-style: disc;
  margin: 14px 0 18px;
  padding-left: 22px;
}
.kit-solution li {
  color: var(--dark-2);
  line-height: 1.65;
}
.kit-price {
  background: #006CD8;
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  margin-top: 8px;
  padding: 11px 15px;
}

.faq { display: grid; gap: 12px; margin: 0 auto; max-width: 880px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-weight: 850;
  justify-content: space-between;
  padding: 18px 20px;
  text-align: left;
  width: 100%;
}
.faq-icon { color: var(--teal-dark); font-size: 1.4rem; line-height: 1; }
.faq-answer { display: none; padding: 0 20px 20px; }
.faq-item.open .faq-answer { display: block; }

.site-footer { background: #060E17; color: rgba(255,255,255,.58); padding: 56px 0 28px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 2fr 1fr 1fr 1.2fr; margin-bottom: 36px; }
.site-footer .brand-text strong { color: var(--white); }
.site-footer p, .site-footer a { color: rgba(255,255,255,.58); font-size: .9rem; }
.site-footer a:hover { color: var(--teal); }
.footer-col h4 { color: var(--white); font-size: .9rem; margin-bottom: 15px; }
.footer-col ul { display: grid; gap: 9px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 22px; }

.cookie-banner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  bottom: 20px;
  box-shadow: 0 18px 38px rgba(13,27,42,.18);
  left: auto;
  max-width: 520px;
  padding: 18px 18px 14px;
  position: fixed;
  right: 20px;
  width: min(92vw, 520px);
  z-index: 60;
}
.cookie-title {
  color: var(--dark);
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.cookie-copy {
  color: var(--gray);
  margin-bottom: 14px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-actions .btn {
  margin: 0;
}
.cookie-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.cookie-links a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-backdrop {
  background: rgba(13,27,42,.44);
  inset: 0;
  position: fixed;
  z-index: 70;
}
.cookie-modal {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 46px rgba(13,27,42,.2);
  left: 50%;
  max-height: calc(100vh - 48px);
  max-width: 640px;
  overflow: auto;
  padding: 20px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 640px);
  z-index: 80;
}
.cookie-modal-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-modal-head h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin: 0;
}
.cookie-close {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--dark);
  cursor: pointer;
  font-size: 1.8rem;
  height: 42px;
  line-height: 1;
  width: 42px;
}
.cookie-option {
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 14px;
}
.cookie-option strong {
  color: var(--dark);
  display: block;
  margin-bottom: 4px;
}
.cookie-option small {
  color: var(--gray);
}
.cookie-option input {
  height: 20px;
  width: 20px;
}
.cookie-modal-open {
  overflow: hidden;
}

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: block; }
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .home-hero {
    background:
      linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 52%, rgba(255,255,255,.32) 100%),
      linear-gradient(0deg, rgba(13,27,42,.16), rgba(13,27,42,.16));
    min-height: auto;
  }
  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 56%, rgba(255,255,255,.48) 100%),
      linear-gradient(0deg, rgba(13,27,42,.15), rgba(13,27,42,.15)),
      radial-gradient(circle at 70% 44%, rgba(27,191,185,.14), rgba(27,191,185,0) 44%);
  }
  .home-hero-overlay { min-height: 510px; }
  .home-hero-badges { position: static; margin-top: 28px; }
  .seo-hero {
    background:
      radial-gradient(ellipse at 20% 48%, rgba(255,255,255,.94) 0%, rgba(255,255,255,.84) 42%, rgba(255,255,255,.38) 68%, rgba(255,255,255,0) 88%),
      linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 54%, rgba(255,255,255,.42) 100%),
      url("/assets/img/hero-seo-monitor.webp") center right / cover no-repeat;
    min-height: auto;
    padding: clamp(42px, 7vw, 72px) 0 clamp(38px, 6vw, 62px);
  }
  .seo-hero-overlay { min-height: auto; }
  .seo-local-hero {
    background:
      radial-gradient(ellipse at 22% 50%, rgba(255,255,255,.94) 0%, rgba(255,255,255,.84) 42%, rgba(255,255,255,.38) 70%, rgba(255,255,255,0) 92%),
      linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 55%, rgba(255,255,255,.42) 100%),
      url("/assets/img/home-seo-local.webp") center right / cover no-repeat;
    min-height: auto;
    padding: clamp(42px, 7vw, 72px) 0 clamp(38px, 6vw, 62px);
  }
  .seo-local-hero-overlay { min-height: auto; }
  .process-hero {
    background:
      radial-gradient(ellipse at 22% 50%, rgba(255,255,255,.94) 0%, rgba(255,255,255,.84) 42%, rgba(255,255,255,.38) 70%, rgba(255,255,255,0) 92%),
      linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 55%, rgba(255,255,255,.42) 100%),
      url("/assets/img/home-service-procesos.webp") center right / cover no-repeat;
    min-height: auto;
    padding: clamp(42px, 7vw, 72px) 0 clamp(38px, 6vw, 62px);
  }
  .process-hero-overlay { min-height: auto; }
  .consultoria-seo-hero {
    background:
      radial-gradient(ellipse at 22% 50%, rgba(255,255,255,.94) 0%, rgba(255,255,255,.84) 42%, rgba(255,255,255,.38) 70%, rgba(255,255,255,0) 92%),
      linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 55%, rgba(255,255,255,.42) 100%),
      url("/assets/img/seo-ai-visibility.webp") center right / cover no-repeat;
    min-height: auto;
    padding: clamp(42px, 7vw, 72px) 0 clamp(38px, 6vw, 62px);
  }
  .consultoria-seo-hero-overlay { min-height: auto; }
  .process-steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .case-hero-grid,
  .case-problem-grid,
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .teletest-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-sidebar { position: static; }
  .card-grid, .card-grid.four, .ai-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats-layout { grid-template-columns: 1fr; }
  .stats-intro { max-width: none; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stat-card { min-height: 360px; }
  .kit-hero {
    background: linear-gradient(180deg, #46678a 0%, #46678a 58%, #f5f7fb 58%, #f5f7fb 100%);
  }
  .kit-solution-grid {
    grid-template-columns: 1fr;
  }
  .kit-solution figure {
    order: -1;
  }
  .web-approach-grid { gap: 44px 0; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .web-approach-item { min-height: 320px; }
  .web-approach-item:nth-child(odd)::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .logos-track,
  .logos-row { gap: 20px; }
  .logo-item { flex-basis: 136px; height: 72px; }
  .logo-item img { height: 34px; max-width: 128px; }
  .logo-item.logo-priority img { height: 38px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--max-w)); }
  .hero { padding-top: 34px; }
  .hero-grid { gap: 36px; }
  .home-hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 48%, rgba(255,255,255,.68) 100%);
  }
  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,.93) 0%, rgba(255,255,255,.86) 46%, rgba(255,255,255,.62) 100%),
      radial-gradient(circle at 58% 46%, rgba(27,191,185,.12), rgba(27,191,185,0) 44%);
  }
  .home-hero-overlay { min-height: 500px; }
  .home-hero-badges { display: grid; }
  .seo-hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 56%, rgba(255,255,255,.72) 100%),
      url("/assets/img/hero-seo-monitor.webp") 65% center / cover no-repeat;
    padding: 34px 0 38px;
  }
  .seo-hero-overlay { min-height: auto; }
  .seo-local-hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 58%, rgba(255,255,255,.74) 100%),
      url("/assets/img/home-seo-local.webp") 65% center / cover no-repeat;
    padding: 34px 0 38px;
  }
  .seo-local-hero-overlay { min-height: auto; }
  .process-hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 58%, rgba(255,255,255,.72) 100%),
      url("/assets/img/home-service-procesos.webp") 65% center / cover no-repeat;
    padding: 34px 0 38px;
  }
  .process-hero-overlay { min-height: auto; }
  .consultoria-seo-hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 58%, rgba(255,255,255,.72) 100%),
      url("/assets/img/seo-ai-visibility.webp") 65% center / cover no-repeat;
    padding: 34px 0 38px;
  }
  .consultoria-seo-hero-overlay { min-height: auto; }
  .process-proof { display: grid; }
  .float-badge, .float-badge-alt { position: static; margin-top: 10px; }
  .card-grid, .card-grid.two, .card-grid.four, .pricing-grid, .professional-grid, .ai-grid, .process-steps, .stats-grid, .web-approach-grid { grid-template-columns: 1fr; }
  .teletest-metrics-grid {
    grid-template-columns: 1fr;
  }
  .stat-card { min-height: auto; }
  .kit-official-banner {
    padding: 10px 0;
  }
  .kit-hero {
    background: #46678a;
  }
  .kit-solution img {
    max-height: 280px;
  }
  .web-approach { padding: 46px 0 56px; }
  .web-approach-head { margin-bottom: 38px; }
  .web-approach-item { min-height: auto; padding: 0 6px; }
  .web-approach-item + .web-approach-item { padding-top: 36px; }
  .web-approach-item + .web-approach-item::before {
    background: linear-gradient(90deg, transparent, rgba(27,191,185,.28), transparent);
    display: block;
    height: 1px;
    left: 12%;
    top: 0;
    width: 76%;
  }
  .web-approach-icon { margin-bottom: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .split-images { min-height: 300px; }
  .split-images .main-img { height: 230px; width: 84%; }
  .split-images .side-img { height: 150px; width: 58%; }
  .team-expertise-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .expertise-icon {
    height: 64px;
    width: 64px;
  }
  .expertise-icon svg {
    height: 28px;
    width: 28px;
  }
  .logos-band .container { max-width: 100%; }
  .logos-track { animation-duration: 26s; }
  .logos-track,
  .logos-row { gap: 14px; }
  .logo-item { flex-basis: 118px; height: 60px; }
  .logo-item img { height: 28px; max-width: 108px; }
  .logo-item.logo-priority img { height: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .cookie-banner {
    border-radius: 14px;
    bottom: 10px;
    padding: 14px 12px 12px;
    right: 10px;
    width: min(95vw, 520px);
  }
  .cookie-actions .btn {
    width: 100%;
  }
  .cookie-modal {
    max-height: calc(100vh - 18px);
    padding: 16px;
    width: min(94vw, 640px);
  }
}
