:root {
  --color-bg: #050816;
  --color-bg-alt: #0b1020;
  --color-primary: #3b82f6;
  --color-primary-soft: rgba(59,130,246,0.12);
  --color-accent: #22c55e;
  --color-text: #e5e7eb;
  --color-text-soft: #9ca3af;
  --color-border: #1f2937;
  --max-width: 1120px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 40px rgba(0,0,0,0.45);
  --transition-fast: 0.2s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 40%, #000 100%);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */
.page {
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(2,6,23,0.94), rgba(2,6,23,0.8), transparent);
  border-bottom: 1px solid rgba(148,163,184,0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 0, #38bdf8, #6366f1, #0f172a);
  box-shadow: 0 0 30px rgba(59,130,246,0.6);
  font-size: 0.9rem;
}

.logo-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-soft);
  font-weight: 400;
}

.logo-img {
  height: 32px;
  width: auto;
  margin-right: 10px;
  object-fit: contain;
  mask-image: radial-gradient(circle, white 60%, transparent 100%); /* difumina bordes */
  border-radius: 12px;
}


.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--color-text-soft);
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn,
button {
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #6366f1);
  color: white;
  box-shadow: 0 12px 30px rgba(37,99,235,0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37,99,235,0.65);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-soft);
  border-radius: 999px;
}

.btn-ghost span {
  font-size: 1.05rem;
}

/* Hero */
.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.6fr);
  gap: 2.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(148,163,184,0.35);
  font-size: 0.72rem;
  color: var(--color-text-soft);
  margin-bottom: 0.85rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #22c55e, #16a34a);
  box-shadow: 0 0 16px rgba(22,163,74,0.9);
}

.hero h1 {
  font-size: clamp(2.1rem, 3.1vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.hero h1 span {
  background: linear-gradient(120deg, #60a5fa, #a855f7, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--color-text-soft);
  font-size: 0.98rem;
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.hero-pill {
  font-size: 0.78rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.35);
  background: rgba(15,23,42,0.85);
  color: var(--color-text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-note span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Demo 2.0 del hero */
.hero-demo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-card {
  background: radial-gradient(circle at top left, rgba(59,130,246,0.35), rgba(15,23,42,0.98));
  border: 1px solid rgba(148,163,184,0.25);
  padding: 22px 20px;
  border-radius: 18px;
  width: 320px;
  max-width: 100%;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  animation: demoEnter 0.9s ease-out both;
}

.demo-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0, #4ade80, #22c55e, #14532d);
  box-shadow: 0 0 18px rgba(34,197,94,0.8);
}

.demo-icon span {
  font-size: 1.3rem;
}

.demo-card h3 {
  margin: 0 0 14px 0;
  font-size: 1.05rem;
  color: #e5e7eb;
  text-align: center;
  font-weight: 600;
}

.demo-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.demo-stats .stat {
  background: rgba(15,23,42,0.9);
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.35);
}

.demo-stats .stat-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #bfdbfe;
}

.demo-stats .stat-label {
  font-size: 0.78rem;
  color: rgba(209,213,219,0.8);
}

.demo-footer {
  margin-top: 4px;
  font-size: 0.86rem;
  text-align: center;
  color: rgba(226,232,240,0.9);
}

/* Animación demo */
@keyframes demoEnter {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.demo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(15,23,42,0.8);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}






/* Sections */
section {
  padding: 2.6rem 0 2.2rem;
}

.section-header {
  margin-bottom: 1.8rem;
  max-width: none;
}

.section-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: #8FA3C5;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.section-description {
  font-size: 1rem;
  color: #A7B3C8;
  max-width: 60rem;  /* opcional para que sea legible */
}









/* Proceso / Steps premium */
.process-section {
  padding-top: 2.8rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.step {
  position: relative;
  background: radial-gradient(circle at top left, rgba(56,189,248,0.12), rgba(15,23,42,0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148,163,184,0.38);
  padding: 1.4rem 1.3rem 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-soft);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(96,165,250,0.14), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(96,165,250,0.8);
  box-shadow: 0 26px 60px rgba(15,23,42,0.95);
}

.step:hover::before {
  opacity: 1;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #38bdf8, #6366f1);
  border: 1px solid rgba(191,219,254,0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e5f2ff;
  margin-bottom: 0.55rem;
  box-shadow: 0 0 18px rgba(59,130,246,0.8);
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.35rem;
}

.step p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Problem / Solution + tarjetas genéricas */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148,163,184,0.35);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 0.6rem;
}

.card p,
.card-lead {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #b0b9c9;
  margin-bottom: 0.9rem;
}

/* etiqueta "Situación actual / Lo que hacemos en ICL" */
.card-label {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(148,163,184,0.45);
  color: #cbd5f5;
}

.card-label-positive {
  background: rgba(22,163,74,0.12);
  border-color: rgba(34,197,94,0.75);
  color: #bbf7d0;
}

/* lista sin viñeta doble */
ul.list {
  list-style: none;
  margin: 0;
  padding-left: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: #c3cee0;
}

ul.list li {
  position: relative;
  padding-left: 1.1rem;
}

ul.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--color-primary);
  font-size: 1rem;
}

