/* ─────────────────────────────────────────
   Prospekta Digital — style.css
   Fonts: Geist (headings, bold) / DM Sans (body)
   ───────────────────────────────────────── */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #fff; color: #232325; font-family: 'DM Sans', sans-serif; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: 'DM Sans', sans-serif; font-weight: 400; cursor: pointer; border: none; background: none; }

/* Margin reset for visually-heading elements (mirrors mirror's approach) */
.hero-title, .hero-eyebrow, .hero-headline, .hero-subtext,
.section-label, .agency-headline, .agency-body,
.bridge-headline, .bridge-text,
.services-heading h2, .service-title,
.results-heading, .result-number,
.work-title, .work-name,
.testimonial-label, .testimonial-quote, .testimonial-name,
.blog-heading, .blog-card-title,
.cta-headline, .cta-text {
  margin: 0;
}

/* ── Geist Bold: heading typeface (replaces "Ogg" from the mirror) ── */
.hero-headline,
.section-label,
.bridge-headline,
.services-heading h2,
.results-heading,
.result-number,
.work-title,
.blog-heading,
.testimonial-label,
.cta-headline {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
}

/* Anchor tags styled as buttons share the same base */
a.btn-outline-white,
a.btn-yellow,
a.btn-outline-hero,
a.btn-outline-dark,
a.btn-dark { display: inline-flex; }

/* ── Tokens ── */
:root {
  --dark:         #232325;
  --yellow:       #e8b47b;
  --coral:        #ed8668;
  --cream:        #f7f1e8;
  --mid-gray:     #707070;
  --light-gray:   #d4d4d4;
  --border-light: #ababab;
  --border-dark:  #dfdfdf;
  --px:           clamp(20px, 8.85vw, 115px);
  --content-max:  1073px;
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-group .reveal { transition-delay: 0s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   PAGE-LOAD HERO ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-load { animation: fadeSlideUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-load-1 { animation-delay: 0.05s; }
.hero-load-2 { animation-delay: 0.15s; }
.hero-load-3 { animation-delay: 0.25s; }
.hero-load-4 { animation-delay: 0.4s; }
.hero-load-5 { animation-delay: 0.55s; }

/* ═══════════════════════════════════════
   NAV / HERO
═══════════════════════════════════════ */
.hero-section {
  background: var(--dark);
  padding: clamp(32px, 4.6vw, 60px) var(--px) clamp(72px, 11vw, 144px);
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 9vw, 120px);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.logo-img {
  display: block;
  width: 156px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 32px);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 400;
  color: var(--light-gray);
  flex: 1;
  min-width: 0;
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: #fff; }

.nav-dropdown {
  position: relative;
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-dropdown-toggle .nav-dropdown-arrow {
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-toggle .nav-dropdown-arrow,
.nav-dropdown:focus-within .nav-dropdown-toggle .nav-dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  display: flex;
  flex-direction: column;
  min-width: 240px;
  background: var(--dark);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 20;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 15px;
  white-space: nowrap;
  color: var(--light-gray);
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ── Buttons ── */
.btn-outline-white {
  border: 1px solid #fff;
  background: var(--dark);
  border-radius: 24px;
  padding: 14px 24px;
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-white:hover { background: #fff; color: var(--dark); }

.btn-yellow {
  background: var(--yellow);
  border: none;
  border-radius: 24px;
  padding: 14px 24px;
  color: var(--dark);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s;
}
.btn-yellow:hover { opacity: 0.88; }

.btn-outline-hero {
  background: var(--dark);
  border: 1px solid #fff;
  border-radius: 24px;
  padding: 14px 24px;
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-hero:hover { background: #fff; color: var(--dark); }

.btn-dark {
  background: var(--dark);
  border: none;
  border-radius: 33px;
  padding: 11px 33px;
  color: #fff;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: opacity 0.2s;
}
.btn-dark:hover { opacity: 0.85; }

.btn-arrow {
  display: inline-block;
  flex-shrink: 0;
  line-height: 0;
}
.btn-arrow svg { display: block; }

/* Hero text */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 4.4vw, 56px);
}
.hero-text-group {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 24px);
}
.hero-title {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 24px);
}
.hero-eyebrow {
  font-size: clamp(20px, 1.85vw, 24px);
  font-weight: 300;
  color: var(--light-gray);
}
.hero-headline {
  font-size: clamp(48px, 8.5vw, 108px);
  line-height: clamp(50px, 9vw, 116px);
  color: #fff;
  letter-spacing: clamp(-1.1px, -0.21vw, -2.4px);
}
.hero-subtext {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--light-gray);
  max-width: 640px;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 1.85vw, 24px);
}
.hero-footnote {
  font-size: 14px;
  font-weight: 400;
  color: var(--light-gray);
}

/* ═══════════════════════════════════════
   EL PROBLEMA
═══════════════════════════════════════ */
.agency-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(72px, 11vw, 144px) var(--px);
}
.agency-text {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.section-label {
  font-size: clamp(28px, 2.45vw, 32px);
  letter-spacing: -0.96px;
  color: var(--dark);
}
.agency-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.agency-body {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--mid-gray);
  max-width: 520px;
}
.agency-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
  counter-reset: agency-step;
}
.agency-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--mid-gray);
}
.agency-list li::before {
  counter-increment: agency-step;
  content: counter(agency-step) ".";
  flex-shrink: 0;
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  color: var(--coral);
  min-width: 20px;
}
.agency-image {
  flex: 0 1 420px;
  width: min(420px, 38vw);
  aspect-ratio: 4 / 5;
  min-width: 240px;
  border-radius: 4px;
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}
.agency-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════
   EL PROCESO (BRIDGE)
