@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-latin.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('../fonts/instrumentsans-latin.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
}
:root {
  --paper:       #F3F4F1;
  --paper-2:     #F9FAF8;
  --surface:     #FFFFFF;
  --ink:         #14171A;
  --ink-2:       #40474D;
  --mute:        #767D82;
  --hairline:    rgba(20, 23, 26, .12);
  --hairline-2:  rgba(20, 23, 26, .07);
  --ember:       #D9531E;
  --ember-soft:  #F0863C;
  --whatsapp:    #15803D;
  --whatsapp-deep: #0F612E;
  --plate:       #14171A;
  --shadow-sm:   0 1px 2px rgba(12, 15, 18, .05), 0 8px 24px -12px rgba(12, 15, 18, .14);
  --shadow-lg:   0 2px 6px rgba(12, 15, 18, .07), 0 40px 80px -40px rgba(12, 15, 18, .38);

  --ff-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --ff-body:    'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;

  --r-plate: 22px;
  --r-card:  14px;
  --r-pill:  100px;

  --gutter: clamp(1.1rem, 4vw, 2.75rem);
  --maxw:   1440px;
  --sect-y: clamp(4rem, 8vw, 7.5rem);

  --ease: cubic-bezier(.22, .68, .3, 1);

  color-scheme: light;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

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

.u-sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.u-skip {
  position: absolute; top: .6rem; left: .6rem; z-index: 200;
  padding: .6rem 1rem; border-radius: var(--r-pill);
  background: var(--ink); color: var(--paper);
  transform: translateY(-160%);
  transition: transform .2s var(--ease);
}
.u-skip:focus { transform: none; }

.t-display {
  font-family: var(--ff-display);
  font-weight: 620;
  font-stretch: 94%;
  letter-spacing: -.033em;
  line-height: .96;
  text-wrap: balance;
  margin: 0;
}
.t-xl { font-size: clamp(2.7rem, 7.4vw, 6rem); }
.t-lg { font-size: clamp(2.05rem, 4.4vw, 3.7rem); }
.t-md { font-size: clamp(1.55rem, 2.5vw, 2.35rem); line-height: 1.04; }

.t-quiet { color: var(--mute); }

.t-lead {
  font-size: clamp(1.02rem, 1.15vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 46ch;
  margin: 0;
}

.t-data {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .76rem;
  letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--sect-y); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .78rem 1.4rem;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: 580;
  font-stretch: 100%;
  font-size: .92rem;
  letter-spacing: -.005em;
  white-space: nowrap;
  transition: transform .22s var(--ease), background-color .22s var(--ease),
              color .22s var(--ease), border-color .22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid  { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--ember); color: #fff; }

.btn--ember  { background: var(--ember); color: #fff; }
.btn--ember:hover { background: var(--ink); color: #fff; }

.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--whatsapp:hover { background: var(--whatsapp-deep); }

.btn--ghost  { border: 1px solid var(--hairline); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.btn__arrow { font-size: .9em; transition: transform .22s var(--ease); }
.btn:hover .btn__arrow { transform: translate(2px, -2px); }

.btn--sm { padding: .58rem 1.05rem; font-size: .82rem; gap: .4rem; }

.plus {
  --size: 46px;
  width: var(--size); height: var(--size);
  flex: 0 0 var(--size);
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ember);
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform .3s var(--ease), background-color .25s var(--ease);
}
.plus:hover { transform: rotate(90deg); background: var(--ink); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  justify-self: start;
  width: fit-content;
  padding: .34rem .78rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .9);
  color: #14171A;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(20, 23, 26, .08);
  font-family: var(--ff-display);
  font-weight: 600;
  font-stretch: 108%;
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.icon { width: 16px; height: 16px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--hairline-2); }

.nav__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 74px;
  padding-block: .7rem;
}

.nav__logo { flex: 0 0 auto; display: block; }
.nav__logo img { width: clamp(112px, 12vw, 146px); height: auto; }
.nav__logo .logo--dark { display: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  margin-inline: auto;
}
.nav__link {
  position: relative;
  font-size: .93rem;
  color: var(--ink-2);
  padding-block: .3rem;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--ember);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__aside { display: flex; align-items: center; gap: .8rem; }
.nav__phone { font-family: var(--ff-body); font-weight: 500; font-size: .85rem; color: var(--mute); }
.nav__phone:hover { color: var(--whatsapp); }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  position: relative;
}
.nav__burger span {
  position: absolute; left: 12px; right: 12px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { bottom: 16px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav__links {
    position: fixed;
    inset: 74px 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem var(--gutter) 2rem;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline-2);
    transform: translateY(-115%);
    transition: transform .38s var(--ease);
    margin: 0;
  }
  .nav__links.is-open { transform: none; }
  .nav__aside { margin-left: auto; }
  .nav__link {
    width: 100%;
    padding-block: .95rem;
    border-bottom: 1px solid var(--hairline-2);
    font-family: var(--ff-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -.02em;
  }
  .nav__link::after { display: none; }
  .nav__phone { display: none; }
  .nav__burger { display: block; }
}

.hero { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); padding-top: clamp(.6rem, 1.6vw, 1.1rem); }

.hero__plate {
  position: relative;
  border-radius: var(--r-plate);
  overflow: hidden;
  min-height: min(76vh, 700px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.1rem, 2.4vw, 2rem);
  isolation: isolate;
  background: var(--paper-2);
}

.hero__media {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(20,17,12,.14) 0%, rgba(20,17,12,0) 30%);
}

