:root {
  --navy: #1A1F3A;
  --navy-soft: #252B4F;
  --magenta: #E91E8A;
  --magenta-deep: #C41872;
  --lime: #B8E62E;
  --off-white: #FAFAF7;
  --off-white-warm: #F4F2EC;
  --carbon: #2C2C2C;
  --gray-light: #EAE8E2;
  --gray-med: #5A5A5A;
  --gray-faint: #D0CDC4;
  --border: rgba(26, 31, 58, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--off-white);
  color: var(--navy);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-logo:hover { opacity: 0.75; }

.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--magenta); }

.nav-cta {
  background: var(--navy);
  color: var(--off-white) !important;
  padding: 11px 22px;
  border-radius: 100px;
  transition: background 0.2s ease;
}

.nav-cta:hover { background: var(--magenta) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-burger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}

/* === HERO === */
.hero {
  padding: 160px 48px 100px;
  position: relative;
  overflow: hidden;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-med);
  margin-bottom: 80px;
}

.hero-meta-left { display: flex; gap: 8px; align-items: center; }
.hero-meta-dot {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(48px, 8.4vw, 124px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--navy);
  max-width: 1200px;
  margin-bottom: 60px;
}

.hero-title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--magenta);
  letter-spacing: -0.02em;
  font-size: 1.05em;
}

.hero-title .underline-word {
  position: relative;
  display: inline-block;
}

.hero-title .underline-word::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.05em;
  height: 0.12em;
  background: var(--lime);
  z-index: -1;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  max-width: 1400px;
}

.hero-description {
  font-size: 19px;
  line-height: 1.5;
  color: var(--carbon);
  max-width: 540px;
  font-weight: 400;
}

.hero-description strong {
  font-weight: 600;
  color: var(--navy);
}

.hero-stats {
  display: flex;
  gap: 56px;
}

.stat {
  border-left: 1px solid var(--border);
  padding-left: 20px;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.stat-number sup {
  font-size: 24px;
  color: var(--magenta);
  vertical-align: super;
  line-height: 1;
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-med);
  margin-top: 8px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 100px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--magenta);
  color: var(--off-white);
}

.btn-primary:hover {
  background: var(--magenta-deep);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--off-white);
}

.btn-arrow {
  display: inline-flex;
  width: 18px; height: 18px;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* === LOGO MARQUEE === */
.logos-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--off-white-warm);
  overflow: hidden;
  position: relative;
}

.logos-section::before,
.logos-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logos-section::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white-warm), transparent);
}

.logos-section::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white-warm), transparent);
}

.logos-label {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-med);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.logos-label::before,
.logos-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gray-med);
  opacity: 0.4;
}

.logos-track {
  display: flex;
  gap: 90px;
  align-items: center;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.logos-section:hover .logos-track { animation-play-state: paused; }

.logo-item {
  flex-shrink: 0;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) brightness(0);
  opacity: 0.55;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

.logo-item svg {
  height: 100%;
  width: auto;
  display: block;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === SECTION COMMON === */
section { scroll-margin-top: 100px; }

.section-padding { padding: 140px 48px; }

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--magenta);
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5.8vw, 84px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--navy);
  max-width: 900px;
  margin-bottom: 32px;
}

.section-title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--magenta);
  font-weight: 300;
  letter-spacing: -0.02em;
  font-size: 1.04em;
}

.section-intro {
  font-size: 19px;
  line-height: 1.5;
  color: var(--carbon);
  max-width: 640px;
  margin-bottom: 80px;
}

/* === PROBLEM SECTION === */
.problem {
  background: var(--off-white-warm);
  position: relative;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.problem-card {
  background: var(--off-white-warm);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s ease;
}

.problem-card:hover { background: var(--off-white); }

.problem-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--magenta);
  margin-bottom: 24px;
  display: block;
  letter-spacing: -0.02em;
}

.problem-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 20px;
}

.problem-card p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--carbon);
  margin-bottom: 28px;
}

.problem-solution {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-med);
}

.problem-solution strong {
  color: var(--navy);
  font-weight: 600;
}

/* === SERVICES === */
.services { background: var(--navy); color: var(--off-white); }

.services .section-title { color: var(--off-white); }
.services .section-title em { color: var(--lime); }
.services .section-eyebrow { color: var(--lime); }
.services .section-eyebrow::before { background: var(--lime); }
.services .section-intro { color: var(--gray-faint); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--magenta), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-card:hover {
  background: #2D3457;
  border-color: rgba(232, 30, 138, 0.3);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: translateX(0); }