/* Responsive para problema/solución */
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}








/* Packages */
.packages {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1.2rem;
}

.package {
  position: relative;
  padding: 1.7rem 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 16px 35px rgba(0,0,0,0.28);
  transition: transform .25s ease, box-shadow .25s ease, border .25s ease;
  margin-bottom: 2rem;
}

.package:hover {
  transform: translateY(-6px);
  border-color: rgba(96,165,250,0.4);
  box-shadow: 0 22px 55px rgba(0,0,0,0.55);
}

.package.featured {
  border-color: rgba(96,165,250,0.7);
  box-shadow: 0 28px 65px rgba(37,99,235,0.45);
  transform: translateY(-4px);
}

.package.featured:hover {
  transform: translateY(-10px);
}

.package-tag {
  position: absolute;
  top: -10px;
  right: 1rem;
  font-size: .7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(59,130,246,0.18);
  color: #bfdbfe;
  border: 1px solid rgba(96,165,250,0.7);
  box-shadow: 0 2px 6px rgba(0,0,0,.4);
}

.package h3 {
  font-size: 1.25rem;
  margin-bottom: .4rem;
  font-weight: 600;
}

.package-sub {
  font-size: .9rem;
  color: var(--color-text-soft);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.package-price {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.package-price span {
  font-size: 0.75rem;
  color: var(--color-text-soft);
}

.package ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.2rem;
  display: grid;
  gap: .5rem;
  font-size: .9rem;
  line-height: 1.45;
}

.package ul li::before {
  content: "✔";
  color: var(--color-accent);
  margin-right: 0.35rem;
  font-size: 0.72rem;
}

.package-footer {
  font-size: .82rem;
  color: #9aa4b8;
  line-height: 1.45;
}


.package-compare-wrapper {
  margin-top: 2.5rem;
}

.package-compare-title {
  font-size: 1rem;
  margin-bottom: 0.9rem;
  color: var(--color-text);
}

.package-compare {
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.35);
  background: rgba(15,23,42,0.9);
  overflow-x: auto;
  box-shadow: 0 14px 32px rgba(0,0,0,0.45);
}

.pc-row {
  display: grid;
  /* columna de etiquetas más ancha, pero todo fluido */
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(30,41,59,0.9);
  font-size: 0.82rem;
}


.pc-row:last-child {
  border-bottom: none;
}

.pc-cell {
  padding: 0.6rem 0.9rem;
  text-align: center;
}

.pc-label {
  text-align: left;
  font-weight: 500;
  color: #cbd5f5;
}

.pc-header {
  background: linear-gradient(to right, rgba(30,64,175,0.7), rgba(37,99,235,0.5));
  font-weight: 600;
}

.pc-header .pc-cell {
  color: #e5e7eb;
}

.pc-col {
  border-left: 1px solid rgba(15,23,42,0.9);
}

.pc-row:nth-child(odd):not(.pc-header) {
  background: rgba(15,23,42,0.9);
}

.pc-row:nth-child(even):not(.pc-header) {
  background: rgba(15,23,42,0.96);
}

.pc-row .pc-cell:nth-child(n+2) {
  font-weight: 500;
}

.package-compare-note {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Grid base de Casos */
.cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}





/* Casos / Projects */
/* ----------- CAJAS BASE ----------- */
.case {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem;
  border: 1px solid rgba(148,163,184,0.14);
  box-shadow: 0 10px 32px rgba(0,0,0,0.35);
}

/* ----------- VARIANTES DE FONDO ----------- */
.case-variant-1 {
  background: linear-gradient(145deg, rgba(30,41,59,0.9), rgba(11,15,28,0.9));
}

.case-variant-2 {
  background: linear-gradient(145deg, rgba(23,32,52,0.9), rgba(10,12,26,0.9));
}