.hero__top { display: flex; justify-content: flex-end; }

.quickform {
  position: relative;
  width: min(360px, 88vw);
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .6);
  backdrop-filter: blur(20px) saturate(1.2);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.quickform__title {
  font-family: var(--ff-display);
  font-weight: 640; font-stretch: 96%;
  font-size: 1.08rem; letter-spacing: -.02em;
  margin: 0 0 .3rem;
  color: #14171A;
}
.quickform__sub { margin: 0 0 1rem; font-size: .8rem; line-height: 1.45; color: rgba(20,23,26,.62); max-width: 30ch; }
.quickform .form { gap: .65rem; }
.quickform .form__row { grid-template-columns: 1fr; gap: .65rem; }
.quickform .field label { font-size: .6rem; color: rgba(20,23,26,.55); }
.quickform .field select {
  padding: .7rem .85rem; font-size: .88rem;
  color: #14171A;
  background-color: rgba(255,255,255,.9);
  border-color: rgba(20,23,26,.15);
  background-image: linear-gradient(45deg, transparent 50%, rgba(20,23,26,.5) 50%),
                    linear-gradient(135deg, rgba(20,23,26,.5) 50%, transparent 50%);
}
.quickform .field select option { color: #14171A; background: #fff; }
.quickform button[type="submit"] { width: 100%; justify-content: center; margin-top: .35rem; }

@media (max-width: 620px) {
  .hero__top { justify-content: stretch; }
  .quickform { width: 100%; }
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.hero__copy {
  flex: 1 1 26rem; max-width: 40rem;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 18px;
  padding: clamp(1.1rem, 2vw, 1.6rem) clamp(1.2rem, 2.4vw, 1.8rem);
  box-shadow: var(--shadow-lg);
}
.hero__title { color: #14171A; }
.hero__title .t-quiet { color: rgba(20,23,26,.5); }
.hero__sub {
  margin: 1rem 0 0;
  max-width: 42ch;
  color: rgba(20,23,26,.72);
  font-size: clamp(.95rem, 1.05vw, 1.08rem);
  line-height: 1.5;
}
.hero__cta { display: flex; align-items: center; gap: .7rem; padding-bottom: .3rem; flex-wrap: wrap; }

@media (max-width: 700px) {
  .hero__plate { min-height: 560px; }
  .hero__copy { display: none; }
}

.intro__statement {
  font-family: var(--ff-display);
  font-weight: 520;
  font-stretch: 98%;
  font-size: clamp(1.3rem, 2.3vw, 2.05rem);
  line-height: 1.24;
  letter-spacing: -.022em;
  margin: 0;
  max-width: 40ch;
  text-wrap: balance;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.6rem, 1.2vw, 1rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.stat {
  padding: clamp(1.2rem, 2vw, 1.7rem);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  background: var(--surface);
  display: flex; flex-direction: column; gap: .5rem;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.stat:hover { border-color: var(--ember); transform: translateY(-3px); }
.stat__n {
  font-family: var(--ff-display);
  font-weight: 600;
  font-stretch: 92%;
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  line-height: .92;
  letter-spacing: -.045em;
  color: var(--ember);
  font-variant-numeric: tabular-nums;
}
.stat__n sup { font-size: .42em; top: -.9em; letter-spacing: 0; }
.stat__t { font-size: .875rem; line-height: 1.4; color: var(--mute); max-width: 22ch; }

@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.models { background: var(--paper-2); border-block: 1px solid var(--hairline-2); }

.models__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
}
.models__head h2 { max-width: 17ch; }
.models__intro { margin-top: 1rem; }

.filters {
  display: flex; flex-wrap: wrap; gap: .45rem;
  padding-bottom: .2rem;
}
.filter {
  padding: .5rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
  font-family: var(--ff-display);
  font-weight: 560; font-stretch: 104%;
  font-size: .8rem;
  letter-spacing: .01em;
  color: var(--mute);
  transition: all .22s var(--ease);
}
.filter:hover { color: var(--ink); border-color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.grid-models {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.7rem, 1.4vw, 1.15rem);
}
@media (max-width: 980px) { .grid-models { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .grid-models { grid-template-columns: 1fr; } }

.model {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.model:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: var(--shadow-sm); }
.model.is-hidden { display: none; }

.model__fig { position: relative; margin: 0; aspect-ratio: 3 / 2; overflow: hidden; background: var(--paper-2); }
.model__fig img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.model:hover .model__fig img { transform: scale(1.05); }
.model__tag { position: absolute; top: .8rem; left: .8rem; }

.model__body { display: flex; flex-direction: column; gap: .85rem; padding: 1.1rem 1.15rem 1.25rem; flex: 1; }
.model__name {
  font-family: var(--ff-display);
  font-weight: 620; font-stretch: 96%;
  font-size: 1.1rem; letter-spacing: -.025em; line-height: 1.18;
  margin: 0;
}

.model__meta {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .5rem 1.1rem;
  padding-block: .75rem;
  border-block: 1px solid var(--hairline-2);
}
.meta-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-2);
}
.meta-chip .icon { color: var(--mute); }

.model__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.model__price {
  font-family: var(--ff-body);
  font-weight: 700; font-size: 1.05rem;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.model__price small { display: block; font-size: .58rem; font-weight: 400; letter-spacing: .09em; text-transform: uppercase; color: var(--mute); margin-top: .12rem; }

.models__note {
  margin: clamp(1.4rem, 2.5vw, 2rem) 0 0;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .82rem;
  color: var(--mute);
  letter-spacing: .01em;
}

@media (max-width: 1180px) {
  .models__head { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 380px) {
  .model__foot { flex-direction: column; align-items: stretch; }
  .model__foot .btn { justify-content: center; }
}

.anatomy__head { margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.anatomy__title { display: flex; flex-wrap: wrap; align-items: baseline; gap: .1rem .7rem; }
.anatomy__title span:last-child { color: var(--mute); }
.anatomy__note { margin: .8rem 0 0; font-size: .95rem; color: var(--mute); max-width: 40ch; }

.anatomy__grid {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-plate);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  align-items: center;
}
.anatomy__fig { margin: 0; border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 11; }
.anatomy__fig img { width: 100%; height: 100%; object-fit: cover; }

.anatomy__list { display: grid; gap: 0; margin: 0; }
.spec {
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr);
  gap: 0 1rem;
  padding-block: 1.05rem;
  border-bottom: 1px solid var(--hairline-2);
}
.spec:first-child { border-top: 1px solid var(--hairline-2); }
.spec__k {
  font-family: var(--ff-display);
  font-weight: 600;
  font-stretch: 92%;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ember);
  padding-top: .1rem;
  font-variant-numeric: tabular-nums;
}
.spec__t {
  font-family: var(--ff-display);
  font-weight: 600; font-stretch: 98%;
  font-size: 1.02rem; letter-spacing: -.02em;
  margin: 0 0 .2rem;
  color: var(--ink);
}
.spec__d { margin: 0; font-size: .875rem; line-height: 1.5; color: var(--mute); max-width: 44ch; }

@media (max-width: 900px) {
  .anatomy__grid { grid-template-columns: 1fr; }
}

.showcase__card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-plate);
  overflow: hidden;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}
.showcase__frame { position: relative; aspect-ratio: 16 / 8; background: var(--paper-2); }
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .85s var(--ease);
}
.slide.is-active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.showcase__count {
  position: absolute; right: 1rem; bottom: 1rem; z-index: 2;
  padding: .3rem .6rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  font-family: var(--ff-body); font-weight: 600; font-size: .74rem;
  color: #14171A;
  font-variant-numeric: tabular-nums;
}

