@font-face {
      font-family: "Glacial Indifference";
      font-weight: 400; font-style: normal; font-display: swap;
      src: url("https://cdn.jsdelivr.net/gh/xz/fonts/glacialindifference/GlacialIndifference-Regular.otf") format("opentype");
    }
    @font-face {
      font-family: "Glacial Indifference";
      font-weight: 700; font-style: normal; font-display: swap;
      src: url("https://cdn.jsdelivr.net/gh/xz/fonts/glacialindifference/GlacialIndifference-Bold.otf") format("opentype");
    }
  

:root {
  color-scheme: light;
  --sh-black: #000000;
  --sh-yellow: #ffbd59;
  --sh-yellow-hover: #e5a94e;
  --sh-yellow-press: #cc962e;
  --sh-white: #ffffff;
  --sh-grey: #bfbfbf;
  --sh-grey-light: #e6e6e6;

  --ink-1: #0a0a0a;
  --ink-2: #3d3d3d;
  --ink-3: #6b6b6b;
  --surface-0: #ffffff;
  --surface-1: #fafafa;
  --surface-2: #f4f4f4;

  --font-display: "Glacial Indifference", "Poppins", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Poppins", ui-sans-serif, system-ui, sans-serif;

  --fs-display: clamp(2.5rem, 5.6vw, 4.25rem);
  --fs-h2: clamp(1.75rem, 3.2vw, 2.5rem);
  --fs-h3: 1.375rem;
  --fs-h4: 1.125rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px;
  --space-8: 64px; --space-9: 96px; --space-10: 128px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 48px -16px rgba(0,0,0,0.14);

  --ease-out: cubic-bezier(0.2, 0, 0, 1);
  --dur-fast: 120ms;
  --dur-base: 180ms;

  --container: 1200px;
  --topbar-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
p { text-align: justify; hyphens: auto; }
html { scroll-behavior: smooth; }
body {
  background: var(--surface-0); color: var(--ink-1);
  font-family: var(--font-body); font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
strong { font-weight: 600; color: var(--ink-1); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-6); width: 100%; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px; border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-family: var(--font-body); font-weight: 600;
  font-size: var(--fs-small); line-height: 1;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn-sm  { padding: 9px 14px; font-size: 13px; }
.btn-lg  { padding: 16px 26px; font-size: var(--fs-body); }
.btn-primary { background: var(--sh-yellow); color: var(--sh-black); }
.btn-primary:hover  { background: var(--sh-yellow-hover); }
.btn-primary:active { background: var(--sh-yellow-press); transform: translateY(1px); }
.btn-secondary { background: transparent; color: var(--ink-1); border-color: var(--sh-grey-light); }
.btn-secondary:hover { background: var(--surface-1); border-color: var(--sh-grey); }
.btn-dark { background: var(--sh-black); color: var(--sh-white); }
.btn-dark:hover { background: #1a1a1a; }
.btn-ghost { background: transparent; color: var(--sh-white); border-color: rgba(255,255,255,0.18); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); }
.btn .arrow { transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ Section label ============ */
.section-label {
  font-size: var(--fs-micro); font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: var(--space-4);
}
.section-label::before {
  display: none;
}
.section-label--light { color: var(--sh-grey); }
.section-label--light::before { background: var(--sh-white); }

/* ============ Nav ============ */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sh-grey-light);
  height: var(--topbar-h);
}
.nav {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-5);
}
.nav-logo { display: flex; align-items: center; gap: var(--space-3); }
.nav-logo-mark { width: 32px; height: 32px; flex-shrink: 0; display: grid; place-items: center; border-radius: 0; }
.nav-logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-word {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: -0.01em; color: var(--ink-1);
}
.nav-links { display: flex; gap: var(--space-6); font-size: 14px; color: var(--ink-2); }
.nav-links a {
  padding: 8px 2px; position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a:hover { color: var(--ink-1); }
.nav-links a::after {
  content: ""; position: absolute; left: 2px; right: 2px; bottom: 2px; height: 1px;
  background: var(--sh-black);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--ink-1); }
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: var(--space-4); }
.lang-toggle {
  display: inline-flex; border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-pill); padding: 3px; background: var(--surface-0);
}
.lang-toggle button {
  padding: 4px 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--ink-3); border-radius: var(--radius-pill);
  transition: all var(--dur-fast) var(--ease-out);
}
.lang-toggle button.is-active { background: var(--sh-black); color: var(--sh-white); }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 120px) 0 clamp(64px, 8vw, 128px);
  overflow: hidden;
  background: var(--surface-0);
}
.hero::before {
  /* subtle ambient yellow glow behind Juan avatar */
  content: ""; position: absolute;
  top: 100px; left: 50%; transform: translateX(-50%);
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(255,189,89,0.28) 0%, rgba(255,189,89,0) 62%);
  filter: blur(20px);
  pointer-events: none; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: var(--space-5);
  max-width: 820px; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--sh-grey-light);
  background: var(--surface-0);
  font-size: 12px; font-weight: 500; color: var(--ink-2);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sh-yellow);
  box-shadow: 0 0 0 4px rgba(255,189,89,0.25);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,189,89,0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(255,189,89,0); }
}
.juan-avatar {
  width: 180px; height: 180px; border-radius: 0;
  background: var(--sh-black);
  padding: 2px;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.32), 0 0 0 1px rgba(0,0,0,0.04);
  position: relative;
  display: grid; place-items: center;
}
.juan-avatar::before {
  content: ""; position: absolute; inset: 2px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 0;
  pointer-events: none;
}
.juan-avatar img { width: 100%; height: 100%; border-radius: 0; object-fit: contain; }
.juan-avatar::after {
  content: ""; position: absolute; bottom: -6px; right: -6px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--sh-yellow);
  border: 4px solid var(--surface-0);
}
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-display); line-height: 1.04;
  letter-spacing: -0.02em; color: var(--ink-1);
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal; color: var(--ink-1);
  background: linear-gradient(transparent 62%, rgba(255,189,89,0.55) 62%);
  padding: 0 4px;
}
.hero-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem); line-height: 1.6;
  color: var(--ink-2); max-width: 620px;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center;
  margin-top: var(--space-3);
}
.hero-meta {
  display: flex; gap: var(--space-5); flex-wrap: wrap; justify-content: center;
  font-size: 13px; color: var(--ink-3); margin-top: var(--space-2);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta svg { stroke: currentColor; }
.hero-candidate {
  font-size: 13px; color: var(--ink-3); margin-top: var(--space-3);
}
.hero-candidate a {
  color: var(--ink-1); font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  padding-bottom: 1px; border-bottom: 1px solid var(--sh-grey);
  margin-left: 4px;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.hero-candidate a:hover { border-color: var(--sh-black); }

/* ============ Stats strip ============ */
.stats {
  border-top: 1px solid var(--sh-grey-light);
  border-bottom: 1px solid var(--sh-grey-light);
  background: var(--surface-0);
  padding: var(--space-7) 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.stat { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.stat-value {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.75rem); line-height: 1;
  letter-spacing: -0.02em; color: var(--ink-1);
  font-variant-numeric: tabular-nums;
}
.stat-value sup { font-size: 0.55em; color: var(--sh-yellow); margin-left: 2px; font-weight: 700; }
.stat-label {
  font-size: 13px; color: var(--ink-3); text-wrap: balance;
}

/* ============ Generic section ============ */
section.sec { padding: clamp(72px, 8vw, 120px) 0; }
section.sec--muted { background: var(--surface-1); }
section.sec--dark { background: var(--sh-black); color: var(--sh-white); }
section.sec--dark .section-label { color: var(--sh-grey); }
section.sec--dark .section-label::before { background: var(--sh-white); }
section.sec h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-h2); line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-5); max-width: 760px;
  text-wrap: balance;
}
section.sec .lede {
  font-size: 1.05rem; line-height: 1.65; color: var(--ink-2);
  max-width: 620px; margin-bottom: var(--space-8);
  text-wrap: pretty;
}
section.sec--dark .lede { color: var(--sh-grey); }

