/* =============================================================
   LM Matic — styles.css
   1. Tokens  2. Reset  3. Utilities  4. Typography  5. Components
   6. Sections  7. Effects  8. Responsive  9. Reduced-motion
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --sand:        #F3E9D6;
  --sand-deep:   #E7D6B4;
  --paper:       #FFFDF8;
  --ink:         #1C2A25;
  --ink-soft:    #33443C;
  --ink-mute:    #67766E;
  --green:       #195C47;
  --green-deep:  #0F3A2D;
  --green-light: #2C8064;
  --cream:       #FBF3E4;
  --coral:       #DD5A3B;
  --coral-deep:  #C0452B;
  --line:        rgba(28,42,37,0.14);
  --line-light:  rgba(251,243,228,0.16);

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
input { font: inherit; color: inherit; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em; font-family: var(--font-display); }
ul { list-style: none; padding: 0; }
ol { padding-left: 0; }
::selection { background: var(--coral); color: var(--cream); }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.container--narrow { max-width: 760px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--green-deep); color: var(--cream);
  z-index: 9999; border-radius: var(--radius-sm); font-weight: 600;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .9rem;
}
.kicker--center { text-align: center; }
.kicker--light { color: var(--cream); opacity: .85; }

.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .03em;
  color: var(--green-deep);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: .5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 16px -10px rgba(28,42,37,.3);
}
.badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral); flex: none;
}

.section__title {
  font-size: clamp(1.9rem, 4.4vw, 2.7rem);
  font-weight: 600;
  max-width: 20ch;
  margin-bottom: 1.1rem;
}
.section--tint .section__title,
#dolores .section__title,
#servicios .section__title,
#preguntas .section__title { max-width: 24ch; margin-inline: auto; }
#dolores .section__title,
#servicios .section__title,
#preguntas .section__title,
#dolores .kicker,
#servicios .kicker,
#preguntas .kicker { text-align: center; }
.section__title--light { color: var(--cream); }

/* =============================================================
   4. Sections base
   ============================================================= */
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tint { background: var(--sand-deep); }
.section--dark { background: var(--green-deep); color: var(--cream); }

/* =============================================================
   5. Components
   ============================================================= */

/* --- buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease-out);
  white-space: nowrap;
}
.btn--primary { background: linear-gradient(155deg, var(--green-light), var(--green) 60%); color: var(--cream); box-shadow: 0 10px 28px -10px rgba(15,58,45,.6); }
.btn--primary:hover { background: linear-gradient(155deg, var(--green-light), var(--green-deep) 60%); transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(15,58,45,.65); }
.btn--coral { background: linear-gradient(155deg, #E8714F, var(--coral) 65%); color: var(--cream); box-shadow: 0 10px 28px -10px rgba(192,69,43,.6); }
.btn--coral:hover { background: linear-gradient(155deg, #E8714F, var(--coral-deep) 65%); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { background: var(--paper); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn--sm { padding: .55rem 1.1rem; font-size: .88rem; }
.btn--block { width: 100%; }
.icon-wa { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; transition: transform .3s var(--ease-out); }
.btn:hover .icon-wa { transform: scale(1.12) rotate(-6deg); }
.btn:active { transform: translateY(0) scale(.97); }

/* --- nav --- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(243,233,214,.9);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
@supports not (backdrop-filter: blur(1px)) {
  .nav { background: var(--sand); }
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding-block: .85rem; gap: 1rem; }
.nav__brand { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--green-deep); }
.nav__brand span { color: var(--coral); }
.nav__links { display: none; gap: 1.6rem; font-weight: 500; font-size: .95rem; }
.nav__links a { position: relative; padding-block: .2rem; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--coral); transition: right .3s var(--ease-out);
}
.nav__links a:hover::after { right: 0; }

/* --- cards --- */
.grid-3 { display: grid; gap: 1.4rem; margin-top: 2.4rem; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.9rem 1.7rem;
  box-shadow: 0 14px 32px -24px rgba(28,42,37,.4);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.card:hover { transform: translateY(-6px) scale(1.012); box-shadow: 0 26px 48px -22px rgba(28,42,37,.4); }
.card__num { font-family: var(--font-display); font-size: 1rem; color: var(--coral); font-weight: 600; display: block; margin-bottom: .6rem; transition: transform .35s var(--ease-bounce); }
.card:hover .card__num { transform: translateX(3px); }
.card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.card p { color: var(--ink-soft); font-size: .96rem; }
.card--accent { border-top: 3px solid var(--green); transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out); }
.card--accent:hover { border-color: var(--coral); }