.showcase__info {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: clamp(1.2rem, 3vw, 2.5rem); flex-wrap: wrap;
  padding: clamp(1.2rem, 2.4vw, 2rem);
}
.showcase__text { max-width: 46ch; }
.showcase__text h3 {
  font-family: var(--ff-display);
  font-weight: 620; font-stretch: 96%;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: -.026em; line-height: 1.1;
  margin: 0 0 .5rem;
  text-wrap: balance;
}
.showcase__text p { margin: 0; color: var(--mute); font-size: .92rem; line-height: 1.5; }

.showcase__ctrl { display: flex; align-items: center; gap: 1rem; }
.dots { display: flex; align-items: center; gap: .45rem; }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--hairline);
  transition: all .3s var(--ease);
}
.dot[aria-current="true"] { background: var(--ember); width: 22px; border-radius: var(--r-pill); }

@media (max-width: 700px) {
  .showcase__frame { aspect-ratio: 4 / 3; }
}

.arrow {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  color: var(--ink);
  transition: all .25s var(--ease);
}
.arrows { display: flex; gap: .4rem; }
.arrow:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.process__lead {
  font-family: var(--ff-display);
  font-weight: 520; font-stretch: 98%;
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  line-height: 1.22; letter-spacing: -.025em;
  margin: 0; max-width: 44ch;
  text-wrap: balance;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.7rem, 1.4vw, 1.15rem);
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
}
.step { display: flex; flex-direction: column; gap: .8rem; }
.step__fig { margin: 0; border-radius: var(--r-card); overflow: hidden; aspect-ratio: 4 / 3; background: var(--paper-2); border: 1px solid var(--hairline-2); }
.step:nth-child(4) .step__fig { background: var(--surface); display: grid; place-items: center; }
.step__fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.step:hover .step__fig img { transform: scale(1.04); }
.step__k {
  font-family: var(--ff-body); font-weight: 600; font-size: .74rem; color: var(--ember);
  font-variant-numeric: tabular-nums; letter-spacing: .02em;
}
.step__t {
  font-family: var(--ff-display); font-weight: 620; font-stretch: 98%;
  font-size: 1.05rem; letter-spacing: -.022em; margin: 0;
}
.step__d { margin: 0; font-size: .875rem; line-height: 1.5; color: var(--mute); }

