/* Encanta - Component Styles */

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease;
}
#loader.loader--out {
  opacity: 0;
  pointer-events: none;
}
#loader__logo {
  height: 56px;
  width: auto;
  animation: loader-pulse 1.2s ease-in-out infinite;
}
@keyframes loader-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.96); }
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.6);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
body { padding-top: 76px; }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo__img { height: 40px; width: auto; display: block; }
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--primary); }
.nav__cta { height: 44px; padding: 0 18px; font-size: 14px; }

/* ── HERO ── */
.hero { position: relative; padding: 120px 0; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 600px 400px at 85% 20%, rgba(44,44,44,.05), transparent 60%),
    radial-gradient(ellipse 500px 300px at 10% 80%, rgba(44,44,44,.03), transparent 60%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__content { display: flex; flex-direction: column; gap: 24px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero__lead { font-size: 19px; color: var(--muted); max-width: 540px; padding-right: 50px; }
.hero__bullets { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.hero__bullet { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink-2); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero__trust {
  display: flex; align-items: center; gap: 24px;
  margin-top: 32px;
}
.trust-stat { display: flex; flex-direction: column; gap: 2px; }
.trust-stat strong {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.trust-stat span { font-size: 13px; color: var(--muted); }
.trust-stat__div { width: 1px; height: 36px; background: var(--line); }

/* Hero photo */
.hero__visual { position: relative; }
.hero__photo {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
}
.hero__progress {
  position: absolute;
  top: 12px; right: 12px;
  width: 4px;
  height: calc(100% - 24px);
  background: rgba(255,255,255,.18);
  border-radius: 999px;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}
.hero__progress-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: #ffffff;
  border-radius: 999px;
  animation: hero-progress 6s linear forwards;
}
@keyframes hero-progress {
  from { height: 0; }
  to { height: 100%; }
}
.hero__layer {
  position: absolute; inset: 0;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
.hero__layer.is-active { opacity: 1; pointer-events: auto; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero__model {
  position: absolute;
  top: -12%; left: -8%;
  width: 116%; height: 124%;
  border: 0;
  display: block;
  background: transparent;
}
.hero__badge {
  position: absolute;
  bottom: 28px; left: -28px;
  background: white;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex; align-items: center; gap: 12px;
}
.hero__badge-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary); display: grid; place-items: center;
}
.hero__badge strong { font-family: var(--font-display); font-size: 14px; display: block; }
.hero__badge span { font-size: 12px; color: var(--muted); }
.hero__chip {
  position: absolute;
  top: 24px; right: 24px;
  background: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line);
  z-index: 2;
}

/* ── PAIN ── */
.pain {
  background: #2c2c2c;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.pain::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.pain__inner { position: relative; }
.pain__head {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.pain__head h2 { color: white; }
.eyebrow--white {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}
.eyebrow--white::before { background: #ffffff; }
.eyebrow--dark {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}
.eyebrow--dark::before { background: #ffffff; }
.eyebrow--on-blue {
  background: rgba(255,255,255,.18);
  color: white;
}
.eyebrow--on-blue::before { background: white; }

.pain__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.pain__item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 24px;
  min-height: 180px;
  transition: background .2s ease, border-color .2s ease;
}
.pain__item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.25);
}
.pain__num {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.06em;
}
.pain__item p {
  color: rgba(255,255,255,.92);
  font-size: 18px; font-weight: 500;
  line-height: 1.35;
}
.pain__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.pain__cta .btn--white {
  background: #ffffff;
  color: #2c2c2c;
  border: none;
}
.pain__cta .btn--white:hover {
  background: rgba(255,255,255,.9);
}
.pain__close {
  text-align: center;
  display: flex; flex-direction: column; gap: 8px;
}
.pain__close p { color: rgba(255,255,255,.6); font-size: 17px; }
.pain__close h3 { color: white; font-size: 32px; }
.pain__close em { font-style: normal; color: #666666; }

/* ── BEFORE & AFTER ── */
.ba { background: #f5f5f5; overflow: hidden; }
.ba__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
}
.ba__head-text { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; max-width: 720px; }
.ba__eyebrow { background: #ffffff; }
.ba__title-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ba__cta { height: 48px; padding: 0 22px; font-size: 14px; }
.ba__arrows { display: flex; gap: 12px; flex-shrink: 0; }
.ba__arrow {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.ba__arrow svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ba__arrow:hover { background: #2c2c2c; border-color: #2c2c2c; color: white; }
.ba__arrow:active { transform: scale(.94); }
.ba__arrow--prev svg { transform: rotate(180deg); }
.ba__marquee {
  display: flex;
  padding: 0 0 120px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.ba__track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}
.ba__card {
  flex: 0 0 760px;
  width: 760px;
  display: flex; flex-direction: column; gap: 20px;
}
.ba__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #e5e5e5;
}
.ba__img {
  position: relative;
  background-color: #e5e5e5;
  background-size: 200% 100%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.ba__img--before { background-position: left center; }
.ba__img--after { background-position: right center; }
.ba__label {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.95);
  padding: 6px 12px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em;
  color: #2c2c2c;
  z-index: 1;
}
.ba__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0 4px;
}
.ba__brand-logo {
  height: 20px;
  width: auto;
  display: block;
}
.ba__brand span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.ba__info strong {
  font-family: var(--font-display);
  font-size: 19px;
  display: block;
  margin-bottom: 4px;
}
.ba__info span { color: var(--muted); font-size: 15px; }

@media (max-width: 768px) {
  .ba__label { font-size: 8px; padding: 3px 6px; letter-spacing: 0.08em; border-radius: 5px; top: 8px; left: 8px; }

  .ba__snap {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 0 20px 60px;
  }
  .ba__snap::-webkit-scrollbar { display: none; }
  .ba__snap .ba__card {
    flex: 0 0 calc(100vw - 40px);
    width: calc(100vw - 40px);
    scroll-snap-align: start;
  }
  .ba__snap .ba__images { aspect-ratio: 4/3; }
}

@media (max-width: 640px) {
  .ba__images { aspect-ratio: 4/3; }
  .ba__marquee { padding: 0 20px 60px; -webkit-mask-image: none; mask-image: none; overflow: hidden; }
  .ba__track { gap: 16px; }
}

/* ── SOLUTION ── */
.solution__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.solution__card { display: flex; flex-direction: column; gap: 16px; }
.solution__ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  display: grid; place-items: center;
}
.solution__card p { color: var(--muted); }
.solution__highlight {
  display: flex; align-items: center; gap: 24px;
  background: #2c2c2c;
  color: white;
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  box-shadow: var(--shadow-blue);
}
.solution__highlight-ico {
  flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center;
}
.solution__highlight h3 { color: white; margin-bottom: 4px; }
.solution__highlight p { color: rgba(255,255,255,.85); }

/* ── DIFF ── */
.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
}
.diff__item {
  display: flex; gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.diff__ico {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: grid; place-items: center;
}
.diff__item h4 { margin-bottom: 4px; }
.diff__item p { color: var(--muted); font-size: 15px; }

/* ── PROCESS ── */
.process__list {
  list-style: none;
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.1);
}
.process__step {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: padding .2s ease;
}
.process__step:hover { padding-left: 8px; }
.process__num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}
.process__content h4 { color: white; font-size: 22px; margin-bottom: 4px; }
.process__content p { color: rgba(255,255,255,.65); font-size: 16px; }
.process__ico { display: grid; place-items: center; }

/* ── TESTI ── */
.testi { padding: 0; overflow: hidden; }
.testi__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi__marquee {
  display: flex; flex-direction: column; gap: 24px;
  padding: 24px 0 120px;
  margin-top: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.testi__track {
  display: flex; gap: 24px;
  width: max-content;
  will-change: transform;
}
.testi__track--ltr { animation: testi-ltr 80s linear infinite; }
.testi__track--rtl { animation: testi-rtl 80s linear infinite; }
.testi__track:hover { animation-play-state: paused; }
@keyframes testi-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes testi-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.testi__card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  flex: 0 0 380px;
  width: 380px;
  transition: transform .2s ease;
}
.testi__card:hover {
  transform: translateY(-4px);
}
.testi__quote-ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-light);
  display: grid; place-items: center;
}
.testi__card blockquote {
  font-family: var(--font-display);
  font-size: 19px; line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.testi__rating { display: flex; gap: 2px; }
.testi__result {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  padding-top: 4px;
  margin-top: -4px;
}
.testi__card figcaption {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.testi__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #2c2c2c;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.testi__card figcaption .testi__avatar span { color: #ffffff !important; font-size: 16px; }
.testi__card figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
}
.testi__card figcaption span {
  font-size: 13px; color: var(--muted);
}

/* ── FAQ ── */
.faq { padding: 0; overflow: visible; }
.faq__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.faq__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 96px;
  align-self: start;
}
.faq__head p { color: var(--muted); }
.faq__cta { align-self: flex-start; margin-top: 4px; }
.faq__list { list-style: none; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq__plus {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: grid; place-items: center;
  transition: transform .2s ease;
}
.faq__item.is-open .faq__plus {
  background: var(--primary);
  color: white;
  transform: rotate(180deg);
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq__a > p {
  overflow: hidden;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}
.faq__item.is-open .faq__a > p { padding-bottom: 24px; }

/* ── CTA FINAL ── */
.cta-final {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: white;
}
.cta-final__bg {
  position: absolute; inset: 0;
  background: #2c2c2c;
  z-index: 0;
}
.cta-final__bg::before {
  content: '';
  position: absolute; inset: 0;
  background: transparent;
}
.cta-final__inner { position: relative; z-index: 1; }
.cta-final__content {
  max-width: 720px; margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.cta-final h2 { color: white; font-size: clamp(36px, 4.5vw, 56px); }
.cta-final p { color: rgba(255,255,255,.85); font-size: 19px; max-width: 580px; }
.cta-final__buttons { margin-top: 12px; }
.btn--white {
  background: white;
  color: var(--primary);
}
.btn--white:hover {
  background: #F7FAFD;
  transform: translateY(-1px);
}
.cta-final__perks {
  display: flex; gap: 32px; flex-wrap: wrap; justify-content: center;
  margin-top: 16px;
  font-size: 14px; color: rgba(255,255,255,.85);
}
.cta-final__perks > div { display: inline-flex; align-items: center; gap: 8px; }

/* ── URGENCY ── */
.urg {
  background: linear-gradient(135deg, #B53A0F 0%, #D9480F 100%);
  color: white;
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}
.urg::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 24px,
    rgba(0,0,0,.08) 24px 48px
  );
  opacity: .35;
}
.urg__inner {
  position: relative;
  display: flex; align-items: center; gap: 24px;
}
.urg__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center;
}
.urg__content { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.urg__content strong {
  font-family: var(--font-display);
  font-size: 18px; letter-spacing: -0.01em;
}
.urg__content span { color: rgba(255,255,255,.9); font-size: 15px; }
.urg__btn { color: #B53A0F; height: 48px; padding: 0 22px; font-size: 14px; }

/* ── FOOTER ── */
.foot {
  background: #ffffff;
  color: var(--muted);
  padding: 24px 0;
}
.foot__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot__brand p {
  color: rgba(255,255,255,.6);
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.5;
}
.logo--foot .logo__name { color: white; }
.foot__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.foot__col h5 {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: white;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.foot__col a, .foot__col p {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
  transition: color .15s ease;
}
.foot__col a:hover { color: white; }
.foot__col svg { flex-shrink: 0; margin-top: 2px; }
.foot__bottom {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 1280px) {
  .ba__card { flex: 0 0 480px; width: 480px; }
}

@media (max-width: 1024px) {
  .hero { padding: 80px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .pain { padding: 80px 0; }
  .pain__grid { grid-template-columns: repeat(2, 1fr); }
  .solution__grid, .testi__grid, .diff__grid { grid-template-columns: repeat(2, 1fr); }
  .faq__inner { grid-template-columns: 1fr; gap: 32px; padding: 80px 24px !important; }
  .faq__head { position: static; }
  .nav__links { display: none; }
  .foot__inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-final { padding: 80px 0; }

  /* Section paddings */
  section .container[style*="120px 24px"],
  section > div[style*="120px 0 0"] {
    padding: 80px 24px !important;
  }

  /* Before & After */
  .ba > div[style*="120px"] { padding-top: 80px !important; }
  .ba__head { flex-direction: column; align-items: flex-start; }
  .ba__card { flex: 0 0 420px; width: 420px; }
  .ba__marquee { padding-bottom: 80px; }

  /* Testimonials */
  .testi > div[style*="120px"] { padding-top: 80px !important; }
  .testi__marquee { padding: 24px 0 80px; }
  .testi__card { flex: 0 0 340px; width: 340px; }
}

@media (max-width: 768px) {
  .hero { padding: 60px 0; }
  .pain { padding: 60px 0; }
  .cta-final { padding: 60px 0; }
  .pain__grid { grid-template-columns: 1fr; }
  .solution__grid, .testi__grid, .diff__grid { grid-template-columns: 1fr; }
  .solution__card { padding-left: 20px; padding-right: 20px; }
  .solution__card p { padding-left: 20px; padding-right: 20px; }
  .solution__highlight { flex-direction: column; text-align: center; padding: 28px; }
  .hero__trust { flex-wrap: wrap; gap: 16px 20px; }
  .trust-stat__div { display: none; }
  .urg__inner { flex-direction: column; text-align: center; gap: 16px; }
  .foot__cols { grid-template-columns: 1fr; }
  .foot__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav__cta span { display: none; }
  .process__step { grid-template-columns: 56px 1fr; gap: 16px; }
  .process__ico { display: none; }
  .hero__chip { right: 12px; top: 16px; font-size: 12px; padding: 8px 12px; }
  .hero__badge { left: 8px; bottom: 16px; }

  /* Section paddings */
  section .container[style*="120px 24px"],
  section > div[style*="120px 0 0"] {
    padding: 80px 20px !important;
  }
  .faq__inner { padding: 60px 20px !important; }

  /* Before & After */
  .ba > div[style*="120px"] { padding-top: 60px !important; }
  .ba__title-row { gap: 12px; }
  .ba__cta { height: 44px; padding: 0 18px; font-size: 13px; }
  .ba__arrows { gap: 8px; }
  .ba__arrow { width: 48px; height: 48px; }
  .ba__card { flex: 0 0 320px; width: 320px; }
  .ba__images { aspect-ratio: 4/3; }
  .ba__marquee { padding-bottom: 60px; }

  /* Testimonials */
  .testi > div[style*="120px"] { padding-top: 60px !important; }
  .testi__marquee { padding: 16px 0 60px; }
  .testi__card { flex: 0 0 280px; width: 280px; padding: 22px; }
  .testi__card blockquote { font-size: 16px; }

  /* Nav */
  body { padding-top: 64px; }
  .nav__inner { height: 64px; gap: 16px; }
  .logo__img { height: 32px; }
  .nav__cta { height: 40px; padding: 0 14px; font-size: 13px; }

  /* Pain cards */
  .pain__item { min-height: unset; padding: 16px 20px; gap: 12px; }
  .pain__item p { font-size: 16px; }

  /* Process steps */
  .process__content h4 { font-size: 17px !important; }
  .process__content p { font-size: 14px; }
  .process__num { font-size: 28px !important; }

  /* FAQ */
  .faq__q { font-size: 16px; padding: 18px 0; }

  /* Headings */
  h1 { font-size: clamp(32px, 7vw, 44px) !important; }
  h2 { font-size: clamp(28px, 5.5vw, 36px) !important; }
  .diff .s-head h2 { font-size: 22px !important; }
  .hero__lead { font-size: 16px; }
}

@media (max-width: 768px) {
  .ba__head { align-items: center; text-align: center; gap: 20px; }
  .ba__head-text { align-items: center; text-align: center; width: 100%; }
  .ba__title-row { flex-direction: column; align-items: center; gap: 16px; }
  .ba__title-row h2 { font-size: clamp(36px, 8vw, 44px) !important; }
  .ba__cta { height: 52px; padding: 0 28px; font-size: 15px; }
  .ba__arrows { justify-content: center; align-self: center; }
  .ba__arrow { width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .hero__content { align-items: center; text-align: center; }
  .hero__content h1 { text-align: center; }
  .hero__lead { text-align: center; padding-left: 20px; padding-right: 20px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .diff .s-head h2 { font-size: 18px; }
}

/* ── ABOUT ── */
.about { background: #F2F2F2; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 600px;
}
.about__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 80px 64px;
}
.about__text h2 { margin: 0; }
.about__text p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}
.about__cta { margin-top: 8px; }
.about__media {
  position: relative;
  overflow: hidden;
  background: #e5e5e5;
}
.about__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 90% center;
  display: block;
}
@media (max-width: 768px) {
  .about__inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .about__text { padding: 60px 24px; }
  .about__media { aspect-ratio: 4/3; position: relative; }
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
.wa-float img { filter: brightness(0) invert(1); }