.service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gray-faint);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  display: block;
}

.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--off-white);
}

.service-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-faint);
  margin-bottom: 28px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.25s ease;
}

.service-card:hover .service-link { gap: 14px; }

/* === PROCESS === */
.process { background: var(--off-white); }

.process-list {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1400px;
}

.process-sticky {
  position: sticky;
  top: 120px;
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.process-step {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}

.process-step:last-child { border-bottom: 1px solid var(--border); }

.process-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 72px;
  color: var(--magenta);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.process-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 20px;
}

.process-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--carbon);
  margin-bottom: 16px;
  max-width: 640px;
}

.process-deliverable {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 18px;
  background: var(--off-white-warm);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--carbon);
  letter-spacing: 0.02em;
}

.process-deliverable::before {
  content: '↳';
  color: var(--magenta);
  font-weight: 600;
}

/* === CASES === */
.cases { background: var(--off-white-warm); }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 48px 36px;
  position: relative;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(26, 31, 58, 0.08);
}

.case-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-med);
  margin-bottom: 32px;
  display: block;
}

.case-metric {
  font-family: 'Inter', sans-serif;
  font-size: clamp(64px, 7.5vw, 104px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--navy);
  margin-bottom: 8px;
}

.case-metric .plus {
  font-family: 'Fraunces', serif;
  color: var(--magenta);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.case-metric-label {
  font-size: 14px;
  color: var(--gray-med);
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}

.case-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--carbon);
}

.cases-disclaimer {
  margin-top: 40px;
  font-size: 13px;
  color: var(--gray-med);
  font-style: italic;
  max-width: 700px;
}

/* === FAQ === */
.faq { background: var(--off-white); }

.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.faq-aside .section-eyebrow { margin-bottom: 28px; }

.faq-aside h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 32px;
}

.faq-aside h2 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--magenta);
  font-weight: 300;
  letter-spacing: -0.02em;
  font-size: 1.04em;
}

.faq-aside p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--carbon);
  margin-bottom: 32px;
  max-width: 400px;
}

.faq-aside .btn { margin-top: 8px; }

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--navy);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  cursor: pointer;
  transition: padding 0.3s ease;
}

.faq-item:last-child { border-bottom: 1px solid var(--navy); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.faq-toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--navy);
  transition: all 0.3s ease;
}

.faq-toggle::before {
  width: 12px;
  height: 1.5px;
}

.faq-toggle::after {
  width: 1.5px;
  height: 12px;
}

.faq-item.active .faq-toggle {
  background: var(--magenta);
  border-color: var(--magenta);
}

.faq-item.active .faq-toggle::before,
.faq-item.active .faq-toggle::after {
  background: var(--off-white);
}

.faq-item.active .faq-toggle::after {
  transform: scaleY(0);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.4s ease;
}

.faq-item.active .faq-a {
  max-height: 800px;
  padding-top: 24px;
}

.faq-a-content {
  font-size: 16px;
  line-height: 1.65;
  color: var(--carbon);
  max-width: 720px;
}

.faq-a-content p { margin-bottom: 14px; }
.faq-a-content p:last-child { margin-bottom: 0; }

.faq-a-content strong { color: var(--navy); font-weight: 600; }

.faq-a-content ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.faq-a-content ul li {
  padding: 8px 0 8px 24px;
  position: relative;
}

.faq-a-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--magenta);
  font-weight: 600;
}

/* === FINAL CTA === */
.final-cta {
  background: var(--navy);
  color: var(--off-white);
  padding: 140px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  width: 120%; height: 120%;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(232, 30, 138, 0.15), transparent 60%);
  pointer-events: none;
}

.final-cta-content { position: relative; z-index: 1; }

.final-cta h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(48px, 7.4vw, 116px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--off-white);
  margin-bottom: 32px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta h2 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--lime);
  font-weight: 300;
  letter-spacing: -0.02em;
  font-size: 1.04em;
}

