/* ===== Landing 72 — landing72.css ===== */

:root {
  --bg: #0a0d14;
  --bg-2: #0e1220;
  --surface: #141927;
  --surface-2: #1a2033;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #eaeef7;
  --muted: #8b93a8;
  --brand: #10b981;
  --brand-2: #22d3a8;
  --brand-deep: #059669;
  --primary: #10b981;
  --primary-2: #22d3a8;
  --accent: #22d3a8;
  --gold: #f5b544;
  --wa: #25d366;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.7);
  --shadow-soft: 0 14px 34px -16px rgba(16, 185, 129, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

section[id] {
  scroll-margin-top: 84px;
}

/* ===== SKIP LINK ===== */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--brand);
  color: #05221a;
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 8px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  outline: 2px solid var(--brand-2);
  outline-offset: 2px;
}

/* ===== LAYOUT ===== */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 820px;
}

/* ===== TYPOGRAPHY ===== */

.h1 {
  font-size: clamp(2.15rem, 5.6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 20px;
  text-wrap: balance;
  color: var(--text);
  opacity: 1;
}

.h2 {
  font-size: clamp(1.95rem, 4.2vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 14px;
  text-wrap: balance;
  color: var(--text);
  opacity: 1;
}

.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 560px;
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--brand-2);
  opacity: 0.7;
}

.grad {
  color: var(--brand-2);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* ===== NAV ===== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11, 15, 26, 0.75);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.nav.is-scrolled {
  border-color: var(--border);
  background: rgba(11, 15, 26, 0.9);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.logo--image {
  gap: 0;
  min-width: 112px;
  min-height: 48px;
}

.logo__image {
  width: auto;
  height: 48px;
  max-width: 116px;
  object-fit: contain;
}

.footer .logo__image {
  width: 150px;
  height: auto;
  max-height: none;
}

.logo__mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--brand);
  color: #05221a;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-soft);
}

.logo__text {
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  font-weight: 700;
}

.logo__text b {
  color: var(--brand-2);
  font-weight: 800;
}

.nav__links {
  display: none;
  gap: 28px;
}

.nav__links a {
  position: relative;
  font-size: 0.93rem;
  color: var(--muted);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--brand-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }
}

/* ===== BUTTONS ===== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s,
    border-color 0.25s;
  white-space: nowrap;
  will-change: transform;
}

.btn svg {
  transition: transform 0.28s var(--ease);
}

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

.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn--sm {
  padding: 9px 16px;
  font-size: 0.88rem;
}

.btn--lg {
  padding: 15px 26px;
  font-size: 1rem;
}

.btn--full,
.btn--block {
  width: 100%;
}

.btn--primary {
  overflow: hidden;
  isolation: isolate;
  background: var(--brand);
  color: #05221a;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  transform: translateY(-2px);
  background: #0ea373;
  box-shadow: 0 22px 48px -16px rgba(16, 185, 129, 0.55);
}

.btn--primary::after {
  content: "";
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.btn--primary.is-rippling::after {
  animation: ripple 0.6s var(--ease) forwards;
}

.btn--primary > * {
  position: relative;
  z-index: 1;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.55;
  }

  100% {
    transform: translate(-50%, -50%) scale(40);
    opacity: 0;
  }
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  background: var(--surface);
  border-color: rgba(34, 211, 168, 0.35);
  color: var(--brand-2);
}

/* ===== HERO ===== */

.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.hero__bg {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 620px;
  background:
    radial-gradient(700px 340px at 20% 10%, rgba(16, 185, 129, 0.16), transparent 70%),
    radial-gradient(500px 300px at 85% 30%, rgba(34, 211, 168, 0.08), transparent 70%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black, transparent 80%);
  pointer-events: none;
  z-index: -1;
}

.hero__inner {
  display: grid;
  gap: 50px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero {
    padding: 100px 0 120px;
  }

  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.22);
  color: var(--brand-2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}

.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(34, 211, 168, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 211, 168, 0.6);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(34, 211, 168, 0);
  }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__meta {
  list-style: none;
  padding: 28px 0 0;
  margin: 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 540px;
}

.hero__meta strong {
  display: block;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

/* ===== HERO MOCK PHONE ===== */

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

.phone {
  position: relative;
  width: 300px;
  height: 600px;
  background:
    linear-gradient(135deg, #2a3145 0%, #151923 45%, #0f1320 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 44px;
  padding: 11px 10px;
  box-shadow:
    0 60px 120px -40px rgba(0, 0, 0, 0.9),
    0 30px 60px -30px rgba(0, 0, 0, 0.6),
    0 0 0 2px rgba(0, 0, 0, 0.5),
    0 0 0 3px rgba(255, 255, 255, 0.04),
    inset 0 2px 0 rgba(255, 255, 255, 0.08),
    inset 0 -2px 0 rgba(0, 0, 0, 0.5);
  transform:
    perspective(1400px)
    rotateY(calc(-10deg + var(--ty, 0deg)))
    rotateX(calc(4deg + var(--tx, 0deg)));
  transition: transform 0.45s var(--ease);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    155deg,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0) 28%,
    rgba(255,255,255,0) 72%,
    rgba(255,255,255,0.04) 100%
  );
  pointer-events: none;
  z-index: 3;
}

.hero__visual:hover .phone {
  transform:
    perspective(1400px)
    rotateY(calc(-10deg + var(--ty, 0deg)))
    rotateX(calc(4deg + var(--tx, 0deg)));
}

.phone__btn {
  position: absolute;
  background: linear-gradient(90deg, #0b0d14 0%, #1d2230 45%, #0b0d14 100%);
  z-index: 1;
  border-radius: 2px;
}

.phone__btn--silent {
  left: -2px;
  top: 86px;
  width: 3px;
  height: 28px;
}

.phone__btn--vol1 {
  left: -2px;
  top: 132px;
  width: 3px;
  height: 46px;
}

.phone__btn--vol2 {
  left: -2px;
  top: 192px;
  width: 3px;
  height: 46px;
}

.phone__btn--power {
  right: -2px;
  top: 150px;
  width: 3px;
  height: 68px;
}

.phone__island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.phone__island-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 6px rgba(16,185,129,0.9);
}

