/* espacioonline · landing
   Estética: profesional, con más color y respiración. Paleta dark navy + acento esmeralda. */

:root {
  --bg: #eef0f3;
  --bg-2: #e3e6eb;
  --bg-soft: #d8dde3;
  --bg-cream: #eceadf;
  --bg-panel: #ffffff;
  --bg-dark: #0e1726;
  --bg-dark-2: #1a2438;
  --ink: #0e1726;
  --ink-2: #4b5773;
  --ink-3: #8896ab;
  --line: #ced3db;
  --line-dark: #b2b9c4;
  --accent: #0d9488;
  --accent-soft: #d1fae5;
  --accent-hover: #0f766e;
  --max: 1100px;
  --pad-x: 2rem;
  --radius: 10px;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}
@media (max-width: 600px) { :root { --pad-x: 1.25rem; } }

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
.code, .caso-url {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  font-size: .88em;
  background: rgba(184, 84, 59, .08);
  color: var(--accent-hover);
  padding: 1px 7px;
  border-radius: 4px;
  border: 1px solid rgba(184, 84, 59, .18);
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.wrap.narrow { max-width: 740px; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(238, 240, 243, .9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--pad-x);
}
.brand {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -.02em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .55rem;
}
.brand-mark {
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-dot { display: none; }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important;
  color: #fff !important;
  padding: .55rem 1.05rem;
  border-radius: 7px;
  font-weight: 600;
}
.nav-cta:hover { background: #1f2937 !important; color: #fff !important; }
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============ HERO ============ */
.hero {
  padding: 3rem 0 3.8rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-cloud { max-width: 220px; margin: 0 auto; }
}
.hero-text { display: flex; flex-direction: column; align-items: flex-start; }
.hero-cloud {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  margin-left: auto;
  position: relative;
}
.hero-cloud svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 12px 30px rgba(13, 148, 136, .25)); }
@keyframes hero-cloud-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero-cloud { animation: hero-cloud-float 4s ease-in-out infinite; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--bg-panel);
  border: 1px solid var(--line);
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
  box-shadow: 0 1px 2px rgba(14, 23, 38, .04);
}
.hero-tag-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, .2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(13, 148, 136, .2); }
  50% { box-shadow: 0 0 0 6px rgba(13, 148, 136, .05); }
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--ink);
  text-align: left;
}
.hero-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #0c7a8c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(.96rem, 1.1vw, 1.03rem);
  color: var(--ink-2);
  margin: 0 0 1.6rem;
  max-width: 480px;
  line-height: 1.55;
  text-align: left;
}
.hero-actions {
  display: flex; gap: .65rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: .85rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .94rem;
  letter-spacing: -.005em;
  transition: background .15s, transform .08s;
  display: inline-flex; align-items: center; gap: .4rem;
  box-shadow: 0 2px 8px rgba(14, 23, 38, .15);
}
.btn-primary:hover { background: #1f2937; }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost {
  color: var(--ink);
  text-decoration: none;
  padding: .85rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .94rem;
  border: 1px solid var(--line-dark);
  background: var(--bg-panel);
  transition: border-color .15s, background .15s;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-cream); }

.hero-meta {
  display: inline-flex;
  align-items: stretch;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  gap: 1.5rem;
  box-shadow: 0 4px 16px rgba(14, 23, 38, .04);
}
.meta-item { text-align: left; padding: 0 .4rem; }
.meta-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.meta-label {
  font-size: .73rem;
  color: var(--ink-3);
  margin-top: .2rem;
  letter-spacing: .01em;
}
.meta-divisor { width: 1px; background: var(--line); }
@media (max-width: 600px) {
  .hero-meta { flex-direction: column; gap: .8rem; padding: 1rem 1.2rem; }
  .meta-divisor { width: 100%; height: 1px; }
  .meta-item { text-align: center; }
}