.final-cta p {
  font-size: 19px;
  line-height: 1.5;
  color: var(--gray-faint);
  max-width: 580px;
  margin: 0 auto 48px;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta .btn-primary {
  background: var(--lime);
  color: var(--navy);
}

.final-cta .btn-primary:hover {
  background: var(--off-white);
}

.final-cta .btn-secondary {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.final-cta .btn-secondary:hover {
  background: var(--off-white);
  color: var(--navy);
  border-color: var(--off-white);
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  color: var(--off-white);
  padding: 60px 48px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: block;
  margin-bottom: 16px;
}

.footer-brand img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-tag {
  font-size: 14px;
  color: var(--gray-faint);
  max-width: 320px;
  line-height: 1.5;
}

.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul { list-style: none; }

.footer-col li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col a {
  color: var(--gray-faint);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--off-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-faint);
}

/* === FLOATING WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  z-index: 99;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.3;
  animation: ripple 2.4s ease-out infinite;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-float:hover { transform: scale(1.05); }

.whatsapp-icon {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .nav { padding: 18px 24px; }
  .hero { padding: 130px 24px 80px; }
  .hero-meta { margin-bottom: 60px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { gap: 32px; }
  .stat-number { font-size: 44px; }
  .section-padding { padding: 100px 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; gap: 40px; }
  .process-sticky { position: static; }
  .faq-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .final-cta { padding: 100px 24px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 110px 20px 60px; }
  .hero-meta { font-size: 10px; margin-bottom: 40px; flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-number { font-size: 36px; }
  .section-padding { padding: 80px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 60px 1fr; gap: 16px; padding: 36px 0; }
  .process-num { font-size: 44px; }
  .process-content h3 { font-size: 24px; }
  .case-card { padding: 36px 28px; }
  .case-metric { font-size: 64px; }
  .faq-q { font-size: 17px; gap: 16px; }
  .faq-toggle { width: 32px; height: 32px; }
  .footer { padding: 48px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .final-cta { padding: 80px 20px; }
  .final-cta-buttons .btn { font-size: 13px; padding: 14px 22px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .whatsapp-icon { width: 24px; height: 24px; }
}

/* === ENTRANCE ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}
/* ========================================== */
/* === ESTILOS ADICIONALES PARA INTERNAS === */
/* ========================================== */

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-med);
  margin-bottom: 40px;
}

.breadcrumb a {
  color: var(--gray-med);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover { color: var(--magenta); }

.breadcrumb-sep {
  opacity: 0.5;
}

/* Hero interno (más compacto que el del home) */
.hero-internal {
  padding: 140px 48px 80px;
  position: relative;
}

.hero-internal-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-internal-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--magenta);
}

.hero-internal h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--navy);
  max-width: 1100px;
  margin-bottom: 32px;
}

.hero-internal h1 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--magenta);
  letter-spacing: -0.02em;
  font-size: 1.04em;
}

.hero-internal-lead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--carbon);
  max-width: 680px;
  margin-bottom: 40px;
}

.hero-internal-lead strong {
  color: var(--navy);
  font-weight: 600;
}

/* Listas de inclusiones */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 48px;
  margin-top: 40px;
}

.include-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  padding-top: 4px;
}

.include-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.include-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
}

.include-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

.include-content p {
  font-size: 15px;
  color: var(--carbon);
  line-height: 1.5;
}

/* Tabla de inversión / pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(26, 31, 58, 0.08);
}

.pricing-card.featured {
  background: var(--navy);
  color: var(--off-white);
  border-color: var(--navy);
}

.pricing-card.featured h3,
.pricing-card.featured .price-amount,
.pricing-card.featured .price-included li {
  color: var(--off-white);
}

.pricing-card.featured .pricing-tag {
  background: var(--lime);
  color: var(--navy);
}

.pricing-card.featured .price-included li::before {
  background: var(--lime);
}

.pricing-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--off-white-warm);
  color: var(--navy);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  font-weight: 500;
}

.pricing-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-subtitle {
  font-size: 14px;
  color: var(--gray-med);
  margin-bottom: 28px;
}

.price-amount {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount-from {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-med);
  display: block;
  margin-bottom: 8px;
}

.pricing-card.featured .price-amount-from {
  color: rgba(255, 255, 255, 0.6);
}

.price-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-med);
  margin-left: 4px;
}

.pricing-card.featured .price-currency {
  color: rgba(255, 255, 255, 0.6);
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.pricing-card.featured .price-divider {
  background: rgba(255, 255, 255, 0.12);
}

.price-included {
  list-style: none;
  margin-bottom: 32px;
}

.price-included li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--carbon);
}

.pricing-card.featured .price-included li {
  color: rgba(255, 255, 255, 0.85);
}

.price-included li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 1.5px;
  background: var(--magenta);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* Two columns generic */
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.two-cols-narrow {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* For-who cards */
.forwho-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.forwho-card {
  background: var(--off-white-warm);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid var(--border);
}

.forwho-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--magenta);
  margin-bottom: 20px;
  display: block;
  letter-spacing: -0.02em;
}