.step__final {
  display: grid; place-items: center; gap: .5rem;
  width: 100%; height: 100%;
  text-align: center;
  padding: 1rem;
}
.step__final .plus { --size: 52px; }
.step__final p { margin: 0; font-family: var(--ff-body); font-weight: 600; font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; color: var(--mute); }

@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.quotes { background: var(--paper-2); border-block: 1px solid var(--hairline-2); }
.quotes__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.quotes__title { max-width: 20ch; }
.quotes__count { font-family: var(--ff-body); font-weight: 500; font-size: .85rem; color: var(--mute); font-variant-numeric: tabular-nums; white-space: nowrap; }

.quotes__body {
  display: grid;
  grid-template-columns: minmax(0, .42fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.quotes__fig {
  margin: 0; border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 3 / 4; background: var(--paper-2);
  position: sticky; top: 108px;
}
.quotes__fig img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 760px) {
  .quotes__body { grid-template-columns: 1fr; }
  .quotes__fig { max-width: 220px; }
}

.foot { background: var(--paper-2); border-top: 1px solid var(--hairline-2); }

.cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.cta__title { color: var(--ink); }
.cta__title .t-quiet { color: var(--mute); }

.contact { display: grid; gap: 1.5rem; margin-top: clamp(2rem, 4vw, 3rem); }
.contact__row { display: grid; grid-template-columns: 5.5rem minmax(0, 1fr); gap: 1rem; align-items: baseline; }
.contact__k {
  font-family: var(--ff-body); font-weight: 600; font-size: .7rem;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--mute);
}
.contact__v { font-size: .98rem; color: var(--ink); }
.contact__v a { border-bottom: 1px solid var(--hairline); transition: border-color .2s var(--ease), color .2s var(--ease); }
.contact__v a:hover { color: var(--whatsapp); border-color: var(--whatsapp); }