/* ============ SECCIONES BASE ============ */
.seccion { padding: 4rem 0; }
@media (max-width: 720px) { .seccion { padding: 3rem 0; } }
.section-h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.025em;
  margin: 0 0 .8rem;
  line-height: 1.2;
  color: var(--ink);
}
.section-h2.white { color: #fff; }
.section-sub {
  color: var(--ink-2);
  font-size: 1rem;
  margin: 0 0 2.6rem;
  max-width: 620px;
  line-height: 1.6;
}
.section-sub.white { color: rgba(255,255,255,.7); }
.lead {
  font-size: 1.06rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0 0 1.2rem;
}
.lead-link {
  color: var(--accent-hover);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  font-weight: 600;
}
.lead-link:hover { color: var(--ink); }
.bg-soft { background: var(--bg-soft); position: relative; z-index: 0; }
.bg-dark { background: var(--bg-dark); color: rgba(255,255,255,.85); }

.kicker {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .72rem;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.kicker::before {
  content: "→";
  color: var(--accent);
  font-weight: 700;
}
.kicker.accent { color: rgba(255,255,255,.65); }
.kicker.accent::before { color: #5eead4; }

/* ============ TRUST BAR ============ */
.trustbar {
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}
.trustbar-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: .89rem;
  color: var(--ink-2);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  line-height: 1.35;
}
.trust-item strong { color: var(--ink); font-weight: 700; }
.trust-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  border-radius: 50%;
  flex-shrink: 0;
}
.trust-wa {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: .65rem 1.1rem;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  transition: background .15s;
}
.trust-wa:hover { background: var(--accent-hover); }
@media (max-width: 820px) {
  .trustbar-row { gap: 1rem; }
  .trust-wa { margin-left: 0; width: 100%; justify-content: center; }
}

/* POR QUÉ / PARA QUIÉN */
.por-que {
  padding: 4rem 0 3.5rem;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--line);
}
.por-que .section-h2 { margin-bottom: 1.4rem; }
.por-que-chips {
  display: flex; flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
}
.pq-chip {
  display: inline-flex; align-items: center;
  padding: .5rem 1rem;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .15s, transform .12s;
  cursor: default;
}
.pq-chip:hover { border-color: var(--accent); transform: translateY(-1px); }
.pq-chip::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: .5rem;
}

/* ============ PASOS ============ */
.pasos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
@media (max-width: 820px) {
  .pasos { grid-template-columns: 1fr; gap: 1rem; }
}
.paso {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.paso:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 23, 38, .08);
}
.paso-num {
  font-family: "JetBrains Mono", monospace;
  font-size: .82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: .04em;
  padding: .25rem .55rem;
  background: var(--accent-soft);
  border-radius: 4px;
  display: inline-block;
}
.paso h3 {
  font-size: 1.13rem;
  font-weight: 700;
  margin: 0 0 .6rem;
  letter-spacing: -.015em;
  color: var(--ink);
}
.paso p {
  color: var(--ink-2);
  font-size: .93rem;
  margin: 0;
  line-height: 1.6;
}

/* ============ PLANES ============ */
.planes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
  margin: 2rem 0 1.5rem;
}
@media (max-width: 740px) {
  .planes { grid-template-columns: 1fr; }
}
.plan {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2.2rem 1.9rem;
  display: flex; flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.plan:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(14, 23, 38, .08); }
