/* ─────────────────────────────────────────────────────────────────
   Gino AI — landing pública (gino-ai.com.ar)
   Diseño alineado con el dashboard (admin.gino-ai.com.ar):
   misma paleta brand (#465fff), misma tipografía, misma sensación
   de "producto serio pero cercano".
   ───────────────────────────────────────────────────────────────── */

:root {
  /* Paleta brand — pareada con --color-brand-* del dashboard */
  --brand-50:  #ecf3ff;
  --brand-100: #dde9ff;
  --brand-300: #9cb9ff;
  --brand-500: #465fff;
  --brand-600: #3641f5;
  --brand-700: #2a31d8;

  /* Neutros */
  --ink:        #0b1220;
  --ink-soft:   #1f2937;
  --ink-muted:  #475569;
  --slate-50:   #f8fafc;
  --slate-100:  #f1f5f9;
  --slate-200:  #e2e8f0;
  --slate-300:  #cbd5e1;
  --white:      #ffffff;

  /* Profundo (secciones --deep) */
  --navy-900: #0b1220;
  --navy-800: #11182e;
  --navy-700: #1c2545;

  /* Tipografía + radios + sombras */
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 14px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
  --shadow-brand: 0 14px 32px rgba(70, 95, 255, 0.28);
}

/* ── Reset ── */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: auto; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-600);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--brand-700); }

button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* ─────────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.logo:hover { color: var(--ink); }

.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-xs);
}
.logo__dot {
  color: var(--brand-500);
  margin: 0 0.05em;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
}
.nav a:hover { color: var(--ink); }

/* Botones del nav (override del color heredado de a) */
.nav a.btn {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 0.4rem;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    padding: 0.5rem 1.5rem 1.25rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--slate-100);
  }
  .nav a:last-child { border-bottom: none; }
  .nav a.btn { margin-top: 0.5rem; justify-content: center; }
}

/* ─────────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn--sm {
  padding: 0.5rem 1.05rem;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 0.95rem 1.85rem;
  font-size: 1rem;
}
.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--brand-500);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  background: var(--brand-600);
  color: var(--white);
}

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--slate-200);
}
.btn--ghost:hover {
  border-color: var(--brand-500);
  color: var(--brand-600);
}

.btn--on-dark {
  background: var(--white);
  color: var(--brand-600);
}
.btn--on-dark:hover {
  background: var(--slate-100);
  color: var(--brand-700);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}

/* ─────────────────────────────────────────────────────────────────
   SECTIONS — base
   ───────────────────────────────────────────────────────────────── */

main { padding-top: 70px; }

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
}
.section--alt {
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
}
.section--deep {
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 50%, #1a2447 100%);
  color: rgba(255, 255, 255, 0.92);
}
.section--problem {
  background: var(--white);
}

.section__kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin: 0 0 0.85rem;
}
.section__kicker--on-deep {
  color: var(--brand-300);
}

.section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
}
.section__title-accent {
  background: linear-gradient(120deg, var(--brand-500), var(--brand-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section__title--on-deep {
  color: var(--white);
}
.section__lead {
  max-width: 60ch;
  margin: 0 0 2rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-muted);
}
.section__lead--on-deep {
  color: rgba(255, 255, 255, 0.78);
}
.section__lead strong,
.section__lead b {
  color: var(--ink);
  font-weight: 700;
}
.section__lead--on-deep strong,
.section__lead--on-deep b {
  color: var(--white);
}

/* ─────────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 6.5rem) 0 clamp(3.5rem, 7vw, 5rem);
  overflow: hidden;
  background: var(--white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(70, 95, 255, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 30% at 10% 90%, rgba(70, 95, 255, 0.08), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-700);
  background: var(--brand-50);
  border-radius: var(--radius-pill);
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(70, 95, 255, 0.18);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(70, 95, 255, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(70, 95, 255, 0); }
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: var(--ink);
}
.hero__title-accent {
  background: linear-gradient(120deg, var(--brand-500), var(--brand-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 38rem;
}
.hero__lead strong { color: var(--ink); font-weight: 700; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__fineprint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__glow {
  position: absolute;
  inset: -2rem;
  background: radial-gradient(ellipse, rgba(70, 95, 255, 0.18), transparent 65%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

/* Chat card visual */
.chat-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.chat-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
}
.chat-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.chat-card__name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.chat-card__status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.chat-card__status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
}
.chat-card__body {
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--slate-50);
}
.chat-card__foot {
  padding: 0.65rem 1.1rem;
  font-size: 0.72rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--slate-100);
  background: var(--white);
}