═══════════════════════════════════════ */
.bridge-section {
  background: #fff;
  padding: 0 var(--px) clamp(72px, 11vw, 144px);
  display: flex;
  justify-content: center;
}
.bridge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 720px;
  text-align: center;
}
.bridge-headline {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.bridge-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--mid-gray);
}
.btn-outline-dark {
  border: 1px solid var(--dark);
  background: transparent;
  border-radius: 24px;
  padding: 14px 24px;
  color: var(--dark);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

/* ═══════════════════════════════════════
   SERVICIOS
═══════════════════════════════════════ */
.services-section {
  background: var(--dark);
  padding: clamp(72px, 8.8vw, 115px) var(--px) clamp(56px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}
.services-heading h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}
.services-list {
  display: flex;
  flex-direction: column;
}
.service-item {
  border-bottom: 0.5px solid var(--border-dark);
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.5vw, 48px);
  padding: clamp(32px, 4vw, 48px) 0;
}
.service-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-shrink: 0;
  max-width: 320px;
}
.service-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(51px, 5.7vw, 72px);
  line-height: 1.15;
  color: #dcdcdc;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.service-item:hover .service-name { color: #fff; }
@media (min-width: 1025px) {
  .service-item:nth-child(1) .service-info { max-width: 590px; }
  .service-item:nth-child(2) .service-info { max-width: 540px; }
  .service-item:nth-child(3) .service-info { max-width: 570px; }
}
.service-divider {
  width: clamp(32px, 3.5vw, 48px);
  border: none;
  border-top: 1px solid var(--border-dark);
  transform: rotate(110.56deg);
  flex-shrink: 0;
}
.service-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
  letter-spacing: -0.01em;
  flex: 1 1 auto;
  min-width: 0;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.service-cta:hover { opacity: 0.6; }

/* ═══════════════════════════════════════
   FRANJA DE RESULTADOS (continues dark bg)
═══════════════════════════════════════ */
.results-section {
  background: var(--dark);
  padding: 0 var(--px) clamp(90px, 10vw, 130px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
}
.results-heading {
  font-size: clamp(20px, 1.7vw, 24px);
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
  text-align: center;
}
.result-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.result-number {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: var(--coral);
}
.result-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #dcdcdc;
}

/* ═══════════════════════════════════════
   PROYECTOS
═══════════════════════════════════════ */
.work-section {
  padding: clamp(72px, 11vw, 144px) var(--px) clamp(52px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.work-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  padding-bottom: clamp(44px, 4.3vw, 56px);
  width: min(700px, 100%);
  text-align: center;
}
.work-title {
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em;
}
.work-item {
  border-top: 0.5px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: clamp(32px, 5.4vw, 70px);
  padding: clamp(44px, 7vw, 92px) 0;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}
.work-item.fenchurch { justify-content: space-between; }

.work-img {
  flex: 0 1 57.1%;
  width: auto;
  max-width: 613px;
  min-width: 0;
  aspect-ratio: 613 / 460;
  height: auto;
  overflow: hidden;
}
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.work-img:hover img { transform: scale(1.06); }

.work-info {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.7vw, 48px);
  flex: 1 1 36.4%;
  width: auto;
  min-width: 0;
  max-width: 555px;
}
.work-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--mid-gray);
  line-height: 1;
  letter-spacing: -0.64px;
}
.work-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.work-name {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000;
}
.work-tags {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.96px;
  color: var(--mid-gray);
}
.work-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #000;
}