.plan-dest {
  border: 2px solid var(--accent);
  position: relative;
  background: linear-gradient(180deg, var(--bg-panel) 0%, rgba(184, 84, 59, .03) 100%);
  box-shadow: 0 12px 32px rgba(184, 84, 59, .14);
}
.plan-dest:hover { box-shadow: 0 16px 40px rgba(184, 84, 59, .18); }
.plan-dest::before {
  content: "→ recomendado para empezar";
  position: absolute;
  top: -.6rem; left: 1.9rem;
  background: var(--bg);
  color: var(--accent-hover);
  padding: 0 .6rem;
  font-family: "JetBrains Mono", monospace;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0;
}
.plan-tag {
  font-size: .76rem;
  color: var(--ink-2);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.plan-price {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1;
  margin-bottom: 1.7rem;
  color: var(--ink);
}
.plan-price-note {
  font-family: "JetBrains Mono", monospace;
  font-size: .9rem;
  font-weight: 500;
  color: var(--accent-hover);
  background: var(--accent-soft);
  padding: .45rem .85rem;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 1.4rem;
  letter-spacing: -.005em;
}
.plan-currency {
  font-size: 1.3rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: .15rem;
  color: var(--ink-2);
}
.plan-period {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-2);
  margin-left: .15rem;
}
.plan-from {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: .25rem;
}
.plan-desc {
  font-size: .92rem;
  color: var(--ink-2);
  margin: -.5rem 0 1.3rem;
  line-height: 1.55;
  min-height: 2.6em;
}
.plan-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  flex: 1;
}
.plan-lista li {
  position: relative;
  padding: .55rem 0 .55rem 1.85rem;
  font-size: .94rem;
  color: var(--ink);
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}
.plan-lista li:last-child { border-bottom: 0; }
.plan-lista li::before {
  content: "—";
  position: absolute;
  left: 0; top: .55rem;
  color: var(--accent);
  font-weight: 700;
  font-family: "JetBrains Mono", monospace;
}
.plan-cta {
  background: var(--ink);
  color: #fff;
  padding: .9rem 1.2rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: background .15s;
}
.plan-cta:hover { background: #1f2937; }
.plan-dest .plan-cta { background: var(--accent); }
.plan-dest .plan-cta:hover { background: var(--accent-hover); }
.planes-nota {
  text-align: center;
  color: var(--ink-2);
  font-size: .9rem;
  margin: 1.5rem 0 0;
}

/* Card "necesitas algo más grande" */
.plan-custom {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, var(--bg-panel) 0%, var(--bg-cream) 100%);
  border: 1px dashed var(--line-dark);
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
}
.pc-icon {
  width: 48px; height: 48px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.plan-custom > div:nth-child(2) {
  flex: 1; min-width: 200px;
  display: flex; flex-direction: column; gap: .2rem;
}
.plan-custom strong {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
.plan-custom span {
  font-size: .9rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.pc-cta {
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: .75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  transition: background .15s;
}
.pc-cta:hover { background: var(--accent-hover); }
@media (max-width: 600px) {
  .plan-custom { padding: 1.4rem 1.3rem; }
  .pc-cta { width: 100%; text-align: center; }
}

/* ============ CASO / TRABAJOS ============ */
.caso {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.caso-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.caso-header .section-sub { margin-left: auto; margin-right: auto; }

/* Grid de tiles: escala con N clientes */
.casos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.4rem;
}
.caso-tile {
  display: flex;
  flex-direction: column;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.caso-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(14, 23, 38, .10);
  border-color: var(--ink-3);
}
.caso-tile-shot {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.caso-tile-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .4s ease;
}
.caso-tile:hover .caso-tile-shot img { transform: scale(1.03); }
.caso-tile-meta {
  padding: 1.2rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.caso-tile-tipo {
  font-family: "JetBrains Mono", monospace;
  font-size: .68rem;
  color: var(--ink-2);
  letter-spacing: .02em;
  margin-bottom: .15rem;
}
.caso-tile-nombre {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
}
.caso-tile-desc {
  font-size: .9rem;
  color: var(--ink-2);
  line-height: 1.5;
  margin: .1rem 0 .25rem;
}
.caso-tile-link {
  font-family: "JetBrains Mono", monospace;
  font-size: .76rem;
  color: var(--accent-hover);
  margin-top: .4rem;
}

/* Placeholder "el siguiente puede ser el tuyo" */
.caso-tile-empty {
  cursor: default;
  background: transparent;
  border: 1px dashed var(--line-dark);
  box-shadow: none;
}
.caso-tile-empty:hover { transform: none; box-shadow: none; border-color: var(--line-dark); }
.caso-tile-placeholder {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--ink-3);
  font-family: "JetBrains Mono", monospace;
  font-size: .85rem;
  padding: 1.5rem;
  line-height: 1.5;
}

/* ============ NO ES ============ */
.no-es {
  list-style: none;
  padding: 0;
  margin: 0;
}
.no-es li {
  padding: 1rem 0 1rem 1.8rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: .95rem;
  position: relative;
  line-height: 1.55;
}
.no-es li:last-child { border-bottom: 0; }
.no-es li::before {
  content: "—";
  position: absolute;
  left: 0; top: 1rem;
  color: var(--accent);
  font-weight: 700;
}
.no-es strong { color: var(--ink); font-weight: 700; }

/* ============ FAQ ============ */
.faq {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 1.8rem 1.3rem 0;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  user-select: none;
  color: var(--ink);
  transition: color .15s;
}
.faq summary:hover { color: var(--accent-hover); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink-2);
  transition: transform .25s;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--accent); }
.faq p {
  color: var(--ink-2);
  margin: 0 0 1.4rem;
  line-height: 1.65;
  padding-right: 2rem;
}

/* ============ FORM CONTACTO ============ */
.bg-dark {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.bg-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(184, 84, 59, .12) 0%, transparent 70%);
  pointer-events: none;
}
.bg-dark .wrap { position: relative; z-index: 1; }
.bg-dark .section-h2 { color: #fff; }

.form {
  margin-top: 2rem;
  display: flex; flex-direction: column;
  gap: 1.2rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 2rem 1.8rem;
}
@media (max-width: 600px) { .form { padding: 1.5rem 1.3rem; } }
.form-grp { display: flex; flex-direction: column; gap: .55rem; }
.form-grp label {
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .01em;
}
.form-grp input[type="text"],
.form-grp textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  border-radius: 8px;
  padding: .95rem 1.05rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .15s, background .15s;
  resize: vertical;
}
.form-grp input:focus,
.form-grp textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px rgba(184, 84, 59, .15);
}
.form-grp input::placeholder,
.form-grp textarea::placeholder {
  color: rgba(255,255,255,.35);
}
.form-radio {
  display: flex; flex-direction: column;
  gap: .65rem;
}
.form-radio label {
  display: flex; align-items: center; gap: .65rem;
  font-weight: 500;
  font-size: .93rem;
  color: rgba(255,255,255,.82);
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0;
  padding: .55rem .75rem;
  border-radius: 7px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .15s;
}
.form-radio label:hover { background: rgba(255,255,255,.06); }
.form-radio input[type="radio"] { accent-color: var(--accent); width: 16px; height: 16px; }