.form { display: grid; gap: .8rem; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label {
  font-family: var(--ff-body); font-weight: 600; font-size: .7rem;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--mute);
}
.field input,
.field select,
.field textarea {
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: .8rem .9rem;
  width: 100%;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--mute) 50%),
                    linear-gradient(135deg, var(--mute) 50%, transparent 50%);
  background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--mute); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ember);
}
.field input::placeholder, .field textarea::placeholder { color: var(--mute); opacity: .7; }

.form__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: .3rem; }
.form__note { margin: 0; font-size: .74rem; color: var(--mute); max-width: 32ch; line-height: 1.45; }
.form__msg { margin: 0; font-size: .8rem; color: var(--whatsapp); min-height: 1.2em; }

@media (max-width: 860px) {
  .cta__grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .form__row { grid-template-columns: 1fr; }
}

.foot__nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  padding-block: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--hairline-2);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.foot__links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.foot__links a { font-size: .9rem; color: var(--mute); transition: color .2s var(--ease); }
.foot__links a:hover { color: var(--ink); }
.foot__social { display: flex; align-items: center; gap: .5rem; }
.social {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  color: var(--ink);
  transition: all .25s var(--ease);
}
.social:hover { background: var(--ember); border-color: var(--ember); color: #fff; transform: translateY(-2px); }
.social svg { width: 15px; height: 15px; fill: currentColor; }

.wordmark { position: relative; overflow: hidden; padding-top: clamp(1rem, 3vw, 2rem); }
.wordmark__text {
  font-family: var(--ff-display);
  font-weight: 680;
  font-stretch: 78%;
  font-size: clamp(3.4rem, 15.5vw, 15rem);
  line-height: .82;
  letter-spacing: -.045em;
  text-align: center;
  margin: 0;
  color: var(--hairline);
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
}

.foot__legal {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding-block: 1.6rem;
  border-top: 1px solid var(--hairline-2);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .82rem;
  color: var(--mute);
}
.foot__legal a:hover { color: var(--ink); }

.wa {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 90;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .7rem 1.1rem .7rem .85rem;
  border-radius: var(--r-pill);
  background: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow-lg);
  font-family: var(--ff-display); font-weight: 580; font-size: .86rem;
  transform: translateY(140%);
  transition: transform .45s var(--ease), background-color .25s var(--ease);
}
.wa.is-in { transform: none; }
.wa:hover { background: var(--whatsapp-deep); }
.wa:hover::before { animation-play-state: paused; opacity: 0; }
.wa svg { width: 18px; height: 18px; fill: currentColor; position: relative; }
.wa span { position: relative; }
.wa::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--whatsapp);
  opacity: .55;
  z-index: -1;
  animation: wa-pulse 2.6s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: .4; }
  70%  { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}
@media (max-width: 520px) { .wa span { display: none; } .wa { padding: .8rem; } }

.js-reveal .reveal { opacity: 0; transform: translateY(18px); }
.js-reveal .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}

.js-reveal .hero__plate .quickform,
.js-reveal .hero__plate .hero__copy,
.js-reveal .hero__plate .hero__cta { opacity: 0; transform: translateY(14px); }
.js-reveal .hero.is-ready .quickform  { animation: rise .9s var(--ease) .2s forwards; }
.js-reveal .hero.is-ready .hero__copy { animation: rise .9s var(--ease) .1s forwards; }
.js-reveal .hero.is-ready .hero__cta  { animation: rise .9s var(--ease) .3s forwards; }
.js-reveal .hero__media { animation: settle 1.6s var(--ease) forwards; }

@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes settle { from { transform: scale(1.1); } to { transform: scale(1.03); } }

@media (prefers-reduced-motion: reduce) {
  .wa { transform: none; }
  .slide { transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