/* ═══════════════════════════════════════
   TESTIMONIOS — carrusel
═══════════════════════════════════════ */
.testimonial-section {
  padding: clamp(72px, 11vw, 144px) var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 4vw, 56px);
  text-align: center;
}
.testimonial-label {
  font-size: clamp(28px, 2.45vw, 32px);
  letter-spacing: -0.96px;
}
.testimonial-carousel {
  width: 100%;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3.5vw, 48px);
}
.testimonial-track {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-slide {
  display: none;
  flex-direction: column;
  gap: 20px;
  animation: fadeSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.testimonial-slide.is-active { display: flex; }
.testimonial-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--dark);
}
.testimonial-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.testimonial-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--mid-gray);
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.testimonial-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background 0.2s, color 0.2s;
}
.testimonial-arrow:hover { background: var(--dark); color: #fff; }
.testimonial-arrow--prev svg { transform: rotate(180deg); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.testimonial-dot.is-active { background: var(--dark); }

/* ═══════════════════════════════════════
   BLOG
═══════════════════════════════════════ */
.blog-section {
  padding: clamp(72px, 11vw, 144px) var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 4vw, 56px);
}
.blog-heading {
  font-size: clamp(28px, 2.45vw, 32px);
  letter-spacing: -0.02em;
  color: var(--dark);
  text-align: center;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  width: 100%;
  max-width: var(--content-max);
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.2s;
}
a.blog-card:hover { opacity: 0.85; }
.blog-card-media {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  background: linear-gradient(135deg, #f1f1f1, #e2e2e2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
a.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.blog-card-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
}
.blog-card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--dark);
}
.blog-card-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--mid-gray);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: var(--mid-gray);
  margin-top: auto;
}
.blog-link-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--mid-gray);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.blog-link-secondary:hover { color: var(--dark); }

/* Skeleton loader */
.blog-skeleton-line {
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: blog-shimmer 1.4s ease infinite;
}
.blog-skeleton-line--short { width: 30%; }
.blog-skeleton-line--title { width: 85%; height: 16px; }
.blog-skeleton-line--body  { width: 100%; }
@keyframes blog-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.blog-error {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--mid-gray);
  font-size: 15px;
  padding: 24px 0;
}

/* ═══════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════ */
.cta-section {
  background: var(--coral);
  padding: clamp(72px, 7vw, 91px) clamp(20px, 10.2vw, 133px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 32px);
}
.cta-headline {
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: clamp(-1.12px, -0.21vw, -2px);
  text-align: center;
  max-width: 1000px;
}
.cta-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark);
  max-width: 620px;
  text-align: center;
}
.cta-footnote {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  opacity: 0.7;
}