.phone__island-cam {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3a4560 0%, #0a0c12 70%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.phone__screen {
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(16,185,129,0.08) 0%, rgba(16,185,129,0) 55%),
    linear-gradient(180deg, #0d1117 0%, #090d14 100%);
  border-radius: 34px;
  height: 100%;
  padding: 52px 16px 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text);
  font-weight: 600;
  position: absolute;
  top: 22px;
  left: 26px;
  right: 26px;
  z-index: 2;
}

.phone__time {
  letter-spacing: -0.01em;
}

.phone__status-icons {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
}

.phone__hero {
  background:
    linear-gradient(145deg, rgba(16, 185, 129, 0.18), rgba(34, 211, 168, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 18px;
  padding: 14px 14px 16px;
  position: relative;
  overflow: hidden;
}

.phone__hero::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(34,211,168,0.25), transparent 70%);
  pointer-events: none;
}

.phone__hero-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.phone__avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(16,185,129,0.5);
}

.phone__eyebrow {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 2px;
}

.phone__open {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.64rem;
  color: var(--muted);
  font-weight: 500;
}

.phone__open i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.18);
}

.phone__title {
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--text);
}

.phone__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand);
  color: #05221a;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -4px rgba(16,185,129,0.55);
  animation: ctaPulse 2.6s ease-out infinite;
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.phone__srvhead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 2px;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.phone__srvhead-link {
  color: var(--brand-2);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 0.68rem;
}

.phone__services {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phone__srv {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 0.76rem;
}

.phone__srv-ic {
  width: 28px;
  height: 28px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.18);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.phone__srv-name {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: var(--text);
  line-height: 1.15;
  font-weight: 600;
}

.phone__srv-name i {
  color: var(--muted);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 500;
  margin-top: 2px;
}

.phone__srv b {
  color: var(--brand-2);
  font-weight: 700;
}

.phone__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(245, 181, 68, 0.06);
  border: 1px solid rgba(245, 181, 68, 0.2);
  border-radius: 12px;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: auto;
}

.phone__avatars {
  display: inline-flex;
  flex-shrink: 0;
}

.phone__avatars i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #0a0e14;
  margin-left: -7px;
  display: inline-block;
}

.phone__avatars i:first-child {
  margin-left: 0;
}

.phone__rating-body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.phone__stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 0.72rem;
}

/* ===== FLOATS ===== */

.float {
  position: absolute;
  background: linear-gradient(180deg, rgba(26,32,49,0.96), rgba(20,25,39,0.96));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 0.82rem;
  box-shadow:
    0 20px 40px -16px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  will-change: transform;
  z-index: 3;
}

.float--wa {
  top: 14%;
  left: -8px;
  animation:
    floatInLeft 0.9s var(--ease) 0.4s both,
    floatY 5s ease-in-out infinite 1.3s;
}

@media (min-width: 960px) {
  .float--wa {
    left: -28px;
  }
}

.float__icon {
  background: var(--wa);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  flex-shrink: 0;
  box-shadow: 0 6px 12px -4px rgba(37,211,102,0.55);
}

.float--wa .float__icon {
  animation: heartbeat 3.2s ease-in-out infinite 2s;
  transform-origin: center;
}

.float__body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 2px;
  min-width: 0;
}

.float__body strong {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
}

.float__body > span {
  color: var(--muted);
  font-size: 0.7rem;
}

.float__row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.float__time {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
}

.float__typing {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.7rem;
  color: var(--brand-2);
  font-weight: 500;
}

.float__typing i {
  width: 4px;
  height: 4px;
  background: var(--brand-2);
  border-radius: 50%;
  display: inline-block;
  animation: typingDot 1.3s ease-in-out infinite;
}

.float__typing i:nth-child(1) {
  animation-delay: 0s;
}

.float__typing i:nth-child(2) {
  animation-delay: 0.2s;
}

.float__typing i:nth-child(3) {
  animation-delay: 0.4s;
  margin-right: 4px;
}

@keyframes typingDot {
  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.float--rate {
  bottom: 12%;
  right: -8px;
  animation:
    floatInRight 0.9s var(--ease) 0.6s both,
    floatY 5s ease-in-out infinite 1.5s;
}

@media (min-width: 960px) {
  .float--rate {
    right: -24px;
  }
}

.float__avatars {
  display: inline-flex;
  flex-shrink: 0;
}

.float__avatars i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #141927;
  margin-left: -8px;
  display: inline-block;
}

.float__avatars i:first-child {
  margin-left: 0;
}

.float--rate .float__stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 0.68rem;
}

