/* =============================================================
   Solum Studio — Final Merged v3
   ============================================================= */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: #FAFAF8;
  color: #11151C;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -40px;
  left: -9999px;
  background: linear-gradient(135deg, #2D5BFF 0%, #22B882 100%);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; left: 0; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, #2D5BFF 0%, #22B882 100%);
  color: #ffffff;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #2349cc 0%, #1da370 100%);
  box-shadow: 0 8px 24px rgba(45, 91, 255, 0.3);
}

.btn-ghost {
  background: transparent;
  color: rgba(17,21,28,0.8);
  border: 1.5px solid rgba(17,21,28,0.2);
}
.btn-ghost:hover {
  border-color: rgba(17,21,28,0.5);
  color: #11151C;
}

.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav Logo ── */
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; margin-right: auto; }
.nav-logo-img { height: 118px !important; width: auto !important; display: block; }
.nav-logo:hover { opacity: .88; transition: opacity .2s; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(17,21,28,0.08), 0 4px 20px rgba(17,21,28,0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  overflow: visible;
  padding-left: 20px;
  padding-right: 32px;
  max-width: 100%;
  width: 100%;
}
.nav-links { position: absolute; left: 50%; transform: translateX(-50%); }
.nav-cta-wrap { display: flex; align-items: center; gap: 16px; flex-shrink: 0; margin-left: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.nav-links li { list-style: none; }

.nav-links a {
  font-size: 0.88rem;
  color: rgba(17,21,28,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: #2D5BFF; }

.nav-cta {
  flex-shrink: 0;
  padding: 9px 20px;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #11151C;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px 20px;
  background: #FAFAF8;
  border-top: 1px solid rgba(17,21,28,0.08);
  min-height: calc(100vh - 80px);
  overflow-y: auto;
}

.nav.mobile-open {
  background: #FAFAF8;
  box-shadow: 0 1px 0 rgba(17,21,28,0.06);
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile a {
  display: block;
  padding: 10px 0;
  color: rgba(17,21,28,0.8);
  font-size: 1rem;
  border-bottom: 1px solid rgba(17,21,28,0.08);
}

.nav-mobile .btn { margin-top: 8px; width: 100%; justify-content: center; text-align: center; }

.nav.mobile-open .nav-mobile { display: flex; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 80px;
  position: relative;
  background: linear-gradient(135deg, #FAFAF8 0%, #F2F4FB 50%, #FAFAF8 100%);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  #particles-canvas { display: none; }
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,91,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.hero-content { max-width: 560px; flex: 1; }

/* ── Hero Visual Panel ── */
/* ── Hero Visual — Waves + Badges ── */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-left: 20px;
}

.hv-waves-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.hv-waves-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.hv-wave {
  opacity: .18;
}
.hv-wave-1 {
  fill: #22B882;
  animation: wave-rise 6s ease-in-out infinite;
}
.hv-wave-2 {
  fill: #22B882;
  opacity: .28;
  animation: wave-rise 6s ease-in-out infinite reverse;
  animation-delay: .8s;
}
.hv-wave-3 {
  fill: #22B882;
  opacity: .42;
  animation: wave-rise 5s ease-in-out infinite;
  animation-delay: .4s;
}
.hv-wave-line {
  stroke: #22B882;
  stroke-width: 2;
  fill: none;
  opacity: .9;
  filter: drop-shadow(0 0 6px #22B882);
  animation: wave-rise 5s ease-in-out infinite;
  animation-delay: .4s;
}

@keyframes wave-rise {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hv-pulse-dot {
  position: absolute;
  top: 38%;
  right: 18%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22B882;
  box-shadow: 0 0 0 0 rgba(34,184,130,.5);
  animation: pulse-ripple 2.5s ease-out infinite;
}

@keyframes pulse-ripple {
  0%   { box-shadow: 0 0 0 0 rgba(34,184,130,.6); }
  70%  { box-shadow: 0 0 0 16px rgba(34,184,130,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,184,130,0); }
}

.hv-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 300px;
}

.hv-badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(34,184,130,.25);
  border-radius: 12px;
  padding: 14px 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(17,21,28,.08);
  animation: badge-float 5s ease-in-out infinite;
}
.hv-badge-item--1 { animation-delay: 0s; }
.hv-badge-item--2 { animation-delay: 1.6s; }
.hv-badge-item--3 { animation-delay: 3.2s; }

@keyframes badge-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

.hv-badge-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(34,184,130,.1);
  border: 1px solid rgba(34,184,130,.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hv-badge-text {
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: #11151C;
}

/* ── Growth Chart ── */
.hv-chart-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 0;
}

.hv-chart-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #11151C;
  margin-bottom: 48px;
  margin-top: 0;
  letter-spacing: -0.02em;
  animation: title-glow-in 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  position: relative;
  line-height: 1.2;
}

.hv-chart-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #22B882, rgba(34, 184, 130, 0));
  animation: underline-expand 1.2s ease-out 0.3s forwards;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(34, 184, 130, 0.6);
}

@keyframes title-glow-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes underline-expand {
  from {
    width: 0;
  }
  to {
    width: 140px;
  }
}

.hv-growth-chart {
  width: 100%;
  max-width: 780px;
  height: auto;
  margin-bottom: 32px;
}

.hv-area {
  animation: area-reveal 2.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}

.hv-area-before {
  animation-delay: 0.2s;
}

.hv-area-after {
  animation-delay: 0.6s;
}

@keyframes area-reveal {
  from {
    opacity: 0;
    clip-path: polygon(0 100%, 0 100%, 100% 100%, 100% 100%);
  }
  to {
    opacity: 1;
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
}

.hv-line {
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: line-reveal 2.2s ease-out forwards;
  filter: drop-shadow(0 0 10px rgba(34, 184, 130, 0.5));
}

.hv-line-before {
  animation-delay: 0.3s;
}

.hv-line-after {
  animation-delay: 1s;
}

@keyframes line-reveal {
  to {
    stroke-dashoffset: 0;
  }
}

.hv-axis-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  fill: rgba(17, 21, 28, 0.45);
  text-anchor: end;
  animation: axis-fade 1s ease-out 0.5s both;
}

@keyframes axis-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hv-data-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  animation: label-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}

.hv-label-max {
  fill: #22B882;
  animation-delay: 2.2s;
}

.hv-label-min {
  fill: rgba(17, 21, 28, 0.55);
  animation-delay: 1.8s;
}

@keyframes label-pop {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hv-legend {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  justify-content: center;
  animation: legend-fade 0.8s ease-out 2.4s both;
}

.hv-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(17, 21, 28, 0.7);
}

.hv-legend-line {
  width: 20px;
  height: 2.5px;
  border-radius: 2px;
  flex-shrink: 0;
}

.hv-legend-before {
  background: #777777;
}

.hv-legend-after {
  background: #22B882;
  box-shadow: 0 0 8px rgba(34, 184, 130, 0.4);
}

@keyframes legend-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hv-cta-text {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2D5BFF, #22B882);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  animation: cta-reveal 1s ease-out 2.6s both;
  letter-spacing: -0.01em;
}

@keyframes cta-reveal {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { padding: 100px 0 60px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 184, 130, 0.12);
  border: 1px solid rgba(34, 184, 130, 0.3);
  color: #22B882;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22B882;
  display: inline-block;
  flex-shrink: 0;
}

.hero-kicker {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(17,21,28,.45);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #11151C;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .accent {
  color: #22B882 !important;
  font-style: normal;
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: inline;
  vertical-align: baseline;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(17,21,28,0.7);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-trust span {
  font-size: 0.85rem;
  color: rgba(17,21,28,0.7);
}
.hero-trust span::before { content: none; }

/* ── Hero Stats (inline en hero) ── */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #22B882;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(17,21,28,.5);
  line-height: 1.4;
}

/* ── Sections ── */
.section { padding: 96px 0; }

.section-dark {
  background: rgba(17,21,28,0.025);
  border-top: 1px solid rgba(17,21,28,0.06);
  border-bottom: 1px solid rgba(17,21,28,0.06);
}

.section-header { text-align: center; margin-bottom: 56px; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #22B882;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #11151C;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(17,21,28,0.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Eyebrow ── */
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.eyebrow-line { width: 28px; height: 2px; background: #22B882; flex-shrink: 0; }
.eyebrow-text {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #22B882;
}

/* ── Custom Cursor ── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; opacity: 0; transition: opacity .3s;
}
.cursor.is-ready { opacity: 1; }
.cursor-ring {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid #22B882;
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease, border-color .2s, background .2s;
}
.cursor.is-hovering .cursor-ring {
  width: 42px; height: 42px;
  background: rgba(34,184,130,.1);
}
@media (hover: none), (pointer: coarse) { .cursor { display: none !important; } }

/* ── Marquee ── */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid rgba(45,91,255,.15);
  border-bottom: 1px solid rgba(45,91,255,.15);
  background: rgba(45,91,255,.05);
  padding: 14px 0;
}
.marquee-track {
  display: flex; align-items: center;
  width: max-content;
  animation: marqueeScroll 55s linear infinite;
}
.marquee-item {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: #22B882; white-space: nowrap; padding: 0 1.25rem;
}
.marquee-dot {
  color: rgba(34,184,130,.4); padding: 0 .25rem; flex-shrink: 0;
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

.marquee-mask {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
  margin-top: 2rem;
}

.about-lead {
  font-size: 1.05rem;
  color: rgba(17,21,28,.8);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-support {
  font-size: .95rem;
  color: rgba(17,21,28,.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-diffs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.diff-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.diff-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(34,184,130,.1);
  border: 1px solid rgba(34,184,130,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #22B882;
}

.diff-title {
  font-family: 'Sora', sans-serif;
  font-size: .88rem; font-weight: 600;
  color: #11151C;
  margin-bottom: 2px;
}

.diff-desc {
  font-size: .8rem;
  color: rgba(17,21,28,.55);
  line-height: 1.5;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* About sidebar team cards (horizontal) */
.about-aside .team-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(17,21,28,.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(17,21,28,.04);
  transition: border-color .25s, transform .25s;
}
.about-aside .team-card:hover {
  border-color: rgba(34,184,130,.4);
  transform: translateY(-3px);
}

.team-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22B882, #0d8a5a);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.team-name {
  font-family: 'Sora', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #11151C;
}

.team-role {
  font-size: .8rem;
  color: #22B882;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.team-badge {
  display: inline-block;
  font-size: .7rem;
  background: rgba(34,184,130,.1);
  border: 1px solid rgba(34,184,130,.25);
  color: #22B882;
  padding: 2px 10px;
  border-radius: 999px;
  margin-top: 6px;
  letter-spacing: .06em;
}

.about-meta {
  background: rgba(34,184,130,.06);
  border: 1px solid rgba(34,184,130,.2);
  border-radius: 14px;
  padding: 18px 20px;
  text-align: center;
}

.about-meta-label {
  font-size: .7rem;
  letter-spacing: .15em;
  color: rgba(17,21,28,.45);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.about-meta-val {
  font-family: 'Sora', sans-serif;
  font-size: .9rem; font-weight: 600;
  color: #22B882;
}

/* ── Services Carousel ── */
.services-header {
  padding-top: 96px;
  padding-bottom: 32px;
}

/* ── Services Grid ── */
.services-grid-wrap { padding: 0 0 64px; overflow-x: hidden; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto auto auto auto 1fr auto);
  row-gap: 16px;
  column-gap: 20px;
  margin-top: 48px;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, auto auto auto auto 1fr auto);
  }
}
@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, auto auto auto auto 1fr auto);
    column-gap: 14px;
  }
}
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}

.service-card-carousel {
  background: #ffffff;
  border: 1px solid rgba(17,21,28,.08);
  border-radius: 20px;
  padding: 22px 20px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  row-gap: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(17,21,28,.04);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.service-card-carousel > * { align-self: start; }
@media (max-width: 480px) {
  .service-card-carousel { display: flex; flex-direction: column; gap: 12px; grid-row: span 1; }
}
.service-card-carousel:hover {
  border-color: rgba(45,91,255,.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(17,21,28,.08);
}

.service-card--featured {
  border-color: rgba(34,184,130,.4);
  background: rgba(34,184,130,.05);
}
.service-card--featured:hover { border-color: rgba(34,184,130,.7); }

.service-card-badge {
  background: #22B882;
  color: #0B1829;
  font-family: 'Sora', sans-serif;
  font-size: .58rem; font-weight: 800;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.service-card-glow {
  position: absolute; inset: 0;
  border-radius: inherit;
  opacity: .06;
  pointer-events: none;
  transition: opacity .3s;
}
.service-card-carousel:hover .service-card-glow { opacity: .12; }

.service-num-wrap { display: flex; align-items: center; gap: 8px; }

.service-num {
  font-family: 'Sora', sans-serif;
  font-size: .7rem; font-weight: 700;
  color: rgba(17,21,28,.35);
  letter-spacing: .12em;
}

.service-cat { display: none; }

/* Banner "Más Demandado" — primera línea visible de la card */
.service-card-banner {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #22B882;
  color: #0B1829;
  font-family: 'Sora', sans-serif;
  font-size: .62rem; font-weight: 800;
  letter-spacing: .12em;
  padding: 5px 14px;
  border-radius: 999px;
  z-index: 1;
}


.service-icon-carousel {
  width: 48px; height: 48px;
  background: rgba(17,21,28,.04);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon-carousel svg { width: 28px; height: 28px; }

.service-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: #11151C;
}

.service-sub {
  font-size: .82rem;
  color: rgba(17,21,28,.5);
  margin-top: -8px;
}

.service-desc-carousel {
  font-size: .88rem;
  color: rgba(17,21,28,.65);
  line-height: 1.6;
}

.service-includes {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(17,21,28,.08);
}

.service-includes-title {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(17,21,28,.4);
  margin-bottom: 10px;
}

.service-includes ul { display: flex; flex-direction: column; gap: 7px; }

.service-includes li {
  font-size: .82rem;
  color: rgba(17,21,28,.7);
  display: flex; align-items: center; gap: 8px;
}
.service-includes li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #22B882;
  flex-shrink: 0;
}

/* Progress bar */
.services-progress {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px; padding-bottom: 48px;
}

.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(34,184,130,.35);
  background: rgba(34,184,130,.07);
  color: #22B882;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .15s;
}
.carousel-btn:hover {
  background: rgba(34,184,130,.18);
  border-color: #22B882;
  transform: scale(1.08);
}
.carousel-btn:disabled { opacity: .3; cursor: default; transform: none; }

.progress-label {
  font-family: 'Sora', sans-serif;
  font-size: .75rem; font-weight: 600;
  color: rgba(17,21,28,.45);
  white-space: nowrap; min-width: 48px;
}

.progress-bar {
  flex: 1; height: 2px;
  background: rgba(17,21,28,.1);
  border-radius: 2px; overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #22B882;
  width: 0;
  transition: width .3s ease;
  border-radius: 2px;
}

/* ── Services Extra ── */
.services-extra {
  position: relative;
  background: rgba(17,21,28,0.025);
  border-top: 1px solid rgba(17,21,28,0.06);
  border-bottom: 1px solid rgba(17,21,28,0.06);
  padding: 52px 0;
  overflow: hidden;
}

.services-extra-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 120% at 50% 50%, rgba(45,91,255,.06), transparent);
  pointer-events: none;
}

.services-extra-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.services-extra-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-shrink: 0;
  min-width: 220px;
}