/* --- who chips --- */
.who { margin-top: 3rem; text-align: center; }
.who__label { font-weight: 600; margin-bottom: 1rem; }
.who__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; }
.who__chips li {
  transition: transform .25s var(--ease-out), background .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.who__chips li:hover { transform: translateY(-3px); background: var(--paper); box-shadow: 0 10px 20px -14px rgba(28,42,37,.4); }
  background: var(--paper); border: 1px solid var(--line);
  padding: .5rem 1.05rem; border-radius: 999px; font-size: .9rem; font-weight: 500;
}

/* --- steps --- */
.steps { display: grid; gap: 1.6rem; margin-top: 2.6rem; counter-reset: step; }
.step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step__num {
  flex: none; width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--green); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.step p { color: var(--ink-soft); font-size: .96rem; max-width: 56ch; }

/* --- cupo (urgency) --- */
.cupo { text-align: center; max-width: 720px; }
.cupo__copy { color: var(--cream); opacity: .92; font-size: 1.05rem; margin-bottom: 2rem; }
.cupo .section__title { margin-inline: auto; }

/* --- FAQ (native details) --- */
.faq { display: grid; gap: .8rem; margin-top: 2.4rem; }
.faq__item {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 0;
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer; list-style: none; padding: 1.2rem 1.5rem;
  font-weight: 600; font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: var(--font-display); font-size: 1.4rem; color: var(--coral);
  flex: none; transition: transform .3s var(--ease-out);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 1.5rem 1.3rem; color: var(--ink-soft); font-size: .96rem; max-width: 64ch; }
.faq__more { text-align: center; margin-top: 2rem; color: var(--ink-soft); }
.faq__more a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* --- form --- */
.form {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem;
  display: grid; gap: 1.1rem;
  box-shadow: 0 30px 60px -30px rgba(28,42,37,.25);
}
.form__title { font-size: 1.25rem; margin-bottom: .2rem; }
.form__row { display: grid; gap: .4rem; }
.form__row label { font-weight: 600; font-size: .9rem; }
.form__optional { font-weight: 400; color: var(--ink-mute); }
.form__row input {
  padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--sand); transition: border-color .2s var(--ease-out);
}
.form__row input:focus { border-color: var(--green); }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { font-size: .9rem; min-height: 1.2em; font-weight: 600; }
.form__status[data-state="ok"] { color: var(--green); }
.form__status[data-state="error"] { color: var(--coral-deep); }

/* --- legal pages --- */
.legal { padding-block: clamp(3rem, 6vw, 5rem) 5rem; }
.legal__title { font-size: clamp(2rem, 4.5vw, 2.8rem); margin-bottom: .5rem; }
.legal__updated { color: var(--ink-mute); font-size: .9rem; margin-bottom: 2.4rem; }
.legal__body { display: grid; gap: 1.1rem; color: var(--ink-soft); font-size: .98rem; }
.legal__body h2 { font-size: 1.25rem; color: var(--ink); margin-top: .8rem; font-family: var(--font-body); font-weight: 700; }
.legal__body a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal__list { display: grid; gap: .5rem; padding-left: 1.3rem; list-style: disc; }
.legal__back { display: inline-block; margin-top: 2.6rem; font-weight: 600; color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

/* --- phone mockup (WhatsApp chat) --- */
.hero__visual { position: relative; display: grid; gap: .8rem; justify-items: center; z-index: 1; }
.hero__visual-eyebrow {
  font-size: .78rem; font-weight: 600; color: var(--green-deep);
  text-align: center; letter-spacing: .02em;
}

.chat-toggle { display: inline-flex; gap: .3rem; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .3rem; }
.chat-toggle__btn {
  padding: .5rem 1rem; border-radius: 999px; font-size: .82rem; font-weight: 600;
  color: var(--ink-mute); transition: background .25s var(--ease-out), color .25s var(--ease-out);
}
.chat-toggle__btn.is-active { background: var(--green); color: var(--cream); }
.chat-toggle__btn:not(.is-active):hover { background: var(--sand-deep); color: var(--ink); }

.chat-carousel { display: grid; gap: .7rem; justify-items: center; width: 100%; }
.chat-carousel__label {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: .95rem; color: var(--green-deep);
}
.chat-carousel__stage { position: relative; display: flex; justify-content: center; width: 100%; max-width: 404px; }
.chat-carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--paper); border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-deep); box-shadow: 0 12px 26px -14px rgba(28,42,37,.5);
  transition: background .25s var(--ease-out), color .25s var(--ease-out),
              transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s var(--ease-out);
  z-index: 2;
}
.chat-carousel__arrow svg { width: 1.15rem; height: 1.15rem; transition: transform .25s var(--ease-out); }
.chat-carousel__arrow--prev { left: 0; }
.chat-carousel__arrow--next { right: 0; }
.chat-carousel__arrow:hover {
  background: var(--green); color: var(--cream); border-color: var(--green);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 16px 34px -14px rgba(15,58,45,.55);
}
.chat-carousel__arrow--prev:hover svg { transform: translateX(-2px); }
.chat-carousel__arrow--next:hover svg { transform: translateX(2px); }
.chat-carousel__arrow:active { transform: translateY(-50%) scale(.94); }
.chat-carousel__dots { display: flex; gap: .5rem; align-items: center; }
.chat-carousel__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line); transition: background .25s var(--ease-out), transform .25s var(--ease-out), width .25s var(--ease-out);
}
.chat-carousel__dot.is-active { background: var(--coral); width: 22px; border-radius: 999px; }
.chat-carousel__dot:not(.is-active):hover { background: var(--ink-mute); }