.case-variant-3 {
  background: linear-gradient(145deg, rgba(25,22,48,0.9), rgba(14,14,24,0.9));
}

/* ----------- PILL ----------- */
.case-pill {
  font-size: 0.75rem;
  color: #93a3c7;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ----------- TITULOS ----------- */
.case h3 {
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  color: #e2e8f0;
}

/* ----------- SECCIONES ----------- */
.case-section h4 {
  font-size: 0.82rem;
  color: #bcd0ff;
  margin-bottom: 0.2rem;
}

.case-section p {
  font-size: 0.88rem;
  color: #c9d3e5;
  line-height: 1.55;
}

/* ----------- SEPARADOR ----------- */
.case-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(148,163,184,0.06),
    rgba(148,163,184,0.32),
    rgba(148,163,184,0.06)
  );
  margin: 0.9rem 0;
}



/* Responsive: Casos en 1–2 columnas */
@media (max-width: 900px) {
  .cases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .cases {
    grid-template-columns: minmax(0, 1fr);
  }
}








/* About / Nosotros – versión premium */
.about-section {
  padding-top: 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  align-items: stretch;
}

/* Cada columna como tarjetón */
.about-grid > div {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 22px;
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  background: radial-gradient(circle at top left,
              rgba(37,99,235,0.18),
              rgba(15,23,42,0.98));
  overflow: hidden;
}

/* Lado derecho con ligero matiz distinto */
.about-grid > div:last-child {
  background: radial-gradient(circle at top right,
              rgba(56,189,248,0.18),
              rgba(15,23,42,0.98));
}

/* Brillito suave en la parte superior */
.about-grid > div::before {
  content: "";
  position: absolute;
  inset: -40% 10% auto;
  height: 60%;
  background: radial-gradient(circle at top,
              rgba(129,140,248,0.25),
              transparent 60%);
  opacity: 0.35;
  pointer-events: none;
}

/* Badge de arriba (“+15 años…”, “Cómo trabajo…”) */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cbd5f5;
  padding: 0.18rem 0.75rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.95);
  border: 1px solid rgba(148,163,184,0.55);
  position: relative;
  z-index: 1;
  margin-bottom: 0.9rem;
}

/* Texto principal */
.about-highlight {
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
  color: #e5e7eb;
  position: relative;
  z-index: 1;
}

.about-highlight strong {
  color: #bfdbfe;
}

/* Lista de bullets */
.about-list {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: #cbd5f5;
  position: relative;
  z-index: 1;
}

.about-list li::before {
  content: "▹";
  color: var(--color-primary);
  margin-right: 0.35rem;
}

/* Nube de tags (lado derecho) */
.about-taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
  position: relative;
  z-index: 1;
}

.about-tag {
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.92);
  border: 1px solid rgba(148,163,184,0.6);
  color: #e5e7eb;
  font-size: 0.78rem;
  white-space: nowrap;
}



/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(0,1fr);
  }
}





/* CONTACTO */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 1.8rem;
}

/* Tarjeta principal de contacto */
.contact-card {
  position: relative;
  border-radius: 22px;
  padding: 1.7rem 1.7rem 1.5rem;
  background: radial-gradient(circle at top left,
              rgba(59,130,246,0.22),
              rgba(15,23,42,0.98));
  border: 1px solid rgba(148,163,184,0.45);
  box-shadow: 0 20px 48px rgba(0,0,0,0.65);
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: -40% 5% auto;
  height: 60%;
  background: radial-gradient(circle at top,
              rgba(129,140,248,0.35),
              transparent 60%);
  opacity: 0.45;
  pointer-events: none;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}

.contact-lead {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin-bottom: 1.1rem;
  max-width: 28rem;
  position: relative;
  z-index: 1;
}

.contact-card form {
  display: grid;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.3rem;
}

/* Botón WhatsApp estilo oficial */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  background: #25d366; /* verde WhatsApp */
  color: #0e1726; /* texto oscuro elegante */
  border: 1px solid #128c7e;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
}

.btn-whatsapp:active {
  transform: translateY(1px);
}


.contact-disclaimer {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--color-text-soft);
  position: relative;
  z-index: 1;
}

/* Lado consultoría */
.contact-side-panel {
  border-radius: 22px;
  padding: 1.6rem 1.6rem 1.4rem;
  background: radial-gradient(circle at top right,
              rgba(56,189,248,0.16),
              rgba(15,23,42,0.98));
  border: 1px solid rgba(148,163,184,0.45);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-side-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #e5e7eb;
}