.services-extra-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(34,184,130,.1);
  border: 1px solid rgba(34,184,130,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.services-extra-icon svg { width: 26px; height: 26px; }

.services-extra-text h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem; font-weight: 800;
  color: #11151C; margin-bottom: .4rem;
  line-height: 1.25;
}
.services-extra-text p {
  font-size: .88rem;
  color: rgba(17,21,28,.55);
  line-height: 1.55;
}

.services-extra-center {
  flex: 1; min-width: 280px; overflow: hidden;
}

.services-extra-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
}

.extra-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(45,91,255,.25);
  background: rgba(45,91,255,.06);
  font-size: .8rem; font-weight: 500;
  color: rgba(17,21,28,.75);
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  cursor: default;
}
.extra-tag:hover {
  background: rgba(45,91,255,.14);
  border-color: rgba(45,91,255,.5);
  color: #11151C;
  transform: translateY(-2px);
}

.services-extra-right { flex-shrink: 0; }

.btn-extra-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #2D5BFF 0%, #22B882 100%);
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: .95rem; font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(45,91,255,.25);
}
.btn-extra-cta:hover {
  background: linear-gradient(135deg, #2349cc 0%, #1da570 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,91,255,.35);
}

@media (max-width: 900px) {
  .services-extra-inner { gap: 28px; }
  .services-extra-right { width: 100%; }
  .btn-extra-cta { width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .services-extra-left { min-width: 100%; }
  .services-extra-center { min-width: 100%; }
}

/* ── Packs ── */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto auto 1fr auto auto auto;
  gap: 10px 14px;
  align-items: stretch;
  margin-top: 48px;
  width: 100%;
}
@media (max-width: 900px) {
  .packs-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto auto 1fr auto auto auto auto auto auto auto auto auto auto auto;
  }
}
@media (max-width: 500px) {
  .packs-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}