.float__rate-sub {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes floatInLeft {
  from {
    opacity: 0;
    transform: translateX(-12px) translateY(-4px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

@keyframes floatInRight {
  from {
    opacity: 0;
    transform: translateX(12px) translateY(4px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

@keyframes heartbeat {
  0%,
  40%,
  100% {
    transform: scale(1);
  }

  15% {
    transform: scale(1.08);
  }

  30% {
    transform: scale(1);
  }
}

/* ===== SECTIONS ===== */

.section {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }
}

.section--dark {
  background: var(--bg-2);
}

.section--dark::before,
.section--dark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.section--dark::before {
  top: 0;
}

.section--dark::after {
  bottom: 0;
}

.section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section__head .lead,
.section__head .muted {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
  font-size: 1.02rem;
}

/* ===== GRIDS ===== */

.grid {
  display: grid;
  gap: 20px;
}

.grid--3,
.grid--features,
.grid--pricing,
.grid--demos,
.grid--usecases {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .grid--3,
  .grid--features,
  .grid--demos,
  .grid--usecases {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .grid--3,
  .grid--features {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--pricing {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .grid--usecases {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== CARDS ===== */

.card,
.feature,
.step,
.testimonial {
  transition:
    transform 0.4s var(--ease),
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.4s var(--ease);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 26px 50px -24px rgba(16, 185, 129, 0.22);
}

.card:hover::before {
  transform: scaleX(1);
}

.card__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== FEATURES ===== */

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: 0 26px 50px -24px rgba(16, 185, 129, 0.22);
}

.feature__num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-2);
  margin-bottom: 16px;
  letter-spacing: 0.14em;
}

.feature__num::after {
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(34, 211, 168, 0.4);
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== NICHES ===== */

.niches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.niche {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition:
    transform 0.3s var(--ease),
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.3s;
  cursor: default;
}

.niche:hover {
  transform: translateY(-3px) scale(1.015);
  border-color: rgba(16, 185, 129, 0.35);
  background: linear-gradient(180deg, var(--surface), rgba(16, 185, 129, 0.05));
  box-shadow: 0 14px 28px -16px rgba(16, 185, 129, 0.35);
}

.niches__note {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.niches__note a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px dashed rgba(34, 211, 168, 0.4);
  transition: color 0.2s, border-color 0.2s;
}

.niches__note a:hover {
  color: #5eead4;
  border-color: var(--accent);
}

/* ===== STEPS ===== */

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  counter-reset: step;
  position: relative;
}

@media (min-width: 820px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 52px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
    z-index: 0;
  }
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  z-index: 1;
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 26px 50px -24px rgba(16, 185, 129, 0.22);
}

.step__num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand);
  color: #05221a;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.step p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.step__time {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--brand-2);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

/* ===== PRICING ===== */

.price {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.45s var(--ease),
    border-color 0.3s,
    box-shadow 0.45s var(--ease);
}

.price:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -26px rgba(16, 185, 129, 0.25);
}

.price--featured {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow:
    0 30px 70px -24px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateY(-8px);
}

.price--featured:hover {
  transform: translateY(-14px);
  box-shadow:
    0 40px 80px -24px rgba(16, 185, 129, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.price--featured .price__amount {
  color: var(--brand-2);
}

.price__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--brand);
  color: #05221a;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-soft);
}

.price__head h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.price__sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.price__amount {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  line-height: 1;
}

.price__currency {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 600;
  margin-right: 2px;
  vertical-align: top;
}

.price__once {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 4px;
}

.price__list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
  flex: 1;
}

.price__list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.price__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.price__list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

/* ===== USE CASES ===== */

.usecase {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s var(--ease),
    border-color 0.3s,
    box-shadow 0.4s var(--ease);
}

.usecase:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 26px 50px -24px rgba(16, 185, 129, 0.28);
}

.usecase__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: filter 0.45s var(--ease);
}

.usecase__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.6;
}

.usecase__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 30%, rgba(16,185,129,0.18), rgba(16,185,129,0) 70%);
  pointer-events: none;
}

.usecase__thumb--1 {
  background: linear-gradient(135deg, #0f1b14 0%, #0e3b2a 100%);
}

.usecase__thumb--2 {
  background: linear-gradient(135deg, #2a1410 0%, #8a3d1f 100%);
}

.usecase__thumb--3 {
  background: linear-gradient(135deg, #0a1f1a 0%, #10b981 100%);
}

.usecase__thumb--4 {
  background: linear-gradient(135deg, #1a0f1f 0%, #6b3d7d 100%);
}

.usecase__thumb--5 {
  background: linear-gradient(135deg, #14171f 0%, #2a4060 100%);
}

.usecase__thumb--6 {
  background: linear-gradient(135deg, #0c0f1a 0%, #1a2444 100%);
}

.usecase:hover .usecase__thumb {
  filter: brightness(1.12) saturate(1.08);
}

.usecase__icon {
  position: relative;
  z-index: 1;
  font-size: 2.6rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.45));
  transition: transform 0.4s var(--ease);
}

.usecase:hover .usecase__icon {
  transform: scale(1.08) translateY(-2px);
}

.usecase__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--brand-2);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease);
}

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

.usecase__info {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.usecase__info h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.usecase__info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}

.usecase__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: var(--brand-2);
  font-weight: 700;
  font-size: 0.88rem;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  transition: gap 0.3s var(--ease), color 0.3s;
}

.usecase__cta svg {
  transition: transform 0.3s var(--ease);
}

.usecase:hover .usecase__cta {
  color: var(--text);
  gap: 10px;
}

.usecase:hover .usecase__cta svg {
  transform: translateX(3px);
}

.usecase__cta:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.usecase__note {
  text-align: center;
  margin: 36px auto 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 0.95rem;
}

.usecase__note a {
  color: var(--brand-2);
  font-weight: 700;
  border-bottom: 1px solid rgba(34, 211, 168, 0.4);
  transition: border-color 0.3s;
}

.usecase__note a:hover {
  border-bottom-color: var(--brand-2);
}

/* ===== FAQ ===== */

.faq {
  display: grid;
  gap: 12px;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color 0.3s, background 0.3s;
}

.faq__item[open] {
  border-color: rgba(16, 185, 129, 0.3);
  background: var(--surface-2);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  outline: none;
  border-radius: 8px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.35s var(--ease), color 0.3s;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
  color: var(--brand-2);
}

.faq__item p {
  margin: 14px 0 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq__item[open] > *:not(summary) {
  animation: faqIn 0.38s var(--ease);
  transform-origin: top;
}

@keyframes faqIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TESTIMONIALS ===== */

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(16, 185, 129, 0.15);
  pointer-events: none;
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 168, 0.35);
  box-shadow: 0 26px 50px -24px rgba(16, 185, 129, 0.22);
}

.testimonial__stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.testimonial p {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
  flex: 1;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
}

.testimonial footer strong {
  color: var(--text);
}

.testimonial footer span {
  color: var(--muted);
}

/* ===== TRUST BAR ===== */

.trust-bar {
  list-style: none;
  padding: 32px 20px;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

@media (min-width: 720px) {
  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-bar strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-2);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.trust-bar span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===== CTA FINAL ===== */

.cta {
  padding: 100px 0 120px;
}

.cta__box {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 50% -10%, rgba(16, 185, 129, 0.18), transparent 70%),
    var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 70px 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

.cta__box > * {
  position: relative;
}

.cta__box p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 26px;
}

.cta__box .eyebrow {
  margin-bottom: 10px;
}

.cta__micro {
  margin-top: 18px !important;
  font-size: 0.85rem !important;
  color: var(--muted) !important;
  max-width: none !important;
}

/* ===== FOOTER ===== */

.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 50px 0 0;
}

.footer__inner {
  display: grid;
  gap: 30px;
  padding-bottom: 40px;
}