.forwho-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.forwho-card p {
  font-size: 15px;
  color: var(--carbon);
  line-height: 1.55;
}

/* Form */
.form-section {
  background: var(--off-white-warm);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--magenta);
  margin-bottom: 16px;
}

.contact-info-block {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.contact-info-block:last-child {
  border-bottom: none;
}

.contact-info p,
.contact-info a {
  font-size: 18px;
  color: var(--navy);
  line-height: 1.5;
  text-decoration: none;
  display: block;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.contact-info a:hover { color: var(--magenta); }

.contact-info-meta {
  font-size: 14px !important;
  color: var(--gray-med) !important;
  font-weight: 400 !important;
}

.contact-form {
  background: var(--off-white);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-faint);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: var(--off-white);
  color: var(--navy);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-weight: 400;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(232, 30, 138, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: 'Inter', sans-serif;
}

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-radio {
  position: relative;
}

.form-radio input {
  position: absolute;
  opacity: 0;
}

.form-radio label {
  display: inline-block;
  padding: 10px 18px;
  background: var(--off-white-warm);
  border: 1px solid var(--gray-faint);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--carbon);
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-radio input:checked + label {
  background: var(--navy);
  color: var(--off-white);
  border-color: var(--navy);
}

.form-radio label:hover {
  border-color: var(--navy);
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.team-card {
  background: var(--off-white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.team-photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  position: relative;
  overflow: hidden;
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(232, 30, 138, 0.15), transparent 60%);
}

.team-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--off-white);
  opacity: 0.4;
  z-index: 1;
}

.team-info {
  padding: 20px 4px;
}

.team-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.team-info p {
  font-size: 14px;
  color: var(--gray-med);
}

/* Big stat row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  margin: 80px 0;
}

.big-stat {
  text-align: left;
}

.big-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}

.big-stat-num em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--magenta);
}

.big-stat-label {
  font-size: 14px;
  color: var(--gray-med);
  line-height: 1.4;
  max-width: 220px;
}

/* Inline values */
.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 60px;
}

.value-item {
  background: var(--off-white);
  padding: 40px 32px;
}

.value-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.value-item p {
  font-size: 15px;
  color: var(--carbon);
  line-height: 1.55;
}

/* Process small (for service pages) */
.process-mini {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
}

.process-mini::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(to right, var(--magenta), transparent);
  z-index: 0;
}

.process-mini-item {
  position: relative;
  z-index: 1;
}

.process-mini-num {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border: 2px solid var(--magenta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--magenta);
  margin-bottom: 24px;
}

.process-mini-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.process-mini-item p {
  font-size: 14px;
  color: var(--carbon);
  line-height: 1.5;
}

/* Note bloc */
.note-block {
  background: var(--off-white-warm);
  border-left: 3px solid var(--magenta);
  padding: 28px 32px;
  border-radius: 0 8px 8px 0;
  margin: 40px 0;
}

.note-block strong { color: var(--navy); }

.note-block p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--carbon);
  margin: 0;
}

/* Page-level CTA mid-section */
.mid-cta {
  background: var(--navy);
  color: var(--off-white);
  padding: 80px 48px;
  border-radius: 16px;
  text-align: center;
  margin: 80px 0;
}

.mid-cta h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-bottom: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.mid-cta h3 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--lime);
}

.mid-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin: 0 auto 32px;
}

.mid-cta .btn-primary {
  background: var(--lime);
  color: var(--navy);
}

.mid-cta .btn-primary:hover {
  background: var(--off-white);
}

/* Responsive overrides for internal pages */
@media (max-width: 1024px) {
  .hero-internal { padding: 110px 24px 60px; }
  .includes-grid { grid-template-columns: 1fr; gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .two-cols, .two-cols-narrow { grid-template-columns: 1fr; gap: 40px; }
  .forwho-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .values-list { grid-template-columns: 1fr; }
  .process-mini { grid-template-columns: 1fr; gap: 32px; }
  .process-mini::before { display: none; }
  .mid-cta { padding: 60px 32px; }
}

@media (max-width: 720px) {
  .hero-internal { padding: 90px 20px 40px; }
  .breadcrumb { font-size: 10px; flex-wrap: wrap; }
  .stats-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
}