.pack-card {
  background: #ffffff;
  border: 1px solid rgba(17,21,28,.08);
  border-radius: 16px;
  padding: 22px 18px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 8;
  gap: 0;
  row-gap: 10px;
  position: relative;
  box-shadow: 0 4px 16px rgba(17,21,28,.04);
  transition: border-color .25s, transform .25s, box-shadow .25s;
  padding-top: 40px;
}
.pack-card:hover { border-color: rgba(45,91,255,.3); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(17,21,28,.08); }

.pack-card--featured {
  border-color: rgba(34,184,130,.4);
  background: #ffffff !important;
}
.pack-card--featured:hover { border-color: rgba(34,184,130,.7); }

.pack-featured-badge {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #22B882;
  color: #0B1829;
  font-family: 'Sora', sans-serif;
  font-size: .58rem; font-weight: 800;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 999px;
  z-index: 1;
}

.pack-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.pack-name {
  font-family: 'Sora', sans-serif;
  font-size: 1rem; font-weight: 800;
  color: #11151C;
}

.pack-desc {
  font-size: .82rem;
  color: rgba(17,21,28,.55);
  line-height: 1.55;
}

.pack-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.pack-tags span {
  font-size: .68rem; font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(34,184,130,.3);
  color: rgba(17,21,28,.65);
  background: rgba(34,184,130,.08);
}