/* ═══════════════════════════════════════
   CONTACTO — formulario
═══════════════════════════════════════ */
.contact-section {
  background: var(--dark);
  padding: clamp(72px, 8.8vw, 115px) var(--px) clamp(80px, 9vw, 120px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 56px);
}
.contact-heading h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 720px;
}
.sentence-form {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.75;
  letter-spacing: -0.01em;
  color: #dcdcdc;
  max-width: 980px;
}
.sentence-form input {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-family: 'Geist', sans-serif;
  font-size: inherit;
  font-weight: 600;
  padding: 0 6px 3px;
  margin: 0 2px;
  outline: none;
  transition: border-color 0.25s;
  display: inline-block;
  vertical-align: baseline;
}
.sentence-form input:focus { border-bottom-color: var(--yellow); }
.sentence-form input::placeholder { color: rgba(255, 255, 255, 0.4); font-weight: 400; }
.contact-submit-wrap {
  margin-top: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.contact-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--mid-gray);
}
.contact-note a { color: var(--light-gray); text-decoration: underline; text-underline-offset: 3px; }
.contact-note a:hover { color: #fff; }
.sentence-form input.contact-form-honeypot { display: none; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: clamp(72px, 6.4vw, 84px) clamp(20px, 10.2vw, 133px);
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 10.3vw, 134px);
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 29px;
}
.footer-mid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  color: #fff;
  font-weight: 400;
  line-height: 1.6;
  max-width: min(391px, 100%);
  flex: 1;
  min-width: 260px;
}
.footer-contact-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
  text-align: right;
}
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.footer-contact-label { color: #c2c2c2; font-size: 14px; }
.footer-contact-val   { color: #fff; transition: opacity 0.2s; }
.footer-contact-val:hover { opacity: 0.7; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.16px;
}
.footer-links { display: flex; gap: 40px; }
.footer-links a { transition: opacity 0.2s; }
.footer-links a:hover { opacity: 0.7; }
.footer-copyright-break { display: none; }

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 998;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float img { width: 30px; height: 30px; }

/* ═══════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px var(--px);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner--visible { transform: translateY(0); opacity: 1; }
.cookie-banner--hidden { transform: translateY(100%); opacity: 0; }
.cookie-banner__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.15px;
  color: var(--light-gray);
  max-width: 520px;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 12px 22px;
  border-radius: 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.cookie-banner__btn--decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.cookie-banner__btn--decline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }
.cookie-banner__btn--accept {
  background: var(--yellow);
  border: 1px solid var(--yellow);
  color: var(--dark);
}
.cookie-banner__btn--accept:hover { opacity: 0.88; }

@media (max-width: 768px) {
  .cookie-banner { padding: 16px var(--px) 20px; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner__text { font-size: 14px; max-width: none; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
}

/* ═══════════════════════════════════════
   QUÉ INCLUYE
═══════════════════════════════════════ */
.includes-list {
  display: flex;
  flex-direction: column;
}
.includes-item {
  border-bottom: 0.5px solid var(--border-dark);
  padding: clamp(20px, 2.4vw, 28px) 0;
}
.includes-item:last-child { border-bottom: none; }
.includes-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 300;
  line-height: 1.6;
  color: #dcdcdc;
  letter-spacing: -0.01em;
}
.includes-text strong {
  color: #fff;
  font-weight: 500;
}

/* ═══════════════════════════════════════
   CASO DE ÉXITO
═══════════════════════════════════════ */
.case-study-section {
  background: var(--cream);
  padding: clamp(72px, 11vw, 144px) var(--px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 80px);
}
.case-study-section--alt { background: #fff; }
.case-study-section--reverse { flex-direction: row-reverse; }
.case-study-img {
  flex: 0 1 480px;
  width: min(480px, 42vw);
  min-width: 240px;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}
.case-study-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-study-img--full { aspect-ratio: auto; }
.case-study-img--full img { height: auto; object-fit: contain; }
.case-study-content {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  max-width: 560px;
}
.case-study-content--solo {
  flex: none;
  max-width: 640px;
  text-align: center;
  align-items: center;
}
.case-study-kicker {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.7vw, 24px);
  color: var(--coral);
}
.case-study-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.case-study-body {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--mid-gray);
}
.case-study-stats {
  display: flex;
  gap: clamp(24px, 3vw, 40px);
  padding: 8px 0;
  flex-wrap: wrap;
}
.case-study-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.case-study-stat-number {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--coral);
  line-height: 1;
}
.case-study-stat-label {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.4;
  max-width: 130px;
}
.case-study-testimonial {
  border-top: 0.5px solid var(--border-light);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-study-quote {
  font-size: clamp(15px, 1.2vw, 17px);
  font-style: italic;
  line-height: 1.6;
  color: var(--dark);
}
.case-study-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}

/* ═══════════════════════════════════════
   EL PROCESO
═══════════════════════════════════════ */
.process-section {
  padding: clamp(72px, 11vw, 144px) var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-header {
  display: flex;
  justify-content: center;
  padding-bottom: clamp(44px, 4.3vw, 56px);
  width: min(700px, 100%);
  text-align: center;
}
.process-heading {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--dark);
}
.process-grid {
  display: flex;
  gap: clamp(20px, 2.4vw, 32px);
  width: 100%;
  max-width: var(--content-max);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.process-grid::-webkit-scrollbar { display: none; }
.process-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}
.process-step {
  flex: 0 0 clamp(200px, 24vw, 260px);
  scroll-snap-align: start;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process-number {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 30px);
  color: var(--coral);
}
.process-step-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--dark);
}
.process-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--mid-gray);
}
.process-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: clamp(24px, 3vw, 32px);
}
.process-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background 0.2s, color 0.2s;
}
.process-arrow:hover { background: var(--dark); color: #fff; }
.process-arrow--prev svg { transform: rotate(180deg); }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section {
  padding: clamp(72px, 11vw, 144px) var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 4vw, 56px);
}
.faq-heading {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 2.45vw, 32px);
  letter-spacing: -0.02em;
  color: var(--dark);
  text-align: center;
}
.faq-list {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 0.5px solid var(--border-dark);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(20px, 2.4vw, 28px) 0;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 500;
  color: var(--dark);
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--dark);
  transition: transform 0.25s;
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq-item.is-open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--mid-gray);
  padding-bottom: clamp(20px, 2.4vw, 28px);
}
.faq-answer a { text-decoration: underline; color: var(--dark); }