.phone {
  position: relative;
  width: 100%; max-width: 340px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 34px 60px -24px rgba(15,58,45,.38), 0 10px 24px -14px rgba(221,90,59,.18);
  overflow: hidden;
}
.phone::before {
  content: ""; position: absolute; z-index: -1; inset: -14%;
  background: radial-gradient(closest-side, rgba(25,92,71,.28), transparent 72%);
  filter: blur(30px);
}
.phone__pane { display: none; flex-direction: column; height: 100%; }
.phone__pane.is-active { display: flex; }
.phone__bar { flex: none; display: flex; align-items: center; gap: .7rem; padding: .9rem 1.1rem; background: var(--green-deep); color: var(--cream); }
.phone__bar--after { background: var(--green); }
.phone__avatar {
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--coral); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex: none;
}
.phone__who { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.phone__name { font-weight: 600; font-size: .92rem; }
.phone__status { font-size: .74rem; opacity: .8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.phone__body { flex: 1 1 auto; padding: .9rem; display: grid; align-content: start; gap: .75rem; background: var(--sand); height: 380px; overflow: hidden; }

.bubble {
  max-width: 88%; padding: .5rem .75rem; border-radius: var(--radius-sm);
  font-size: .78rem; line-height: 1.35; position: relative;
}
.bubble--in { background: var(--paper); border: 1px solid var(--line); justify-self: start; border-bottom-left-radius: 3px; }
.bubble--out { background: var(--green); color: var(--cream); justify-self: end; border-bottom-right-radius: 3px; }
.bubble__time { display: block; margin-top: .22rem; font-size: .64rem; opacity: .6; text-align: right; }

.chat-gap { justify-self: center; font-size: .68rem; font-weight: 600; color: var(--coral-deep); background: rgba(192,69,43,.12); padding: .24rem .7rem; border-radius: 999px; }

/* --- footer --- */
.footer { background: var(--green-deep); color: var(--cream); padding-block: 3.5rem 1.6rem; }
.footer__grid { display: grid; gap: 2.2rem; padding-bottom: 2.2rem; border-bottom: 1px solid var(--line-light); }
.footer__brand { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: .5rem; }
.footer__brand span { color: var(--coral); }
.footer__tag { color: var(--cream); opacity: .75; font-size: .92rem; max-width: 32ch; }
.footer__contact { display: grid; gap: .5rem; font-size: .92rem; }
.footer__contact a:hover { text-decoration: underline; }
.footer__legal { display: grid; gap: .5rem; font-size: .92rem; }
.footer__legal a:hover { text-decoration: underline; }
.footer__copy { padding-top: 1.6rem; font-size: .82rem; opacity: .65; }

/* --- whatsapp floating button --- */
.whatsapp-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 50;
  width: 3.6rem; height: 3.6rem; border-radius: 50%;
  background: var(--green); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(15,58,45,.6);
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
}
html.js .whatsapp-float.is-hidden { opacity: 0; transform: scale(.5); pointer-events: none; }
.whatsapp-float::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--green); opacity: 0; pointer-events: none;
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(.92); opacity: .55; }
  70%  { transform: scale(1.38); opacity: 0; }
  100% { transform: scale(1.38); opacity: 0; }
}
.whatsapp-float .icon-wa { width: 1.7rem; height: 1.7rem; }
.whatsapp-float:hover { transform: scale(1.08); }