.pack-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 8px;
  align-self: start;
}
.pack-features li {
  display: flex; align-items: flex-start;
  gap: 7px;
  font-size: .82rem;
  color: rgba(17,21,28,.75);
  line-height: 1.4;
}
.pack-features li svg { flex-shrink: 0; margin-top: 2px; }

.pack-price {
  border-top: 1px solid rgba(17,21,28,.08);
  padding-top: 14px;
  align-self: start;
}
.pack-price strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.9rem; font-weight: 900;
  color: #22B882;
  line-height: 1;
}
.pack-price span {
  font-size: .75rem;
  color: rgba(17,21,28,.45);
  margin-top: 4px;
  display: block;
  line-height: 1.4;
}

.pack-price--custom strong {
  font-size: 1.9rem;
  color: #22B882;
}

.pack-savings {
  font-size: .75rem; font-weight: 600;
  color: #22B882;
  background: rgba(34,184,130,.08);
  border: 1px solid rgba(34,184,130,.2);
  border-radius: 6px;
  padding: 6px 10px;
  line-height: 1.4;
  align-self: start;
}
.pack-savings--none {
  visibility: hidden;
  padding: 0;
  border: none;
  background: none;
  height: 0;
  min-height: 0;
}

.pack-cta {
  display: block;
  text-align: center;
  padding: 12px 18px;
  border-radius: 9px;
  border: 1px solid rgba(17,21,28,.15);
  color: #11151C;
  font-family: 'Sora', sans-serif;
  font-size: .9rem; font-weight: 700;
  text-decoration: none;
  transition: background .2s, border-color .2s;
  margin-top: auto;
}
.pack-cta:hover { background: rgba(17,21,28,.05); border-color: rgba(17,21,28,.3); }