@media (min-width: 720px) {
  .footer__inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.footer__tag {
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 360px;
  font-size: 0.95rem;
}

.footer__contact {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer__contact a:hover {
  color: var(--text);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* ===== WHATSAPP FLOAT ===== */

.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -5px rgba(37, 211, 102, 0.6);
  z-index: 60;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  animation: waPulse 2.5s ease-out infinite;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float::before {
  content: "Hablá con nosotros";
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
  transition: opacity 0.25s, transform 0.3s var(--ease);
}

.wa-float:hover::before,
.wa-float:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.wa-float:active {
  transform: scale(0.94);
  transition: transform 0.1s;
}

@keyframes waPulse {
  0% {
    box-shadow:
      0 12px 30px -5px rgba(37, 211, 102, 0.6),
      0 0 0 0 rgba(37,211,102,0.5);
  }

  70% {
    box-shadow:
      0 12px 30px -5px rgba(37, 211, 102, 0.6),
      0 0 0 20px rgba(37,211,102,0);
  }

  100% {
    box-shadow:
      0 12px 30px -5px rgba(37, 211, 102, 0.6),
      0 0 0 0 rgba(37,211,102,0);
  }
}

/* ===== REVEAL ===== */

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  transition-delay: var(--stagger, 0ms);
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =========================================================
   BLOQUES COMERCIALES FINALES
   Dominio, hosting, mantenimiento, garantía y rubros
   ========================================================= */

/* ===== DOMINIO Y HOSTING ===== */

.domain-box {
  max-width: 980px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(94, 234, 212, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(94, 234, 212, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.domain-box__content {
  max-width: 920px;
}

.domain-box .eyebrow {
  margin-bottom: 12px;
}

.domain-box h3 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--text);
}

.domain-box p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.domain-box strong {
  color: var(--text);
  font-weight: 800;
}

.domain-box__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.domain-box__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.domain-box__list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  flex: 0 0 20px;
  color: #08110f;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  font-size: 0.75rem;
  font-weight: 900;
}

.domain-box__small {
  max-width: 860px;
  margin-top: 22px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: var(--muted) !important;
}

/* ===== MANTENIMIENTO ===== */

.maintenance {
  max-width: 980px;
  margin: clamp(32px, 5vw, 52px) auto 0;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(94, 234, 212, 0.055), transparent 38%),
    rgba(255,255,255,0.035);
}

.maintenance__head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.maintenance__head .eyebrow {
  justify-content: center;
  margin-bottom: 12px;
}

.maintenance__head h3 {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--text);
}

.maintenance__head p {
  max-width: 620px;
  margin: 14px auto 0;
  text-align: center;
  color: var(--muted);
  line-height: 1.65;
}

.maintenance__grid,
.maintenance__plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
  align-items: stretch;
}

.maintenance__card,
.maintenance__plan {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
}