.form-foot {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.form-foot-meta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.form-foot-meta svg { color: var(--accent); }
.form-privacy {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin: .4rem 0 0;
  line-height: 1.5;
}
.form-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 1.05rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, transform .08s;
  letter-spacing: -.005em;
  box-shadow: 0 4px 12px rgba(184, 84, 59, .25);
}
.form-submit:hover { background: var(--accent-hover); }
.form-submit:active { transform: translateY(1px); }
.form-submit:disabled { background: var(--ink-3); cursor: not-allowed; box-shadow: none; }
.form-status {
  font-size: .92rem;
  margin: 0;
  min-height: 1.4em;
}
.form-status.ok { color: var(--accent-soft); }
.form-status.err { color: #fca5a5; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark-2);
  padding: 2.4rem 0;
  color: rgba(255,255,255,.7);
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.footer-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .87rem;
  flex-wrap: wrap;
  gap: .65rem;
}
.footer-brand { display: inline-flex; align-items: center; gap: .55rem; color: #fff; }
.footer-wordmark {
  font-family: inherit;
  font-size: 1.4rem;
  letter-spacing: -.015em;
  color: #fff;
}
.footer-dot-mark { color: var(--accent); font-style: italic; margin-left: .03em; }
.footer-meta { display: inline-flex; gap: .5rem; align-items: center; }
.footer-dot { opacity: .4; }

/* ============ HERO BULLETS ============ */
.hero-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: .55rem;
  font-size: .92rem;
  color: var(--ink-2);
}
.hero-bullets li {
  display: flex; align-items: center; gap: .6rem;
}
.hb-icon {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  color: var(--accent);
  font-weight: 700;
  font-size: .9rem;
  width: auto;
  flex-shrink: 0;
}
/* ============ HERO VISUAL (no usado en hero, se reutiliza en caso) ============ */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
}
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 280 / 580;
  background: #111;
  border-radius: 34px;
  padding: 10px;
  box-shadow:
    inset 0 0 0 2px #2a2a2a,
    0 30px 60px rgba(14, 23, 38, .22),
    0 12px 24px rgba(14, 23, 38, .12);
  z-index: 2;
}
.phone-notch {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 78px; height: 18px;
  background: #000;
  border-radius: 12px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 26px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.phone-caption {
  font-family: "JetBrains Mono", monospace;
  font-size: .72rem;
  color: var(--ink-3);
  text-decoration: none;
  letter-spacing: -.01em;
  transition: color .15s;
}
.phone-caption:hover { color: var(--accent-hover); }
@media (max-width: 920px) {
  .phone-frame { max-width: 240px; }
}

/* ============ MOCKUP FRESHCULTURE (fiel al diseño real) ============ */
:root {
  --fc-cream: #F2EBD8;
  --fc-dark: #1F2321;
  --fc-green: #6B8F6E;
}
.fc-visual {
  background: #1F2321;
  padding: 0;
  overflow: hidden;
}
.fc-visual::before { display: none; }
.caso-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.fc-screen {
  width: 100%;
  max-width: 460px;
  background: var(--bg-panel);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35), 0 12px 24px rgba(0, 0, 0, .25);
  margin: 0 auto;
}
.fc-bar {
  background: #f5f7fb;
  padding: .55rem .75rem;
  display: flex; align-items: center; gap: .45rem;
  border-bottom: 1px solid var(--line);
}
.fc-dot { width: 9px; height: 9px; border-radius: 50%; }
.fc-dot:nth-child(1) { background: #f87171; }
.fc-dot:nth-child(2) { background: #fbbf24; }
.fc-dot:nth-child(3) { background: #86efac; }
.fc-url {
  margin-left: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: .62rem;
  background: var(--bg-panel);
  padding: 2px 7px;
  color: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.fc-body { background: var(--fc-cream); padding: .9rem 1rem 1.1rem; }

/* Header FC */
.fc-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: .7rem;
  margin-bottom: .75rem;
  border-bottom: 1px solid rgba(31, 35, 33, .12);
}
.fc-logo {
  font-family: "Inter", sans-serif;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--fc-dark);
}
.fc-icons { display: inline-flex; gap: .4rem; }
.fc-icons span {
  width: 16px; height: 16px;
  background: var(--fc-dark);
  border-radius: 50%;
  opacity: .15;
}

/* Filtros chips */
.fc-filters {
  display: flex; gap: .35rem;
  margin-bottom: .85rem;
  overflow: hidden;
}
.fc-pill {
  font-size: .58rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 999px;
  border: 1.5px solid var(--fc-dark);
  background: var(--bg-panel);
  color: var(--fc-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fc-pill.active { background: var(--fc-dark); color: var(--fc-cream); }

/* Grid de cards FC */
.fc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .45rem;
}
.fc-card {
  background: var(--bg-panel);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(31, 35, 33, .06);
}
.fc-card-img {
  aspect-ratio: 1/1;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}
.fc-img-1 {
  background: linear-gradient(180deg, #b03434 0%, #5e1010 100%);
}
.fc-img-2 {
  background: linear-gradient(180deg, #8a8a8a 0%, #5a5a5a 100%);
}
.fc-img-3 {
  background: linear-gradient(180deg, #2d3a55 0%, #1a2030 100%);
}
.fc-brand-tag {
  position: absolute;
  top: 5px; left: 5px;
  font-size: .48rem;
  font-weight: 700;
  background: var(--fc-dark);
  color: var(--fc-cream);
  padding: 2px 5px;
  border-radius: 2px;
  letter-spacing: .08em;
}
.fc-card-body {
  padding: .4rem .45rem .55rem;
  display: flex; flex-direction: column;
  gap: .15rem;
}
.fc-card-cat {
  font-size: .48rem;
  color: var(--fc-dark);
  opacity: .6;
  letter-spacing: .08em;
  font-weight: 500;
}
.fc-card-name {
  font-size: .62rem;
  font-weight: 700;
  color: var(--fc-dark);
  line-height: 1.15;
}
.fc-card-badge {
  font-size: .45rem;
  background: rgba(107, 143, 110, .15);
  color: var(--fc-green);
  padding: 1px 5px;
  border-radius: 3px;
  width: max-content;
  font-weight: 600;
  letter-spacing: .02em;
}
.fc-swatches {
  display: flex; gap: 3px;
  margin: 2px 0 1px;
}
.fc-swatches span {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .15);
}
.fc-card-price {
  font-size: .72rem;
  font-weight: 800;
  color: var(--fc-dark);
  letter-spacing: -.01em;
}

@media (max-width: 600px) {
  .fc-visual { padding: 0; min-height: 320px; }
}