.pack-cta--featured {
  background: linear-gradient(135deg, #2D5BFF 0%, #22B882 100%);
  color: #ffffff;
  border-color: transparent;
}
.pack-cta--featured:hover { background: linear-gradient(135deg, #2349cc 0%, #1da570 100%); border-color: transparent; }

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-node {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(45,91,255,.3);
  box-shadow: 0 4px 14px rgba(17,21,28,.06);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  transition: border-color .4s ease, background .4s ease;
  z-index: 1;
}

.process-node-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(34,184,130,0);
  transition: border-color .4s ease, inset .4s ease;
}

.process-step.is-active .process-node {
  border-color: #22B882;
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(34,184,130,.12), 0 4px 14px rgba(17,21,28,.08);
}
.process-step.is-active .process-node-ring {
  inset: -10px;
  border-color: rgba(34,184,130,.2);
}

.process-number {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: #22B882; line-height: 1;
}

.process-connector {
  position: absolute;
  top: 32px; right: -50%;
  width: 100%; height: 2px;
  background: rgba(17,21,28,.08);
  overflow: hidden; z-index: 0;
}

.process-connector-fill {
  height: 100%;
  background: linear-gradient(90deg, #22B882, rgba(34,184,130,.3));
  width: 0;
  transition: width 1s ease .2s;
}
.process-step.is-active .process-connector-fill { width: 100%; }
.process-step:last-child .process-connector { display: none; }

.process-step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  color: #11151C;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.85rem;
  color: rgba(17,21,28,0.55);
  line-height: 1.6;
}

/* ── Testimonials 3-row marquee ── */
.testi-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
  padding-bottom: 64px;
}

.testi-row { overflow: hidden; }

.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.testi-track-1 { animation: marqueeLeft 70s linear infinite; }
.testi-track-2 { animation: marqueeRight 110s linear infinite; }
.testi-track-3 { animation: marqueeLeft 90s linear infinite; }

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

.testi-card {
  flex-shrink: 0;
  width: 320px;
  background: #ffffff;
  border: 1px solid rgba(17,21,28,.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(17,21,28,.05);
  display: flex; flex-direction: column; gap: 14px;
}

.testi-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px;
}

.testi-info { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #EEF1FA;
  border: 2px solid rgba(34,184,130,.25);
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.testi-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testi-name {
  font-family: 'Sora', sans-serif;
  font-size: .88rem; font-weight: 700; color: #11151C;
}
.testi-meta { font-size: .75rem; color: rgba(17,21,28,.5); }

.testi-stars {
  color: #22B882; font-size: .8rem;
  letter-spacing: 2px; flex-shrink: 0;
}

.testi-quote {
  font-size: .88rem;
  color: rgba(17,21,28,.8);
  line-height: 1.6; font-style: italic; flex: 1;
}

.testi-badge {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  background: rgba(34,184,130,.1);
  border: 1px solid rgba(34,184,130,.25);
  color: #22B882;
  padding: 3px 10px; border-radius: 999px;
  letter-spacing: .06em; align-self: flex-start;
}

/* ── Pricing ── */
#precios {
  background: #ffffff;
  border-top: 1px solid rgba(17,21,28,0.06);
  border-bottom: 1px solid rgba(17,21,28,0.06);
}
#precios .section-title,
#precios .section-label,
#precios .problems-title { color: #11151C; }
#precios .section-subtitle { color: rgba(17,21,28,0.55); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.pricing-card:hover { border-color: rgba(34,184,130,.4); transform: translateY(-4px); }

.pricing-card--featured {
  background: rgba(34,184,130,.08);
  border-color: rgba(34,184,130,.5);
  box-shadow: 0 0 40px rgba(34,184,130,.12);
}

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: #22B882;
  color: #031a10;
  font-size: .72rem; font-weight: 700;
  padding: 4px 14px; border-radius: 999px;
  white-space: nowrap; letter-spacing: .06em;
}