/* ═══════════════════════════════════════
   LAS PLATAFORMAS
═══════════════════════════════════════ */
.platforms-section {
  padding: clamp(72px, 11vw, 144px) var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 4vw, 56px);
}
.platforms-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  text-align: center;
}
.platforms-heading {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--dark);
}
.platforms-intro {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--mid-gray);
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
  width: 100%;
  max-width: var(--content-max);
}
.platform-card {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.platform-tag {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 16px;
  background: var(--coral);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.platform-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.platform-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--dark);
}
.platform-subtitle {
  font-size: 14px;
  color: var(--mid-gray);
}
.platform-desc {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--mid-gray);
}
.platforms-footer {
  max-width: 700px;
  text-align: center;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--mid-gray);
}

/* ═══════════════════════════════════════
   LO QUE HAGO — CAPACIDADES
═══════════════════════════════════════ */
.capabilities-section {
  padding: 0 var(--px) clamp(72px, 11vw, 144px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 4vw, 56px);
}
.capabilities-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 720px;
  text-align: center;
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 48px);
  width: 100%;
  max-width: var(--content-max);
  text-align: left;
}
.capability-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.capability-title {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--coral);
}
.capability-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.capability-list li {
  list-style: none;
  display: flex;
  gap: 10px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--mid-gray);
}
.capability-list li::before {
  content: '—';
  flex-shrink: 0;
  color: var(--coral);
}

/* ═══════════════════════════════════════
   404 — PÁGINA NO ENCONTRADA
═══════════════════════════════════════ */
.error-section {
  background: var(--dark);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 28px);
  padding: clamp(48px, 7vw, 96px) var(--px) clamp(72px, 9vw, 120px);
}
.error-code {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(96px, 14vw, 200px);
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -0.02em;
}
.error-headline {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
  max-width: 720px;
  margin: 0;
}
.error-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--light-gray);
  max-width: 560px;
}
.error-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 1.85vw, 24px);
  margin-top: 8px;
}
.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 32px);
  margin-top: clamp(24px, 3vw, 40px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--border-dark);
  width: 100%;
}
.error-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--light-gray);
  transition: color 0.2s;
}
.error-links a:hover { color: #fff; }

/* ═══════════════════════════════════════
   AVISO DE PRIVACIDAD
═══════════════════════════════════════ */
.privacy-content {
  background: #fff;
  padding: clamp(56px, 7vw, 96px) var(--px) clamp(72px, 9vw, 120px);
  display: flex;
  justify-content: center;
}
.privacy-inner {
  max-width: 760px;
  width: 100%;
}
.privacy-back {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--mid-gray);
  margin-bottom: clamp(32px, 4vw, 48px);
  transition: color 0.2s;
}
.privacy-back:hover { color: var(--dark); }
.privacy-title {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.privacy-updated {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--mid-gray);
  margin-bottom: clamp(48px, 5vw, 64px);
}
.privacy-block {
  padding-bottom: clamp(32px, 3.5vw, 44px);
  margin-bottom: clamp(32px, 3.5vw, 44px);
  border-bottom: 1px solid var(--border-light);
}
.privacy-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.privacy-block h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 14px;
}
.privacy-block p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid-gray);
  margin-bottom: 10px;
}
.privacy-block p:last-child { margin-bottom: 0; }
.privacy-block ul { list-style: none; margin: 10px 0 0; }
.privacy-block li {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid-gray);
  padding-left: 18px;
  position: relative;
}
.privacy-block li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--coral);
}
.privacy-block a { color: var(--dark); text-decoration: underline; text-underline-offset: 3px; }
.privacy-block a:hover { color: var(--coral); }

/* ═══════════════════════════════════════
   GRACIAS
═══════════════════════════════════════ */
.thanks-section {
  background: var(--dark);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  padding: clamp(48px, 7vw, 96px) var(--px) clamp(72px, 9vw, 120px);
}
.thanks-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.thanks-icon svg { width: 28px; height: 28px; stroke: #fff; stroke-width: 2.5; fill: none; }
.thanks-title {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  letter-spacing: -0.02em;
}
.thanks-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--light-gray);
  max-width: 480px;
  line-height: 1.55;
}
.thanks-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.85vw, 24px);
  margin-top: 8px;
}