/* ============ Benefits grid ============ */
.benefits {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5);
}
.benefit {
  position: relative;
  border: 1px solid var(--sh-grey-light); border-radius: var(--radius-lg);
  padding: var(--space-6);
  background: var(--surface-0);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.benefit:hover {
  border-color: var(--ink-1);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--sh-black); color: var(--sh-yellow);
  display: grid; place-items: center; margin-bottom: var(--space-2);
  flex-shrink: 0;
}
.benefit-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit-tag {
  align-self: flex-start;
  font-size: var(--fs-micro); font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: var(--surface-1); color: var(--ink-2);
}
.benefit h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-h4); line-height: 1.25;
  color: var(--ink-1);
}
.benefit p { font-size: 15px; line-height: 1.6; color: var(--ink-2); text-wrap: pretty; }

/* ============ Chat preview (illustrative) ============ */
.howfunc-wrap {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--space-8);
  align-items: start;
}
.steps { display: flex; flex-direction: column; gap: var(--space-4); }
.step {
  display: grid; grid-template-columns: 44px 1fr; gap: var(--space-4);
  padding: var(--space-5) var(--space-5);
  border: 1px solid var(--sh-grey-light); border-radius: var(--radius-lg);
  background: var(--surface-0);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.step:hover { border-color: var(--ink-1); box-shadow: var(--shadow-md); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sh-black); color: var(--sh-yellow);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
}
.step h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-h4); margin-bottom: 6px; color: var(--ink-1);
}
.step p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }

/* phone mockup */
.phone {
  position: sticky; top: calc(var(--topbar-h) + 24px);
  width: 100%; max-width: 380px; aspect-ratio: 380/640; margin: 0 auto;
  background: var(--sh-black);
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
}
.phone-screen {
  width: 100%; height: 100%;
  background: #ece5dd; /* WhatsApp light */
  border-radius: 32px;
  overflow: hidden;
  display: flex; flex-direction: column;
  font-size: 13px;
}
.wa-header {
  background: #008069; color: #fff;
  padding: 10px 12px; display: flex; align-items: center; gap: 10px;
  border-radius: 32px 32px 0 0;
}
.wa-avatar {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--sh-black); padding: 3px; flex-shrink: 0;
  position: relative;
}
.wa-avatar::before {
  content: ""; position: absolute; inset: 3px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  pointer-events: none;
}
.wa-avatar img { width: 100%; height: 100%; border-radius: 6px; object-fit: contain; }
.wa-name { font-weight: 600; font-size: 14px; line-height: 1.2; }
.wa-status { font-size: 11px; opacity: 0.85; }
.wa-online-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; display: inline-block; margin-right: 5px; }
.wa-body {
  flex: 1; overflow: hidden; padding: 12px 10px; display: flex; flex-direction: column; gap: 7px;
  background:
    linear-gradient(rgba(236,229,221,0.82), rgba(236,229,221,0.82)),
    radial-gradient(#d0c6b9 1px, transparent 1px) 0 0 / 18px 18px;
}
.bubble {
  max-width: 82%; padding: 8px 11px; border-radius: 8px;
  font-size: 13px; line-height: 1.45;
  box-shadow: 0 1px 1px rgba(0,0,0,0.06);
  opacity: 0; transform: translateY(6px);
  animation: bubbleIn var(--dur-base) var(--ease-out) forwards;
}
@keyframes bubbleIn { to { opacity: 1; transform: none; } }
.bubble.in  { background: #fff; align-self: flex-start; border-bottom-left-radius: 2px; }
.bubble.out { background: #d9fdd3; align-self: flex-end; border-bottom-right-radius: 2px; }
.bubble .time { display: block; font-size: 10px; color: #667781; text-align: right; margin-top: 2px; }
.bubble.in:nth-child(1) { animation-delay: 60ms; }
.bubble.out:nth-child(2){ animation-delay: 280ms; }
.bubble.in:nth-child(3) { animation-delay: 520ms; }
.bubble.card { padding: 0; background: #fff; overflow: hidden; }
.bubble.card .card-head {
  padding: 9px 11px 6px; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-weight: 600; color: var(--ink-1); display: flex; align-items: center; gap: 7px; font-size: 12.5px;
}
.bubble.card .card-head .badge {
  font-size: 10px; font-weight: 600; padding: 2px 6px; border-radius: 6px;
  background: var(--sh-yellow); color: var(--sh-black);
}
.bubble.card .card-row {
  padding: 7px 11px; display: flex; justify-content: space-between; gap: 10px;
  font-size: 12px; border-bottom: 1px solid rgba(0,0,0,0.04);
}
.bubble.card .card-row:last-child { border-bottom: 0; }
.bubble.card .card-row b { font-weight: 600; color: var(--ink-1); }
.bubble.card .card-row span { color: #667781; }
.wa-composer {
  padding: 7px 10px; background: #f0f2f5; display: flex; align-items: center; gap: 7px;
  border-radius: 0 0 32px 32px;
}
.wa-composer .input {
  flex: 1; background: #fff; border-radius: 22px; padding: 7px 12px;
  font-size: 12px; color: #667781;
}
.wa-composer .mic {
  width: 34px; height: 34px; border-radius: 50%; background: #008069;
  display: grid; place-items: center; color: #fff;
}

/* ============ Compare (juan vs diy) ============ */
.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5);
}
.compare-col {
  border: 1px solid var(--sh-grey-light); border-radius: var(--radius-lg);
  padding: var(--space-6); background: var(--surface-0);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.compare-col.is-juan { background: var(--sh-black); color: var(--sh-white); border-color: var(--sh-black); }
.compare-col .label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
}
.compare-col.is-juan .label { color: var(--sh-yellow); }
.compare-col h3 {
  font-family: var(--font-display); font-weight: 700; font-size: var(--fs-h3);
  line-height: 1.15;
}
.compare-col ul { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-2); }
.compare-col li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.55; }
.compare-col .chk {
  width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%;
  display: grid; place-items: center; font-size: 11px; font-weight: 700; margin-top: 2px;
}
.compare-col.is-diy .chk { background: var(--surface-2); color: var(--ink-3); }
.compare-col.is-juan .chk { background: var(--sh-yellow); color: var(--sh-black); }
.compare-col.is-diy li { color: var(--ink-2); }
.compare-col.is-juan li { color: rgba(255,255,255,0.88); }

/* ============ FAQ ============ */
.faq-wrap { display: flex; flex-direction: column; gap: var(--space-2); max-width: 840px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--sh-grey-light); border-radius: var(--radius-lg);
  background: var(--surface-0); overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out);
}
.faq-item[open] { border-color: var(--ink-1); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5);
  font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink-1);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--sh-grey-light);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
  color: var(--ink-1);
}
.faq-item[open] .plus { transform: rotate(45deg); background: var(--sh-yellow); border-color: var(--sh-yellow); }
.faq-item .answer {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--ink-2); font-size: 15px; line-height: 1.65;
  max-width: 780px;
}