.pricing-tag {
  font-family: 'Sora', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; color: #22B882;
}

.pricing-price {
  font-family: 'Sora', sans-serif;
  line-height: 1.1;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
}
.pricing-price strong { font-size: 2rem; color: #fff; display: block; margin-top: 2px; }
.pricing-price span { font-size: .85rem; }

.pricing-desc { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.55; }

.pricing-features {
  flex: 1;
  display: flex; flex-direction: column; gap: 10px;
}
.pricing-features li {
  font-size: .84rem; color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%; background: #22B882; flex-shrink: 0;
}

/* ── Team (full section) ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.team-card-full {
  background: #ffffff;
  border: 1px solid rgba(17,21,28,0.08);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(17,21,28,.04);
  transition: border-color 0.25s, transform 0.25s, box-shadow .25s;
}
.team-card-full:hover {
  border-color: rgba(34,184,130,0.4);
  transform: translateY(-4px);
}

.team-avatar-full {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22B882, #0d8a5a);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem; font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
}

.team-name-full {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  color: #11151C;
  margin-bottom: 4px;
}

.team-role-full {
  font-size: .82rem;
  color: #22B882;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.team-close {
  text-align: center;
  margin-top: 40px;
  font-size: .95rem;
  color: rgba(17,21,28,.55);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}


/* ── Contact ── */
.contact-section { padding: 96px 0; }

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

.contact-channels { display: flex; flex-direction: column; gap: 16px; }

.contact-channel {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid rgba(17,21,28,0.08);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(17,21,28,.04);
  transition: border-color 0.25s, background 0.25s;
  text-decoration: none;
}
.contact-channel:hover {
  border-color: rgba(45,91,255,0.4);
  background: rgba(45,91,255,0.04);
}
.contact-channel strong { display: block; font-size: 0.88rem; color: #11151C; font-weight: 600; }
.contact-channel span { font-size: 0.82rem; color: rgba(17,21,28,0.55); }

/* ── Contact Form ── */
.contact-form-wrap {
  background: #ffffff;
  border: 1px solid rgba(17,21,28,0.08);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 8px 28px rgba(17,21,28,.05);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 0.85rem; font-weight: 500;
  color: rgba(17,21,28,0.75);
}

.form-group input,
.form-group textarea {
  background: rgba(17,21,28,0.03);
  border: 1px solid rgba(17,21,28,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #11151C;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(17,21,28,0.35); }
.form-group input:focus,
.form-group textarea:focus { border-color: #2D5BFF; }

.form-note { font-size: 0.78rem; color: rgba(17,21,28,0.4); text-align: center; }

/* ── Footer ── */
.footer {
  background: #0F1419;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 10px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: #22B882; }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact a:hover { color: #22B882; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { font-size: .78rem; color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: #22B882; }
.footer-legal { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; padding: 0 6px; }
.footer-legal a:hover { color: #22B882; }
.footer-legal a + a::before { content: '·'; margin-right: 6px; color: rgba(255,255,255,.25); }

.footer-top-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: rgba(255,255,255,.3);
  background: none; border: none; cursor: pointer; transition: color .2s;
}
.footer-top-btn svg { width: 14px; height: 14px; }
.footer-top-btn:hover { color: #22B882; }

/* ── Floating WhatsApp ── */
@keyframes waGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.3); }
  60% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,0); }
}

.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: #25D366;
  border-radius: 50%;
  width: 56px; height: 56px;
  animation: waGlow 2.4s ease-in-out infinite;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); background: #1fbe5a; }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
  animation: revealFallback .01s 2s forwards;
}
.reveal.is-visible { opacity: 1; transform: none; animation: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(.97) translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  animation: revealFallback .01s 2s forwards;
}
.reveal-scale.is-visible { opacity: 1; transform: none; animation: none; }