/* ═══════════════════════════════════════
   TABLET — hide nav links when space is tight
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-bar .btn-outline-white { padding: 12px 20px; font-size: 14px; border-radius: 20px; }
  .logo-img { width: clamp(144px, 12vw, 156px); }
  .service-item { flex-direction: column; align-items: flex-start; gap: 20px; }
  .service-divider { display: none; }
  .service-info { max-width: none; }
  .service-name { white-space: normal; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .case-study-section { flex-direction: column; }
  .case-study-img { width: min(420px, 60vw); }
}

/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --px: 20px; }

  /* Hero / Nav */
  .hero-section { padding: 32px var(--px) 72px; gap: 64px; }
  .nav-bar { gap: 0; }
  .logo-img { width: 144px; }
  .hero-content { gap: 40px; }
  .hero-eyebrow { font-size: 20px; }
  .hero-headline { font-size: 44px; line-height: 48px; letter-spacing: -1px; }
  .hero-subtext { font-size: 16px; }

  /* Problema */
  .agency-section { flex-direction: column; gap: 48px; padding: 72px var(--px) 36px; }
  .agency-headline { font-size: 28px; line-height: 1.25; }
  .agency-image { flex: none; width: min(280px, 70%); margin: 0 auto; }

  /* Bridge */
  .bridge-content { gap: 20px; }
  .bridge-headline { font-size: 32px; }

  /* 404 */
  .error-section { min-height: 60vh; padding: 40px var(--px) 64px; }

  /* Servicios */
  .services-section { padding: 56px var(--px) 40px; }

  /* Resultados */
  .results-section { padding: 0 var(--px) 64px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }

  /* Proyectos */
  .work-section { padding: 36px var(--px) 72px; }
  .work-header { width: 100%; padding-bottom: 44px; }
  .work-item { flex-direction: column; align-items: flex-start; gap: 32px; padding: 44px 0; max-width: none; }
  .work-item.fenchurch { justify-content: flex-start; }
  .work-info { order: 1; width: 100%; gap: 24px; }
  .work-img { order: 2; flex: none; width: 100%; max-width: none; height: auto; aspect-ratio: 4 / 3; }
  .work-name { font-size: 32px; }

  /* Testimonios */
  .testimonial-section { padding: 72px var(--px); gap: 32px; }
  .testimonial-quote { font-size: 22px; }

  /* Blog */
  .blog-section { padding: 56px var(--px); gap: 32px; }
  .blog-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-section { padding: 56px var(--px); gap: 20px; }
  .cta-headline { font-size: 36px; letter-spacing: -0.72px; }

  /* Contacto */
  .contact-section { padding: 56px var(--px) 64px; }
  .sentence-form { font-size: 1.15rem; line-height: 2; }
  .sentence-form input { width: 100% !important; margin: 6px 0; display: block; }

  /* Aviso de privacidad */
  .privacy-content { padding: 40px var(--px) 64px; }

  /* Gracias */
  .thanks-section { min-height: 50vh; padding: 40px var(--px) 64px; }

  /* Footer */
  .footer { padding: 56px var(--px); gap: 48px; }
  .footer-mid { flex-direction: column; gap: 40px; align-items: flex-start; }
  .footer-tagline { max-width: none; }
  .footer-contact-row { flex-direction: column; align-items: flex-start; gap: 18px; text-align: left; }
  .footer-contact-item { align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom .footer-links { order: 1; }
  .footer-bottom > p { order: 2; }
  .footer-copyright-break { display: inline; }

  .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .whatsapp-float img { width: 26px; height: 26px; }

  /* Qué incluye */
  .includes-item { padding: 20px 0; }

  /* Caso de éxito */
  .case-study-section { padding: 56px var(--px); gap: 32px; }
  .case-study-stats { gap: 20px; }
  .case-study-headline { font-size: 26px; }

  /* Proceso */
  .process-section { padding: 56px var(--px) 40px; }
  .process-step { flex-basis: 74vw; }

  /* FAQ */
  .faq-section { padding: 56px var(--px); gap: 32px; }
  .faq-question { font-size: 16px; }

  /* Las plataformas */
  .platforms-section { padding: 56px var(--px); }
  .platforms-grid { grid-template-columns: 1fr; }

  /* Lo que hago — capacidades */
  .capabilities-grid { grid-template-columns: 1fr; gap: 32px; }
}