.bubble {
  max-width: 78%;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  line-height: 1.4;
  border-radius: 18px;
  animation: bubble-in 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
.bubble--user {
  align-self: flex-end;
  background: var(--brand-500);
  color: var(--white);
  border-top-right-radius: 4px;
}
.bubble--gino {
  align-self: flex-start;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--slate-200);
  border-top-left-radius: 4px;
}
.bubble:nth-child(1) { animation-delay: 0.1s; }
.bubble:nth-child(2) { animation-delay: 0.4s; }
.bubble:nth-child(3) { animation-delay: 0.9s; }
.bubble:nth-child(4) { animation-delay: 1.3s; }
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────────────────────────
   CHANNELS BAR
   ───────────────────────────────────────────────────────────────── */

.channels {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  background: var(--slate-50);
}
.channels__label {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-align: center;
}
.channels__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.channels__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-soft);
  opacity: 0.78;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.channels__list li:hover {
  opacity: 1;
  color: var(--brand-600);
}
.channels__list svg {
  width: 24px;
  height: 24px;
}
.channels__more {
  color: var(--ink-muted) !important;
  opacity: 0.55 !important;
}

/* ─────────────────────────────────────────────────────────────────
   VALUE GRID (3 pilares)
   ───────────────────────────────────────────────────────────────── */

.value-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 880px) {
  .value-grid { grid-template-columns: 1fr; }
}

.value-card {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-300);
}
.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--brand-50);
  color: var(--brand-600);
  margin-bottom: 0.85rem;
}
.value-card__icon svg { width: 22px; height: 22px; }
.value-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}
.value-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* ─────────────────────────────────────────────────────────────────
   FEATURES GRID (3x3)
   ───────────────────────────────────────────────────────────────── */

.features-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature {
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover {
  transform: translateY(-2px);
  border-color: var(--brand-300);
  box-shadow: var(--shadow-sm);
}
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--brand-50);
  color: var(--brand-600);
  margin-bottom: 0.85rem;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.feature p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* ─────────────────────────────────────────────────────────────────
   STEPS (cómo funciona)
   ───────────────────────────────────────────────────────────────── */

.steps {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}
@media (max-width: 1000px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  position: relative;
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand-500);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.step h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}
.step p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* ─────────────────────────────────────────────────────────────────
   CASES (use cases)
   ───────────────────────────────────────────────────────────────── */

.cases {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 980px) {
  .cases { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cases { grid-template-columns: 1fr; }
}

.case {
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.case:hover {
  transform: translateY(-2px);
  border-color: var(--brand-300);
  box-shadow: var(--shadow-sm);
}
.case__icon {
  font-size: 1.85rem;
  margin-bottom: 0.6rem;
  line-height: 1;
}
.case h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.case p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* ─────────────────────────────────────────────────────────────────
   PRICING CTA
   ───────────────────────────────────────────────────────────────── */

.pricing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ─────────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────────── */

.faq {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 760px;
}
.faq__item {
  padding: 1.1rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease;
}
.faq__item[open] { border-color: var(--brand-300); }
.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand-500);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after {
  content: "−";
}
.faq__item p {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ─────────────────────────────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────────────────────────────── */

.section--cta {
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(70, 95, 255, 0.12), transparent 70%),
    var(--white);
  text-align: center;
}
.section--cta__inner {
  max-width: 720px;
  margin-inline: auto;
}
.section--cta .hero__actions {
  justify-content: center;
}

/* ─────────────────────────────────────────────────────────────────
   CONTACTO
   ───────────────────────────────────────────────────────────────── */

.contact-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  padding: 1.85rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.55rem;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(70, 95, 255, 0.12);
}
.contact-form textarea {
  resize: vertical;
  min-height: 6rem;
}
.contact-form button {
  margin-top: 1rem;
}
.contact-form__feedback {
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-form__feedback--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.contact-form__feedback--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.contact-form__hcaptcha-wrap {
  margin-top: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-form__hcaptcha-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.contact-aside {
  position: relative;
}
.contact-demo {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact-demo__shell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-md);
  aspect-ratio: 9/16;
  max-width: 320px;
  margin-inline: auto;
}
.contact-demo__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-demo__caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ─────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  color: var(--ink-muted);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand .logo {
  font-size: 1.05rem;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 0.85rem;
}
.footer__logo .logo__mark {
  width: 32px; height: 32px;
}
.footer__tagline {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 26rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__col h4 {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.footer__col a {
  font-size: 0.9rem;
  color: var(--ink-muted);
  text-decoration: none;
}
.footer__col a:hover {
  color: var(--brand-600);
}

.footer__legal {
  border-top: 1px solid var(--slate-200);
  padding: 1.1rem 0;
  background: var(--white);
}
.footer__legal-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--ink-muted);
}
.footer__legal-inner p { margin: 0; }

/* ─────────────────────────────────────────────────────────────────
   SECTION REVEAL ANIMATION
   ───────────────────────────────────────────────────────────────── */

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.section-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .bubble { animation: none; }
  .hero__eyebrow-dot { animation: none; }
}