@keyframes revealFallback { to { opacity: 1; transform: none; } }

.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-aside { flex-direction: row; flex-wrap: wrap; }
  .about-aside .team-card { flex: 1; min-width: 220px; }
  .about-meta { flex: 1 1 100%; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-connector { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-links, .nav-cta, .nav-cta-wrap { display: none; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-diffs { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .wa-float-label { display: none; }
  .wa-float { padding: 16px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ── Service card upgrades ── */
.service-card-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; padding-bottom: 10px; }
.service-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  padding-bottom: 10px;
  font-family: 'Sora', sans-serif;
}
.service-price-label {
  font-size: .82rem; font-weight: 700;
  color: #22B882;
}
.service-price strong {
  font-size: 1.7rem; font-weight: 800;
  color: #22B882;
  line-height: 1;
}
.service-price span {
  font-size: .8rem; font-weight: 400;
  color: rgba(17,21,28,.45);
}

/* Icon standalone — sin top wrapper */
.service-card-top .service-icon-carousel { margin: 0; }
.service-name { padding-bottom: 6px; }
.service-desc-carousel { padding-bottom: 4px; }
.service-includes-list { list-style: none; display: flex; flex-direction: column; gap: 8px; padding-bottom: 16px; }
.service-includes-list li { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: rgba(17,21,28,.8); }
.service-cta { display: block; text-align: center; padding: 12px 20px; border-radius: 8px; border: 1px solid rgba(17,21,28,.15); color: #11151C; font-size: .9rem; font-weight: 600; text-decoration: none; transition: background .2s, border-color .2s; align-self: stretch; }
.service-cta:hover { background: rgba(17,21,28,.05); border-color: rgba(17,21,28,.3); }

/* ── Nav dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 5px; }
.nav-dropdown-toggle svg { transition: transform .2s; flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #ffffff;
  border: 1px solid rgba(17,21,28,.08);
  border-radius: 12px;
  padding: 8px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 300;
  box-shadow: 0 16px 40px rgba(17,21,28,.12);
  list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  color: rgba(17,21,28,.75);
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu li a:hover {
  background: rgba(45,91,255,.08);
  color: #2D5BFF;
}

/* ── Team member cards (nosotros.html) ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
}
.team-member-card {
  background: #ffffff;
  border: 1px solid rgba(17,21,28,.08);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(17,21,28,.04);
}
.team-member-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg,#2D5BFF,#22B882);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora',sans-serif;
  font-weight: 800; font-size: 1rem;
  color: #ffffff;
}
.team-member-name { font-family:'Sora',sans-serif; font-size:1.1rem; font-weight:700; color:#11151C; }
.team-member-role { font-size:.82rem; color:#22B882; font-weight:600; }
.team-member-bio { font-size:.84rem; color:rgba(17,21,28,.55); line-height:1.55; }
@media(max-width:580px){ .team-grid { grid-template-columns:1fr; } }

/* ── Problems section ── */
.problems-section { padding: 80px 0 40px; }
.problems-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .14em;
  color: #22B882;
  margin-bottom: 14px;
}
.problems-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #11151C;
  line-height: 1.15;
  margin-bottom: 14px;
}
.problems-sub {
  font-size: .95rem;
  color: rgba(17,21,28,.55);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.6;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.problem-card {
  background: #ffffff;
  border: 1px solid rgba(17,21,28,.07);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(17,21,28,.04);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.problem-card:hover {
  border-color: rgba(45,91,255,.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(17,21,28,.08);
}
.problem-emoji { font-size: 2rem; line-height: 1; }
.problem-name {
  font-family: 'Sora', sans-serif;
  font-size: .95rem; font-weight: 700;
  color: #11151C;
  line-height: 1.3;
}
.problem-desc { font-size: .83rem; color: rgba(17,21,28,.55); line-height: 1.55; }
@media (max-width: 900px) { .problems-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .problems-grid { grid-template-columns: 1fr; } }

/* ---- Elige lo que necesitas ---- */
.elige-section { padding: 40px 0 80px; }
.elige-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.elige-card {
  border-radius: 20px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(17,21,28,.07);
  box-shadow: 0 4px 16px rgba(17,21,28,.04);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.elige-card:hover { transform: translateY(-4px); border-color: rgba(45,91,255,.3); box-shadow: 0 10px 24px rgba(17,21,28,.08); }
.elige-card--blue  { background: #ffffff; }
.elige-card--green { background: #ffffff; }
.elige-card--purple{ background: #ffffff; }
.elige-emoji { font-size: 2.2rem; line-height: 1; }
.elige-name { font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 700; color: #11151C; margin: 0; }
.elige-desc { font-size: .88rem; color: rgba(17,21,28,.6); line-height: 1.6; margin: 0; flex: 1; }
.elige-link {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  color: #22B882;
  text-decoration: none;
  margin-top: 4px;
  transition: opacity .2s;
}
.elige-link:hover { opacity: .75; }

/* ---- Sectores ---- */
.sectores-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sector-tag {
  background: rgba(17,21,28,.04);
  border: 1px solid rgba(17,21,28,.1);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .84rem;
  color: rgba(17,21,28,.75);
  transition: background .2s, border-color .2s, color .2s;
  cursor: default;
}
.sector-tag:hover {
  background: rgba(45,91,255,.1);
  border-color: rgba(45,91,255,.4);
  color: #11151C;
}

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid rgba(17,21,28,.08);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(17,21,28,.03);
  transition: border-color .2s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: rgba(45,91,255,.35); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  color: #11151C;
  text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: #2D5BFF; }
.faq-icon {
  font-size: 1.3rem;
  color: #2D5BFF;
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding-bottom .35s;
  padding: 0 28px;
}
.faq-answer p { color: rgba(17,21,28,.6); font-size: .92rem; line-height: 1.8; margin: 0; padding-bottom: 4px; }
@media (max-width: 768px) { .elige-grid { grid-template-columns: 1fr; } }

/* ── CTA FINAL servicios.html ─────────────────────────── */
.servicios-cta-final {
  padding: 90px 0 100px;
  background: linear-gradient(135deg, #0e2240 0%, #113a5c 50%, #0a1e36 100%);
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.servicios-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(34,184,130,.15) 0%, transparent 65%);
  pointer-events: none;
}
.servicios-cta-eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #1aff8c 0%, #22B882 100%);
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  text-shadow: 0 0 12px rgba(34,255,140,.6);
  box-shadow: 0 0 18px rgba(34,255,140,.45), 0 0 40px rgba(34,184,130,.25);
}
.servicios-cta-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
}
.servicios-cta-sub {
  color: rgba(255,255,255,.55);
  font-size: .97rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.servicios-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.servicios-cta-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.servicios-cta-mail a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.servicios-cta-mail a:hover { color: #22B882; }
@media (max-width: 600px) {
  .servicios-cta-final { padding: 64px 0 72px; }
  .servicios-cta-btns { flex-direction: column; align-items: center; }
}