/* ============ CTA final ============ */
.cta-final {
  background: var(--sh-black); color: var(--sh-white);
  padding: clamp(72px, 10vw, 128px) 0;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ""; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(255,189,89,0.18) 0%, rgba(255,189,89,0) 60%);
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; text-align: center; }
.cta-final .section-label { color: var(--sh-grey); justify-content: center; display: inline-flex; }
.cta-final .section-label::before { background: var(--sh-white); }
.cta-final h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1.05;
  letter-spacing: -0.02em; margin: 0 auto var(--space-5);
  max-width: 720px; color: var(--sh-white);
  text-wrap: balance;
}
.cta-final p {
  color: var(--sh-grey); font-size: 1.05rem; line-height: 1.6;
  max-width: 560px; margin: 0 auto var(--space-7);
  text-wrap: pretty;
}
.cta-final .hero-meta { color: var(--sh-grey); }

/* ============ WhatsApp float ============ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }

/* ============ Footer ============ */
footer {
  background: var(--sh-black); color: var(--sh-grey);
  padding: var(--space-9) 0 var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--space-7);
  margin-bottom: var(--space-8);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-brand .mark { display: flex; align-items: center; gap: var(--space-3); }
.footer-brand .mark img { width: 36px; height: 36px; }
.footer-brand-name {
  color: var(--sh-white); font-family: var(--font-display); font-weight: 700;
  font-size: 18px;
}
.footer-brand p { font-size: 13px; line-height: 1.6; max-width: 280px; margin-top: 4px; }
.footer-col h4 {
  color: var(--sh-white); font-size: var(--fs-micro);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
  margin-bottom: var(--space-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a {
  color: var(--sh-grey); font-size: 14px;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-col a:hover { color: var(--sh-white); }
.footer-bottom {
  padding-top: var(--space-5); border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--sh-grey);
}
.footer-bottom .links { display: flex; gap: var(--space-5); }
.footer-bottom .links a { color: var(--sh-grey); transition: color var(--dur-fast) var(--ease-out); }
.footer-bottom .links a:hover { color: var(--sh-white); }

/* ============ Scroll reveal ============ */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out); }
[data-reveal].is-in  { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 80ms; }
[data-reveal][data-delay="2"] { transition-delay: 160ms; }
[data-reveal][data-delay="3"] { transition-delay: 240ms; }
[data-reveal][data-delay="4"] { transition-delay: 320ms; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow .dot { animation: none; }
  .bubble { animation: none; opacity: 1; transform: none; }
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .howfunc-wrap { grid-template-columns: 1fr; gap: var(--space-7); }
  .phone { position: static; max-width: 340px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-right .btn-secondary { display: none; }
  .hero-meta { display: none; }
  .hero-cta-secondary { display: none; }
  .benefits { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .step { grid-template-columns: 36px 1fr; gap: var(--space-3); padding: var(--space-4); }
  .step-num { width: 36px; height: 36px; font-size: 14px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
  .juan-avatar { width: 148px; height: 148px; }
}