/* =============================================================
   6. Hero
   ============================================================= */
.hero { position: relative; overflow: clip; padding-block: clamp(1.4rem, 3vw, 2.2rem) clamp(1.6rem, 3vw, 2.6rem); }
.hero::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  inset: -10% -10% -25% -10%;
  background:
    radial-gradient(38% 42% at 78% 18%, rgba(25,92,71,.16), transparent 70%),
    radial-gradient(32% 36% at 12% 70%, rgba(221,90,59,.13), transparent 72%);
  filter: blur(10px);
}
.hero__grid { position: relative; z-index: 1; display: grid; gap: 2.4rem; align-items: center; }
.hero__title { font-size: clamp(2rem, 4.6vw, 3.1rem); font-weight: 600; margin-bottom: .8rem; max-width: 17ch; }
.hero__title em { font-style: italic; color: var(--coral-deep); }
.hero__sub { font-size: 1rem; color: var(--ink-soft); max-width: 52ch; margin-bottom: 1.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1rem; }
.hero__trust { font-size: .85rem; color: var(--ink-mute); max-width: 46ch; border-left: 3px solid var(--coral); padding-left: .9rem; }

/* =============================================================
   7. Effects — reveal on scroll
   ============================================================= */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* Stagger — pequeños retrasos escalonados en grupos de tarjetas/pasos/FAQ */
html.js .grid-3 > .reveal:nth-child(1),
html.js .steps > .reveal:nth-child(1),
html.js .faq > .reveal:nth-child(1) { transition-delay: 0s; }
html.js .grid-3 > .reveal:nth-child(2),
html.js .steps > .reveal:nth-child(2),
html.js .faq > .reveal:nth-child(2) { transition-delay: .1s; }
html.js .grid-3 > .reveal:nth-child(3),
html.js .steps > .reveal:nth-child(3),
html.js .faq > .reveal:nth-child(3) { transition-delay: .2s; }
html.js .steps > .reveal:nth-child(4),
html.js .faq > .reveal:nth-child(4) { transition-delay: .3s; }
html.js .faq > .reveal:nth-child(5) { transition-delay: .4s; }
html.js .faq > .reveal:nth-child(6) { transition-delay: .5s; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .who__chips { justify-content: center; }
}

@media (min-width: 720px) {
  .nav__links { display: flex; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cta-final { grid-template-columns: 1fr 1fr; align-items: start; }
}

@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .hero__title { font-size: clamp(2.4rem, 4.6vw, 3.6rem); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 1280px) {
  .container { padding-inline: 2rem; }
}

.cta-final { display: grid; gap: 2.6rem; align-items: start; }
.cta-final__copy p { color: var(--ink-soft); margin: 1rem 0 1.6rem; max-width: 44ch; }

/* Hero en móvil — prioriza que se vea cómodo y premium sobre caber sin scroll */
@media (max-width: 539px) {
  .hero { padding-block: 1.7rem 2.1rem; }
  .badge { font-size: .74rem; padding: .48rem .95rem; margin-bottom: 1.1rem; }
  .hero__title { margin-bottom: .9rem; }
  .hero__sub { font-size: 1rem; margin-bottom: 1.2rem; }
  .hero__actions { margin-bottom: 1.1rem; gap: .8rem; }
  .hero__trust { font-size: .85rem; padding-left: .8rem; }
  .hero__grid { gap: 2.2rem; }
  .hero__visual { gap: .75rem; }
  .hero__visual-eyebrow { display: none; }
  .chat-carousel__label { font-size: .85rem; }
  .chat-carousel__stage { max-width: 322px; }
  .chat-carousel__arrow { width: 2.1rem; height: 2.1rem; }
  .chat-carousel__arrow svg { width: 1rem; height: 1rem; }
  .phone { max-width: 270px; }
  .phone__bar { padding: .65rem .85rem; }
  .phone__body { height: 360px; padding: .65rem; gap: .55rem; }
  .bubble { font-size: .72rem; padding: .4rem .58rem; max-width: 92%; }
  .chat-gap { font-size: .62rem; padding: .2rem .6rem; }
  .chat-toggle__btn { padding: .4rem .8rem; font-size: .76rem; }
}

/* =============================================================
   9. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .whatsapp-float::before { animation: none; display: none; }
}