.contact-checklist {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: #cbd5f5;
  padding-left: 0;
  margin: 0;
}

.contact-checklist li::before {
  content: "▹";
  color: var(--color-primary);
  margin-right: 0.35rem;
}

/* Meta de contacto */
.contact-meta {
  display: grid;
  gap: 0.55rem;
  font-size: 0.84rem;
}

.contact-meta-item {
  display: grid;
  gap: 0.05rem;
}

.contact-meta-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.contact-meta-value {
  color: #e5e7eb;
}

.contact-side-note {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

/* Responsive Contact */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .contact-card,
  .contact-side-panel {
    border-radius: 20px;
  }
}

@media (max-width: 600px) {
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-wa-btn {
    justify-content: center;
  }
}

/* Inputs y textarea – estilo oscuro premium */
input,
textarea {
  background: rgba(15,23,42,0.95);
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.4);
  padding: 0.55rem 0.65rem;
  color: var(--color-text);
  font-size: 0.88rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148,163,184,0.6);
}

/* Hover */
input:hover,
textarea:hover {
  border-color: rgba(148,163,184,0.65);
}

/* Focus */
input:focus,
textarea:focus {
  border-color: rgba(96,165,250,0.9);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.55);
  background: rgba(15,23,42,1);
}

/* Altura mínima del textarea */
textarea {
  min-height: 110px;
  resize: vertical;
}





/* Footer */
footer {
  border-top: 1px solid rgba(30,64,175,0.7);
  padding: 1.3rem 0 1.4rem;
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .grid-2,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero-card {
    order: -1;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 800px) {
  .packages {
    grid-template-columns: minmax(0,1fr);
  }

  .steps {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .cases {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 600px) {
  .steps {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 600px) {
  .logo-img {
    height: 26px;
  }
}

@media (max-width: 900px) {
  .hero-demo {
    margin-top: 2.2rem;
  }

  .demo-card {
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .demo-card {
    padding: 20px 18px;
  }

  .demo-stats .stat {
    padding: 8px 10px;
  }
}

@media (max-width: 600px) {
  .demo-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .demo-card h3 {
    font-size: 1rem;
  }
}


@media (max-width: 700px) {
  .package-compare {
    font-size: 0.78rem;
  }

  .pc-cell {
    padding: 0.45rem 0.55rem;
  }
}


/* THANK YOU / GRACIAS */
.thanks-hero {
  padding: 4rem 0 3rem;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
}

.thanks-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.2rem 2rem 2rem;
  border-radius: 24px;
  background: radial-gradient(circle at top left,
              rgba(59,130,246,0.22),
              rgba(15,23,42,0.98));
  border: 1px solid rgba(148,163,184,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.75);
  text-align: center;
}

.thanks-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: rgba(22,163,74,0.16);
  border: 1px solid rgba(34,197,94,0.9);
  box-shadow: 0 0 22px rgba(34,197,94,0.7);
  font-size: 1.6rem;
}

.thanks-card h1 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.thanks-card p {
  font-size: 0.98rem;
  color: var(--color-text-soft);
  margin-bottom: 1.4rem;
}

.thanks-meta {
  display: grid;
  gap: 0.7rem;
  text-align: left;
  margin-bottom: 1.6rem;
  font-size: 0.88rem;
}

.thanks-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #9ca3af;
}

.thanks-value {
  color: #e5e7eb;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.btn-secondary-outline {
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-size: 0.9rem;
  border: 1px solid rgba(148,163,184,0.7);
  background: transparent;
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-secondary-outline:hover {
  background: rgba(15,23,42,0.9);
  border-color: rgba(209,213,219,0.9);
  transform: translateY(-1px);
}

.btn-whatsapp {
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-size: 0.9rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #22c55e;
  background: linear-gradient(135deg,#22c55e,#16a34a);
  color: #ecfdf5;
  box-shadow: 0 14px 35px rgba(22,163,74,0.6);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp::before {
  content: "󰖣";
  /* si no tienes icon font, puedes cambiar por "💬" */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(22,163,74,0.85);
}

.thanks-note {
  font-size: 0.8rem;
  color: #9ca3af;
}

@media (max-width: 600px) {
  .thanks-card {
    padding: 1.8rem 1.4rem 1.6rem;
  }

  .thanks-meta {
    font-size: 0.84rem;
  }

  .thanks-actions {
    flex-direction: column;
  }

  .btn-secondary-outline,
  .btn-whatsapp {
    justify-content: center;
    width: 100%;
  }
}