.maintenance__card h4,
.maintenance__plan strong {
  display: block;
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.maintenance__price {
  display: block;
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.maintenance__price small {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.maintenance__card ul,
.maintenance__plan ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.maintenance__card li,
.maintenance__plan li {
  font-size: 0.92rem;
}

.maintenance__note {
  max-width: 620px;
  margin: 26px auto 0;
  padding: 14px 22px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, 0.22);
  background: rgba(94, 234, 212, 0.045);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.45;
}

/* ===== GARANTÍA ===== */

.guarantee {
  max-width: 640px;
  margin: 28px auto 0;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(34, 211, 168, 0.25);
  background: rgba(34, 211, 168, 0.06);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.guarantee strong {
  color: var(--accent);
}

.guarantee__icon {
  flex: 0 0 auto;
  font-size: 1.25rem;
  line-height: 1;
}

/* ===== RUBROS / INDUSTRIAS ===== */

.section--industries {
  padding-top: clamp(70px, 9vw, 110px);
  padding-bottom: clamp(70px, 9vw, 110px);
}

.section--industries .section__head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}


.section--industries .section__head p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.industries-grid {
  max-width: 940px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.industry-pill {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon desc";
  gap: 2px 12px;
  align-items: center;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  text-decoration: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.industry-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 234, 212, 0.34);
  background:
    linear-gradient(135deg, rgba(94,234,212,0.09), rgba(255,255,255,0.035));
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.industry-pill span {
  grid-area: icon;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(94, 234, 212, 0.08);
  font-size: 1rem;
}

.industry-pill strong {
  grid-area: title;
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.15;
}

.industry-pill small {
  grid-area: desc;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 650;
  line-height: 1.25;
}

.industries-note {
  margin: 28px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.industries-note a {
  color: var(--brand);
  font-weight: 850;
  text-decoration: none;
}

.industries-note a:hover {
  text-decoration: underline;
}

/* ===== CTA CONTEXTUALES ===== */

.section-cta {
  max-width: 920px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.026));
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.section-cta p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 700;
}

.section-cta .btn {
  flex: 0 0 auto;
}

.section-cta--dark {
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.10), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.section-cta--auto {
  border-color: rgba(124, 92, 255, 0.34);
  background:
    radial-gradient(circle at top right, rgba(124, 92, 255, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(124, 92, 255, 0.10), rgba(255,255,255,0.026));
}

.section-cta--auto p {
  color: rgba(255,255,255,0.74);
}

.section-cta--compact {
  margin-top: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    padding: 0 18px;
  }

  .hero__copy,
  .section__head,
  .lead,
  .muted,
  .h1,
  .h2,
  .pill,
  .btn {
    min-width: 0;
    max-width: 100%;
  }

  .h1 {
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }

  .h2 {
    font-size: clamp(1.7rem, 6.5vw, 2.2rem);
    margin-bottom: 12px;
  }

  .lead {
    font-size: 1rem;
    margin-bottom: 26px;
    line-height: 1.55;
  }

  .section-cta {
    padding: 18px;
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .section-cta .btn {
    width: 100%;
    white-space: normal;
  }

  .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 12px;
  }

  .nav__inner {
    height: 62px;
    gap: 12px;
  }

  .logo__mark {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }

  .logo__text {
    font-size: 0.98rem;
  }

  .logo--image {
    min-width: 96px;
    min-height: 42px;
  }

  .logo__image {
    width: auto;
    height: 42px;
    max-width: 98px;
  }

  .btn--sm {
    padding: 10px 16px;
    font-size: 0.85rem;
    min-height: 40px;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .hero {
    padding: 52px 0 68px;
  }

  .hero__inner {
    gap: 36px;
  }

  .pill {
    font-size: 0.76rem;
    padding: 6px 12px 6px 9px;
    margin-bottom: 18px;
    white-space: normal;
    border-radius: 18px;
  }

  .hero__ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 26px;
  }

  .hero__ctas .btn {
    flex: 1 1 100%;
    width: 100%;
    min-height: 52px;
  }

  .hero__meta {
    gap: 16px 20px;
    padding-top: 22px;
    max-width: 100%;
    font-size: 0.8rem;
  }

  .hero__meta li {
    flex: 1 0 40%;
  }

  .hero__meta strong {
    font-size: 1.1rem;
  }

  .hero__visual {
    min-height: auto;
    padding: 6px 0 4px;
  }

  .phone {
    transform: none;
    width: 280px;
    height: 560px;
  }

  .hero__visual:hover .phone {
    transform: none;
  }

  .phone__screen {
    padding: 50px 14px 14px;
    gap: 10px;
    border-radius: 32px;
  }

  .phone__hero {
    padding: 13px 12px 14px;
  }

  .phone__title {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .phone__island {
    width: 88px;
    height: 24px;
    top: 18px;
  }

  .phone__status {
    top: 20px;
    left: 22px;
    right: 22px;
    font-size: 0.68rem;
  }

  .phone__btn {
    display: none;
  }

  .phone__srv {
    padding: 8px 10px;
    font-size: 0.74rem;
  }

  .phone__srv-ic {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }

  .float {
    padding: 9px 12px;
    font-size: 0.76rem;
  }

  .float--wa {
    top: 9%;
    left: -4px;
  }

  .float--rate {
    bottom: 9%;
    right: -4px;
  }

  .float__avatars i,
  .phone__avatars i {
    width: 22px;
    height: 22px;
  }

  .section {
    padding: 56px 0;
  }

  .section__head {
    margin: 0 auto 36px;
  }

  .section__head .lead,
  .section__head .muted {
    font-size: 0.95rem;
  }

  .card,
  .feature {
    padding: 24px 20px;
  }

  .card h3,
  .feature h3 {
    font-size: 1.02rem;
  }

  .card p,
  .feature p {
    font-size: 0.92rem;
  }

  .card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .feature__num {
    margin-bottom: 12px;
  }

  .niches {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .niche {
    padding: 13px 16px;
    font-size: 0.9rem;
  }

  .niches__note {
    font-size: 0.9rem;
    margin-top: 22px;
  }

  .step {
    padding: 26px 22px;
  }

  .step h3 {
    font-size: 1.08rem;
  }

  .step__num {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .price {
    padding: 28px 22px;
  }

  .price--featured {
    transform: none;
  }

  .price--featured:hover {
    transform: translateY(-4px);
  }

  .price__head h3 {
    font-size: 1.1rem;
  }

  .price__amount {
    font-size: 2.1rem;
    margin-bottom: 18px;
  }

  .price__badge {
    font-size: 0.64rem;
    padding: 6px 12px;
    top: -12px;
    letter-spacing: 0.03em;
  }

  .price__list li {
    font-size: 0.92rem;
  }

  .domain-box__list,
  .maintenance__grid,
  .maintenance__plans {
    grid-template-columns: 1fr;
  }

  .domain-box,
  .maintenance {
    border-radius: 22px;
  }

  .maintenance__note {
    border-radius: 18px;
  }

  .guarantee {
    max-width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 22px 20px;
    gap: 10px;
    font-size: 0.92rem;
    margin-top: 28px;
  }

  .maintenance {
    margin-top: 36px;
    padding: 24px 20px;
  }

  .maintenance__head h3 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .maintenance__head p {
    font-size: 0.9rem;
  }

  .maintenance__card,
  .maintenance__plan {
    padding: 20px;
  }

  .maintenance__price {
    font-size: 1.15rem;
  }

  .usecase__thumb {
    aspect-ratio: 16 / 9;
  }

  .usecase__info {
    padding: 18px 18px 22px;
  }

  .usecase__info h3 {
    font-size: 1.04rem;
  }

  .usecase__info p {
    font-size: 0.88rem;
  }

  .usecase__icon {
    font-size: 2.2rem;
  }

  .testimonial {
    padding: 24px 22px;
    gap: 12px;
  }

  .testimonial::before {
    font-size: 3rem;
    top: 6px;
    right: 14px;
  }

  .testimonial p {
    font-size: 0.95rem;
  }

  .trust-bar {
    padding: 22px 16px;
    margin-top: 32px;
    gap: 16px;
  }

  .trust-bar strong {
    font-size: 1.4rem;
  }

  .trust-bar span {
    font-size: 0.78rem;
  }

  .faq__item {
    padding: 16px 18px;
  }

  .faq__item summary {
    font-size: 0.95rem;
    gap: 12px;
    line-height: 1.4;
  }

  .faq__item summary::after {
    font-size: 1.3rem;
    flex-shrink: 0;
  }

  .faq__item p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .cta {
    padding: 56px 0 80px;
  }

  .cta__box {
    padding: 48px 22px;
  }

  .cta__box .btn {
    width: 100%;
    min-height: 54px;
  }

  .footer {
    padding: 36px 0 0;
  }

  .footer__inner {
    padding-bottom: 28px;
    gap: 22px;
  }

  .footer__tag {
    font-size: 0.9rem;
  }

  .footer__contact {
    font-size: 0.9rem;
  }

  .footer__bottom {
    padding: 18px 0;
    font-size: 0.78rem;
  }

  .wa-float {
    width: 54px;
    height: 54px;
    bottom: 16px;
    right: 16px;
  }

  .wa-float svg {
    width: 26px;
    height: 26px;
  }

  .wa-float::before {
    display: none;
  }

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

  .industry-pill {
    min-height: 68px;
  }
}

@media (max-width: 380px) {
  .container {
    padding: 0 14px;
  }

  .logo__text {
    font-size: 0.92rem;
  }

  .logo--image {
    min-width: 86px;
  }

  .logo__image {
    width: auto;
    height: 38px;
    max-width: 88px;
  }

  .h1 {
    font-size: 1.95rem;
  }

  .phone {
    width: 260px;
    height: 520px;
  }

  .phone__screen {
    padding: 46px 12px 12px;
    gap: 8px;
  }

  .phone__island {
    width: 82px;
    height: 22px;
    top: 16px;
  }

  .phone__title {
    font-size: 0.9rem;
  }

  .price__amount {
    font-size: 1.85rem;
  }

  .hero__meta strong {
    font-size: 1.05rem;
  }

  .nav__links + .btn,
  .nav .btn--sm {
    padding: 9px 14px;
    font-size: 0.82rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    padding: 80px 0 90px;
  }

  .section {
    padding: 80px 0;
  }

  .section__head {
    margin-bottom: 44px;
  }

  .cta__box {
    padding: 60px 36px;
  }

  .hero__meta {
    gap: 24px;
  }

  .grid--demos {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== ACCESSIBILITY / REDUCED MOTION ===== */

.btn:focus-visible,
.nav__links a:focus-visible,
.faq__item summary:focus-visible,
.wa-float:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .phone {
    transform: perspective(1400px) rotateY(-10deg) rotateX(4deg) !important;
  }

  .phone__cta,
  .float--wa,
  .float--rate,
  .float--wa .float__icon,
  .float__typing i,
  .wa-float,
  .pill__dot {
    animation: none !important;
  }

  .btn--primary::after {
    display: none !important;
  }

  .btn:hover svg,
  .niche:hover,
  .card:hover,
  .feature:hover,
  .step:hover,
  .testimonial:hover,
  .price:hover,
  .price--featured:hover,
  .usecase:hover,
  .usecase:hover .usecase__thumb,
  .usecase:hover .usecase__tag,
  .usecase:hover .usecase__icon,
  .usecase:hover .usecase__cta,
  .btn--ghost:hover {
    transform: none !important;
    box-shadow: none !important;
    filter: none !important;
  }

  .faq__item[open] > *:not(summary) {
    animation: none !important;
  }
}

@media (hover: none) {
  .card:hover,
  .feature:hover,
  .step:hover,
  .price:hover,
  .testimonial:hover,
  .niche:hover,
  .usecase:hover,
  .industry-pill:hover {
    transform: none;
    box-shadow: none;
  }

  .usecase:hover .usecase__thumb {
    filter: none;
  }

  .usecase:hover .usecase__icon {
    transform: none;
  }

  .wa-float::before {
    display: none;
  }
}/* =========================================================
   WORDPRESS / BLOCKSY OVERRIDE FINAL
   Corrige contraste, títulos y legibilidad en WordPress
   ========================================================= */

body.is-landing72 {
  background: var(--bg) !important;
  color: var(--text) !important;
}

/* Forzar títulos claros porque Blocksy puede pisarlos */
body.is-landing72 h1,
body.is-landing72 h2,
body.is-landing72 h3,
body.is-landing72 h4,
body.is-landing72 h5,
body.is-landing72 h6,
body.is-landing72 .h1,
body.is-landing72 .h2,
body.is-landing72 .section__head h2,
body.is-landing72 .hero h1,
body.is-landing72 .price h3,
body.is-landing72 .feature h3,
body.is-landing72 .card h3,
body.is-landing72 .step h3,
body.is-landing72 .maintenance h3,
body.is-landing72 .maintenance h4,
body.is-landing72 .domain-box h3,
body.is-landing72 .cta h2 {
  color: var(--text) !important;
}

/* Textos secundarios */
body.is-landing72 p,
body.is-landing72 li,
body.is-landing72 .lead,
body.is-landing72 .muted,
body.is-landing72 .price__sub,
body.is-landing72 .feature p,
body.is-landing72 .card p,
body.is-landing72 .step p,
body.is-landing72 .faq__item p,
body.is-landing72 .maintenance__head p,
body.is-landing72 .domain-box p,
body.is-landing72 .footer__tag {
  color: var(--muted) !important;
}

/* Hero más fuerte */
body.is-landing72 .hero .h1 {
  color: var(--text) !important;
  opacity: 1 !important;
}

body.is-landing72 .hero .lead {
  color: #a8b1c7 !important;
}

/* Mantener verdes y acentos */
body.is-landing72 .grad,
body.is-landing72 .eyebrow,
body.is-landing72 .price--featured .price__amount,
body.is-landing72 .maintenance__price,
body.is-landing72 .industries-note a,
body.is-landing72 .niches__note a {
  color: var(--brand-2) !important;
}

/* Cards: mejorar lectura */
body.is-landing72 .feature,
body.is-landing72 .card,
body.is-landing72 .price,
body.is-landing72 .step,
body.is-landing72 .faq__item,
body.is-landing72 .testimonial,
body.is-landing72 .industry-pill,
body.is-landing72 .maintenance__card,
body.is-landing72 .maintenance__plan {
  background-color: var(--surface) !important;
  border-color: rgba(255, 255, 255, 0.11) !important;
}

/* Secciones oscuras más limpias */
body.is-landing72 .section--dark,
body.is-landing72 .footer {
  background: var(--bg-2) !important;
}

/* FAQ: títulos blancos */
body.is-landing72 .faq__item summary {
  color: var(--text) !important;
}

/* Pricing: listas más legibles */
body.is-landing72 .price__list li {
  color: #a8b1c7 !important;
}

/* Botones */
body.is-landing72 .btn--primary {
  background: var(--brand) !important;
  color: #05221a !important;
}

body.is-landing72 .btn--ghost {
  color: var(--text) !important;
  border-color: rgba(255,255,255,0.16) !important;
}

/* Footer */
body.is-landing72 .footer__contact a,
body.is-landing72 .footer__bottom {
  color: var(--muted) !important;
}

body.is-landing72 .footer__contact a:hover {
  color: var(--text) !important;
}
/* =========================================================
   MOBILE RESPONSIVE POLISH v1 — defensivo cross-device
   ========================================================= */
@media (max-width: 720px) {
  body.is-landing72, html { max-width: 100%; overflow-x: hidden; }
  body.is-landing72 img, body.is-landing72 svg { max-width: 100%; height: auto; }
}
@media (max-width: 430px) {
  body.is-landing72 .container { padding-left: 16px; padding-right: 16px; }
  body.is-landing72 .hero__cta { flex-direction: column; align-items: stretch; }
  body.is-landing72 .hero__cta .btn { width: 100%; flex: 1 1 100%; }
  body.is-landing72 .grid--pricing { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  body.is-landing72 h1 { font-size: clamp(1.75rem, 7.5vw, 2.1rem); line-height: 1.12; }
  body.is-landing72 .price__amount { font-size: clamp(1.9rem, 9vw, 2.5rem); }
}

/* ============================================================
   LANDING72 + AUTOMATIZACIONES — Extensión de estilos
   Acento: --auto #7c5cff | dim: rgba(124,92,255,.14)
   ============================================================ */

:root {
  --auto: #7c5cff;
  --auto-dim: rgba(124, 92, 255, .14);
  --auto-glow: rgba(124, 92, 255, .3);
}

/* Acento auto inline (phone screen) */
.auto-color { color: var(--auto); }
.auto-badge-inline {
  display: inline-block;
  background: var(--auto-dim);
  color: var(--auto);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
}

/* Float auto (hero) */
.float--auto {
  background: rgba(124, 92, 255, .15);
  border-color: rgba(124, 92, 255, .35);
}
.float__icon--auto {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--auto);
  border-radius: 50%;
  font-size: .9rem;
  flex-shrink: 0;
}

/* Eyebrow auto */
.eyebrow--auto {
  color: var(--auto);
  background: var(--auto-dim);
  border-radius: 100px;
  padding: 4px 14px;
}

/* ── SECCIÓN AUTOMATIZACIONES ──────────────────────────── */
.section--auto {
  background: linear-gradient(180deg, #0c0f1a 0%, #0e1021 100%);
  position: relative;
}
.section--auto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(124,92,255,.08) 0%, transparent 70%);
  pointer-events: none;
}

.auto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}

.auto-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, background .2s, transform .2s;
}
.auto-card:hover {
  border-color: rgba(124,92,255,.4);
  background: rgba(124,92,255,.07);
  transform: translateY(-3px);
}
.auto-card--featured {
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.auto-card__icon {
  font-size: 1.6rem;
  line-height: 1;
}
.auto-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #f0f0f0;
  margin: 0;
  line-height: 1.3;
}
.auto-card p {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.auto-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--auto);
  background: var(--auto-dim);
  border-radius: 100px;
  padding: 4px 10px;
  align-self: flex-start;
  margin-top: 4px;
}

/* ── FLUJO ─────────────────────────────────────────────── */
.flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 24px 20px;
  flex: 1 1 160px;
  max-width: 210px;
  transition: border-color .2s;
}
.flow__step--auto {
  border-color: rgba(124,92,255,.4);
  background: rgba(124,92,255,.09);
}
.flow__icon {
  font-size: 1.8rem;
  line-height: 1;
}
.flow__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.flow__body strong {
  font-size: .9rem;
  color: #f0f0f0;
  font-weight: 700;
}
.flow__body span {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
}
.flow__arrow {
  font-size: 1.5rem;
  color: var(--auto);
  font-weight: 700;
  flex-shrink: 0;
}
.flow__note {
  text-align: center;
  margin-top: 2rem;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
}
.flow__note a {
  color: var(--auto);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── PROCESO — PASO 4 AUTO ─────────────────────────────── */
.step--auto {
  border-color: rgba(124,92,255,.35);
  background: rgba(124,92,255,.07);
}
.step__num--auto {
  background: var(--auto) !important;
  color: #fff !important;
  box-shadow: 0 0 20px var(--auto-glow);
}
.step__time--auto {
  background: var(--auto-dim) !important;
  color: var(--auto) !important;
}

/* ── FEATURES — NÚMEROS AUTO ───────────────────────────── */
.feature__num--auto {
  background: var(--auto-dim) !important;
  color: var(--auto) !important;
  border-color: rgba(124,92,255,.3) !important;
}

/* ── ADD-ONS ────────────────────────────────────────────── */
.addons {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.addons__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.addons__head h3 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  color: #f0f0f0;
  margin: .5rem 0 .75rem;
}
.addons__head p {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  line-height: 1.6;
}
.addons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.addon-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.addon-card:hover { border-color: rgba(124,92,255,.4); transform: translateY(-3px); }
.addon-card--featured {
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.addon-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--auto);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.addon-card__tier {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--auto);
  letter-spacing: -.02em;
  line-height: 1;
}
.addon-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f0f0f0;
  margin: 0;
}
.addon-card__desc {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.addon-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.addon-card__list li {
  font-size: .84rem;
  color: rgba(255,255,255,.7);
  padding-left: 18px;
  position: relative;
}
.addon-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--auto);
  font-weight: 700;
}

/* Botón auto */
.btn--auto {
  background: var(--auto-dim);
  color: var(--auto);
  border: 1.5px solid rgba(124,92,255,.4);
}
.btn--auto:hover {
  background: var(--auto);
  color: #fff;
  border-color: var(--auto);
}

/* ── FORMULARIO AUTOMATIZADO ────────────────────────────── */
.section--contact { background: #0a0d14; }

.contact-wrap {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 36px 32px;
  margin-top: 2rem;
}

.auto-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  background: rgba(124,92,255,.1);
  border: 1px solid rgba(124,92,255,.25);
  border-radius: 100px;
  padding: 8px 16px;
  width: fit-content;
}
.auto-status__dot {
  width: 8px;
  height: 8px;
  background: var(--auto);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--auto);
  animation: pulse-auto 2s ease-in-out infinite;
}
@keyframes pulse-auto {
  0%, 100% { box-shadow: 0 0 4px var(--auto); }
  50% { box-shadow: 0 0 14px var(--auto), 0 0 28px var(--auto-glow); }
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .02em;
}
.form-group label span { color: var(--auto); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: .9rem;
  font-family: inherit;
  color: #f0f0f0;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input,
.form-group select {
  min-height: 52px;
  line-height: 1.35;
}

.form-group select {
  display: block;
  height: 52px;
  padding: 0 44px 0 14px;
  color: #f7fbff;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.78) 50%),
    linear-gradient(135deg, rgba(255,255,255,.78) 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 50%,
    calc(100% - 15px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-group select:required:invalid {
  color: rgba(255,255,255,.72);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group select option { background: #1a1d2e; color: #f0f0f0; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--auto);
  background: rgba(124,92,255,.08);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-actions { margin-top: 4px; }

/* Loading state del botón */
.btn__loading { display: none; }
.btn--sending .btn__text { display: none; }
.btn--sending .btn__loading { display: inline; }
.btn--sending { opacity: .7; pointer-events: none; }

/* Success y error */
.form-success,
.form-error {
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  margin-top: 8px;
}
.form-success {
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
}
.form-success__icon {
  width: 44px; height: 44px;
  background: rgba(16,185,129,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 12px;
  color: #10b981;
}
.form-success h3 { color: #10b981; font-size: 1.1rem; margin: 0 0 8px; }
.form-success p { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; }
.form-success a { color: #10b981; }
.form-error {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.25);
}
.form-error p { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; }
.form-error a { color: #ef4444; }

/* ── RESPONSIVE AUTO SECTIONS ───────────────────────────── */
@media (max-width: 900px) {
  .auto-grid { grid-template-columns: repeat(2, 1fr); }
  .addons__grid { grid-template-columns: repeat(2, 1fr); }
  .flow { gap: 8px; }
  .flow__step { max-width: 180px; padding: 18px 14px; }
  .flow__arrow { font-size: 1.2rem; }
}

@media (max-width: 640px) {
  .auto-grid { grid-template-columns: 1fr; }
  .addons__grid { grid-template-columns: 1fr; }
  .flow { flex-direction: column; align-items: stretch; }
  .flow__step { max-width: 100%; flex-direction: row; text-align: left; gap: 14px; padding: 16px 18px; }
  .flow__arrow { transform: rotate(90deg); align-self: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-wrap { padding: 24px 18px; }
  .auto-status { font-size: .78rem; }
  .addon-card__badge { font-size: .65rem; }
}

/* ============================================================
   CORRECCIONES v1.1 — Post-auditoría
   ============================================================ */

/* ── GRID 4 ITEMS (2×2) — para sección Problema ─────────── */
.grid--4 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── STEPS 4 COLUMNAS — para sección Proceso ────────────── */
@media (min-width: 820px) {
  .steps--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .steps--4::before {
    left: 8%;
    right: 8%;
  }
  .steps--4 .step {
    padding: 24px 20px;
  }
  .steps--4 .step h3 {
    font-size: 1rem;
  }
}

/* ── RUBROS 2 COLUMNAS EN MOBILE ─────────────────────────── */
@media (max-width: 760px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
@media (max-width: 340px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* ── HAMBURGER MENU ──────────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.nav__hamburger:hover {
  border-color: rgba(16,185,129,0.4);
  background: rgba(16,185,129,0.06);
}
.nav__hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s, width 0.3s;
  transform-origin: center;
}

/* Estado abierto */
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 899px) {
  .nav__hamburger { display: flex; }
  .nav__wa { display: none; }

  /* Menú mobile desplegable */
  .nav__links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(10, 13, 20, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-strong);
    padding: 0 20px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s var(--ease), padding 0.38s var(--ease);
    z-index: 49;
  }
  .nav__links.is-open {
    max-height: 380px;
    padding: 16px 20px 24px;
  }
  .nav__links a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, padding-left 0.2s;
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav__links a:hover { color: var(--text); padding-left: 6px; }
  .nav__links a::after { display: none; }

  /* WhatsApp button dentro del menú mobile */
  .nav__links::after {
    content: '';
    display: block;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
}

/* ─── SECCIÓN ALIADOS ─────────────────────────────────────────────── */

.section--aliados {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.aliado-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}

.aliado-card:hover {
  border-color: var(--auto);
  transform: translateY(-5px);
}

.aliado-card__icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}

.aliado-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}

.aliado-card p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ===== PRODUCCION WORDPRESS - AUTOMATIZACIONES ===== */
body.is-landing72-automatizaciones {
  background: var(--bg) !important;
  color: var(--text) !important;
}

body.is-landing72-automatizaciones h1,
body.is-landing72-automatizaciones h2,
body.is-landing72-automatizaciones .h1,
body.is-landing72-automatizaciones .h2,
body.is-landing72-automatizaciones .section__head h2,
body.is-landing72-automatizaciones .cta h2 {
  color: var(--text) !important;
  opacity: 1 !important;
}

body.is-landing72-automatizaciones .grad,
body.is-landing72-automatizaciones .eyebrow {
  color: var(--brand-2) !important;
}

body.is-landing72-automatizaciones .form-group select {
  color: #f7fbff !important;
  line-height: 1.35 !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.is-landing72 .logo__image,
body.is-landing72-automatizaciones .logo__image {
  width: auto !important;
  height: 48px !important;
  max-width: 116px !important;
  object-fit: contain !important;
}

body.is-landing72 .footer .logo__image,
body.is-landing72-automatizaciones .footer .logo__image {
  width: 150px !important;
  height: auto !important;
  max-width: 150px !important;
}

@media (max-width: 760px) {
  body.is-landing72 .container > *,
  body.is-landing72-automatizaciones .container > *,
  body.is-landing72 .hero__inner,
  body.is-landing72-automatizaciones .hero__inner,
  body.is-landing72 .hero__copy,
  body.is-landing72-automatizaciones .hero__copy,
  body.is-landing72 .section__head,
  body.is-landing72-automatizaciones .section__head,
  body.is-landing72 .grid,
  body.is-landing72-automatizaciones .grid {
    min-width: 0;
    max-width: 100%;
  }

  body.is-landing72 .h1,
  body.is-landing72-automatizaciones .h1,
  body.is-landing72 .h2,
  body.is-landing72-automatizaciones .h2,
  body.is-landing72 p,
  body.is-landing72-automatizaciones p {
    overflow-wrap: anywhere;
  }

  body.is-landing72 .pill,
  body.is-landing72-automatizaciones .pill,
  body.is-landing72 .hero__ctas .btn,
  body.is-landing72-automatizaciones .hero__ctas .btn {
    max-width: 100%;
    white-space: normal !important;
  }

  body.is-landing72 .logo__image,
  body.is-landing72-automatizaciones .logo__image {
    height: 42px !important;
    max-width: 98px !important;
  }
}

@media (max-width: 380px) {
  body.is-landing72 .logo__image,
  body.is-landing72-automatizaciones .logo__image {
    height: 38px !important;
    max-width: 88px !important;
  }
}
