:root {
  --dark: #101827;
  --ink: #1f2937;
  --muted: #64748b;
  --warm: #facc15;
  --warm-2: #f59e0b;
  --cream: #f8e9c7;
  --soft: #eef2e7;
  --white: #fff;
  --green: #128c7e;
  --blue: #3652a3;
  --line: rgba(148, 163, 184, .36);
  --shadow: 0 24px 70px rgba(15, 23, 42, .18);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 8%, rgba(250, 204, 21, .26), transparent 30%),
    radial-gradient(circle at 82% 34%, rgba(18, 140, 126, .16), transparent 28%),
    linear-gradient(145deg, #edf2e5 0%, #dfd8c2 38%, #f7ecd2 72%, #f6d24b 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.55;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 4px solid rgba(250, 204, 21, .65); outline-offset: 3px; }

.container { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.container--narrow { width: min(820px, calc(100% - 32px)); }
.section { padding: 86px 0; position: relative; }

.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
  transform: translateY(0);
  transition: transform .36s ease, opacity .36s ease;
}
.topbar.is-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}
.floating-messengers { display: none; }
.topbar__inner { min-height: 72px; display: flex; align-items: center; gap: 20px; }
.brand { text-decoration: none; min-width: 180px; }
.brand__name { display: block; font-weight: 900; line-height: 1; }
.brand__caption { display: block; color: var(--muted); font-size: 13px; margin-top: 3px; }
.desktop-nav { display: flex; gap: 16px; margin-left: auto; font-size: 14px; }
.desktop-nav a, .topbar__phone, .footer a { text-decoration: none; }
.desktop-nav a:hover, .topbar__phone:hover, .footer a:hover { color: var(--warm-2); }
.topbar__phone { font-weight: 900; white-space: nowrap; }
.topbar__cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(15,23,42,.18);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 118px 0 86px;
  color: #fff;
  background-color: #101827;
  background-image: linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.8)), url("images/optimized/hero-bg.webp?v=20260729-2");
  background-size: cover;
  background-position: center 36%;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -26% -10%;
  height: 42%;
  background: radial-gradient(circle at 50% 20%, rgba(250,204,21,.28), transparent 55%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; max-width: 900px; text-align: center; }
.hero__mobile-copy { display: none; }
.hero__mobile-label { display: none; }
.hero__benefits { display: none; }
.hero__badge {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(14px);
  font-weight: 800;
  margin-bottom: 24px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 82px);
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero__lead {
  margin: 24px auto 0;
  max-width: 760px;
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 2.2vw, 24px);
}
.hero__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__hint { color: rgba(255,255,255,.75); margin: 18px 0 0; }
.hero__photo-link {
  display: inline-flex;
  margin-top: 16px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 22px;
  padding: 13px 22px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s ease, background-color .22s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: scale(.96); }
.btn--big { min-height: 64px; padding: 18px 28px; font-size: 18px; }
.btn--yellow { background: var(--warm); color: #111827; box-shadow: 0 20px 45px rgba(250,204,21,.35); }
.btn--glass { background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.72); backdrop-filter: blur(12px); }
.btn--dark { background: var(--dark); color: #fff; box-shadow: 0 18px 36px rgba(15,23,42,.22); }
.btn--whatsapp { background: #139e68; color: #fff; box-shadow: 0 14px 30px rgba(19,158,104,.22); }
.btn--max { background: #3456ad; color: #fff; box-shadow: 0 14px 30px rgba(52,86,173,.22); }
.btn--whatsapp:hover { background: #0f8d5d; }
.btn--max:hover { background: #294792; }
.btn__icon { width: 23px; height: 23px; flex: 0 0 23px; object-fit: contain; }
svg.btn__icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-band { background: #111827; color: #fff; padding: 18px 0; }
.trust-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.trust-band__grid div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.trust-band strong { display: block; color: var(--warm); }
.trust-band span { display: block; color: rgba(255,255,255,.75); font-size: 14px; margin-top: 3px; }

.section-head { margin-bottom: 34px; }
.section-head--center { max-width: 760px; margin-inline: auto; text-align: center; }
.section-head p, .photo-cta p, .form-copy p {
  margin: 0 0 10px;
  text-transform: uppercase;
  color: var(--warm-2);
  font-weight: 900;
  font-size: 13px;
}
.section-head h2, .photo-cta h2, .form-copy h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.04;
}
.section-head span, .photo-cta span, .form-copy span { display: block; color: var(--muted); margin-top: 12px; font-size: 18px; }

.problems__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.problem-card, .advantage, .process__grid li, details {
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
  backdrop-filter: blur(18px);
}
.problem-card { padding: 28px; text-align: center; backdrop-filter: blur(12px); }
.problem-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff7cc, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(250,204,21,.28), 0 14px 26px rgba(15,23,42,.08);
}
.problem-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #111827;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.problem-card:nth-child(2) .problem-icon svg { stroke: #0ea5e9; fill: rgba(14,165,233,.16); }
.problem-card:nth-child(3) .problem-icon svg { stroke: #111827; }
.problem-card:nth-child(4) .problem-icon svg { stroke: #334155; }
.problem-card h3, .advantage h3, .process__grid h3 { margin: 0 0 8px; font-size: 21px; }
.problem-card p, .advantage p, .process__grid p { margin: 0; color: var(--muted); }
.note {
  margin: 22px 0 0;
  padding: 18px 22px;
  border-radius: 20px;
  background: #fff8dc;
  border-left: 5px solid var(--warm-2);
  font-weight: 700;
}

.services { background: transparent; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  text-align: left;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(15,23,42,.14);
  cursor: pointer;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
}
.service-card img { width: 100%; height: 205px; object-fit: cover; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.service-card:hover { transform: translateY(-10px) scale(1.015); box-shadow: 0 30px 70px rgba(15,23,42,.22); }
.service-card:hover img { transform: scale(1.07); }
.service-card h3 { margin: 16px 20px 8px; font-size: 22px; line-height: 1.12; }
.service-card p { margin: 0 20px 16px; color: var(--muted); }
.service-card b { margin: auto 20px 20px; color: var(--warm-2); }
.service-card__price {
  align-self: flex-start;
  margin: -13px 20px 0;
  position: relative;
  z-index: 1;
  background: var(--warm);
  color: #111827;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(250,204,21,.26);
}

.photo-cta { padding: 58px 0; }
.photo-cta__box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.72);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.photo-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.photo-cta__actions .btn span { display: inline; margin: 0; color: inherit; font-size: inherit; }

.why { background: transparent; }
.why__grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  grid-template-areas:
    "heading ."
    "list master";
  column-gap: 54px;
  row-gap: 26px;
  align-items: start;
}
.why__heading { grid-area: heading; margin-bottom: 0; }
.why__list { grid-area: list; display: grid; gap: 18px; }
.advantage { display: flex; gap: 18px; align-items: flex-start; padding: 22px; }
.advantage .advantage__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  border-radius: 18px;
  background: #fef3c7;
  color: var(--dark);
}
.advantage__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.master-card { grid-area: master; margin: 0; padding: 16px; border-radius: 34px; background: #fff; box-shadow: var(--shadow); }
.master-card img { width: 100%; border-radius: 24px; object-fit: cover; }
.master-card figcaption { padding: 16px 4px 4px; text-align: center; }
.master-card strong, .master-card span { display: block; }
.master-card span { color: var(--muted); margin-top: 4px; }

.works { background: transparent; }
.works__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.works-mobile-launch { display: none; }
.work-card { margin: 0; position: relative; overflow: hidden; border-radius: 30px; background: #fff; box-shadow: 0 18px 45px rgba(15,23,42,.12); }
.work-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.work-card span { position: absolute; top: 16px; left: 16px; padding: 6px 14px; border-radius: 999px; background: #ef4444; color: #fff; font-weight: 900; }
.work-card:nth-child(even) span { background: #16a34a; }
.work-card figcaption { padding: 16px 18px; font-weight: 800; color: var(--muted); }

.reviews { background: transparent; overflow: hidden; }
.reviews__rail {
  display: flex;
  gap: 22px;
  width: max-content;
  overflow: visible;
  padding: 16px 6px 34px;
  animation: reviewMarquee 34s linear infinite;
}
.reviews .container {
  overflow: hidden;
}
.reviews__rail:hover {
  animation-play-state: paused;
}
.review-card {
  flex: 0 0 min(360px, 88vw);
  scroll-snap-align: center;
  background: #fff;
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 20px 45px rgba(15,23,42,.16);
}
.review-card--active { transform: scale(1.04); }
.review-card__top { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.review-card__top span { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: #fef3c7; color: #b45309; font-size: 24px; font-weight: 900; }
.review-card strong, .review-card small { display: block; }
.review-card small { color: var(--muted); margin-top: 2px; }
.review-card p { color: #475569; margin: 0; }

@keyframes reviewMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}

.process { background: transparent; }
.process__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process__grid li { padding: 24px; }
.process__grid span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-weight: 900; margin-bottom: 16px; }

.faq { background: transparent; }
details { padding: 18px 22px; }
details + details { margin-top: 14px; }
summary { min-height: 44px; display: flex; align-items: center; cursor: pointer; font-weight: 900; }
details p { color: var(--muted); margin: 8px 0 0; }

.form-section { background: transparent; }
.form-section__grid { display: grid; grid-template-columns: 1fr minmax(320px, 520px); gap: 42px; align-items: center; }
.form-copy span { color: rgba(17,24,39,.72); }
.form-copy {
  padding: 30px;
  border-radius: 32px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
}
.messengers { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.messengers a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  color: var(--dark);
  font-weight: 900;
  text-decoration: none;
}
.lead-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow);
}
.lead-form label { font-weight: 900; }
.lead-form label span { color: var(--muted); font-weight: 700; }
.lead-form input, .lead-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 18px;
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
}
.lead-form textarea { resize: vertical; }
.field-error, .form-status { min-height: 20px; margin: -6px 0 0; font-size: 14px; }
.field-error, .form-status.error { color: #b42318; }
.form-status.success { color: #0f766e; }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; font-size: 14px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; }
.lead-form__submit { width: 100%; margin-top: 4px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; }

.footer { background: #111827; color: #fff; padding: 42px 0; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 28px; }
.footer p, .footer a { color: rgba(255,255,255,.72); }
.footer nav, .footer__grid > div:last-child { display: grid; gap: 8px; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15,23,42,.72);
  backdrop-filter: blur(12px);
}
.modal[hidden] { display: none; }
.modal__panel {
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 36px 90px rgba(0,0,0,.42);
  transform: translateY(10px) scale(.98);
  animation: modalIn .22s ease forwards;
}
@keyframes modalIn { to { transform: translateY(0) scale(1); } }
.modal__header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px 16px;
  background: #fff;
  border-bottom: 1px solid #eef2f7;
}
.modal__header h2 { margin: 0; font-size: clamp(24px, 4vw, 34px); line-height: 1.08; }
.modal__close {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  font-size: 32px;
  cursor: pointer;
}
.modal__body { padding: 24px 28px 30px; }
.modal__body p { color: #334155; margin: 0 0 16px; }
.modal-result {
  margin: 22px 0;
  padding: 18px 20px;
  border-radius: 20px;
  background: #fefce8;
  border-left: 5px solid var(--warm-2);
}
.modal-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 22px 0; }
.modal-info div { padding: 14px; border-radius: 18px; background: #f8fafc; }
.modal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.works-modal__panel { width: min(980px, 100%); }
.works-modal__body { padding: 24px 28px 30px; overflow: hidden; }
.works-modal__rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.works-modal__rail .work-card { flex: 0 0 min(560px, 72vw); scroll-snap-align: center; }

.reveal { opacity: 1; transform: translateY(18px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .topbar__phone { margin-left: auto; }
  .trust-band__grid, .problems__grid, .process__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "list"
      "master";
  }
  .form-section__grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 0; }
  body { padding-bottom: 0; background-attachment: scroll; }
  .container, .container--narrow { width: calc(100% - 24px); }
  .section { padding: 46px 0; }
  .topbar { display: none; }
  .hero__desktop-copy { display: none; }
  .hero__mobile-copy { display: inline; }
  .hero {
    display: block;
    min-height: max(700px, 100svh);
    padding: 0;
    text-align: left;
    align-items: start;
    background-image:
      linear-gradient(90deg, rgba(4,6,5,.76) 0%, rgba(4,6,5,.6) 46%, rgba(4,6,5,.2) 78%, rgba(4,6,5,.06) 100%),
      linear-gradient(180deg, rgba(2,5,4,.3) 0%, rgba(2,5,4,.05) 55%, rgba(2,5,4,.48) 100%),
      url("images/optimized/hero-mobile.webp?v=20260729-2");
    background-size: cover;
    background-position: center;
  }
  .hero::after { display: none; }
  .hero__mobile-label {
    position: absolute;
    top: max(36px, env(safe-area-inset-top));
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: calc(100% - 36px);
    min-height: 36px;
    padding: 8px 14px;
    border: 1px solid rgba(245,158,11,.7);
    border-radius: 999px;
    background: rgba(12,15,13,.48);
    color: rgba(255,255,255,.88);
    box-shadow: 0 10px 28px rgba(0,0,0,.2);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.2;
    white-space: nowrap;
  }
  .hero__mobile-label svg {
    width: 15px;
    height: 15px;
    margin-right: 7px;
    fill: none;
    stroke: var(--warm-2);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .hero .hero__content {
    top: auto;
    width: min(232px, calc(100% - 36px));
    max-width: none;
    margin: 0 0 0 18px;
    padding: 124px 0 46px;
    text-align: left;
  }
  .hero__badge { display: none; }
  .hero h1 {
    max-width: 220px;
    font-size: clamp(48px, 13vw, 56px);
    line-height: .97;
    text-shadow: 0 4px 24px rgba(0,0,0,.42);
  }
  .hero__lead {
    max-width: 248px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 14.5px;
    line-height: 1.48;
  }
  .hero__benefits {
    display: grid;
    gap: 12px;
    margin: clamp(38px, 5svh, 46px) 0 0;
    padding: 0;
    list-style: none;
  }
  .hero__benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.88);
    font-size: 13px;
    font-weight: 720;
    line-height: 1.25;
  }
  .hero__benefits svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: var(--warm-2);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .hero__actions {
    width: min(340px, calc(100vw - 36px));
    justify-content: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: clamp(54px, 6.5svh, 62px);
  }
  .btn { width: 100%; }
  .hero__actions .btn {
    min-height: 56px;
    flex: none;
    min-width: 0;
    border-radius: 14px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
  }
  .btn--big { min-height: 52px; padding: 12px 14px; font-size: 14px; border-radius: 10px; }
  .hero__actions .btn--yellow { box-shadow: 0 12px 30px rgba(245,158,11,.24); }
  .hero__actions .btn--glass {
    min-height: 54px;
    border-width: 1px;
    background: rgba(10,14,12,.32);
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
  }
  .hero__action-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .hero__photo-link {
    width: min(340px, calc(100vw - 36px));
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: clamp(40px, 5svh, 48px);
    color: rgba(255,255,255,.78);
    font-size: 12.5px;
    line-height: 1.35;
    text-decoration-color: rgba(255,255,255,.42);
    text-underline-offset: 4px;
  }
  .hero__photo-icon {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .hero__photo-link::after { content: "\2192"; font-size: 17px; line-height: 1; transition: transform .2s ease; }
  .hero__photo-link:hover::after { transform: translateX(3px); }

  .floating-messengers {
    position: fixed;
    right: 10px;
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 70;
    display: flex;
    flex-direction: column;
    gap: 9px;
    opacity: 0;
    transform: translateX(24px);
    pointer-events: none;
    transition: opacity .28s ease, transform .34s cubic-bezier(.2,.8,.2,1);
  }
  .floating-messengers.is-visible { opacity: 1; transform: translateX(0); pointer-events: auto; }
  .floating-messengers__link {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 12px 28px rgba(15,23,42,.24);
    transition: transform .2s ease;
  }
  .floating-messengers__link:active { transform: scale(.92); }
  .floating-messengers__link--whatsapp {
    overflow: hidden;
    border-color: #fff;
    background: #fff;
  }
  .floating-messengers__link--max { background: #3456ad; }
  .floating-messengers svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .floating-messengers img { width: 28px; height: 28px; object-fit: contain; }
  .floating-messengers__link--whatsapp img {
    width: 48px;
    height: 48px;
    max-width: none;
  }

  .section-head { margin-bottom: 24px; }
  .section-head h2, .photo-cta h2, .form-copy h2 { font-size: 30px; line-height: 1.08; }
  .section-head span, .photo-cta span, .form-copy span { font-size: 15px; line-height: 1.5; }
  .problems { padding-top: 62px; }
  .problems .section-head { text-align: center; }

  .problems__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 6px 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.74);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,.7), rgba(255,255,255,.38));
    box-shadow: 0 20px 45px rgba(15,23,42,.1);
    backdrop-filter: blur(18px);
  }
  .problem-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 3px;
    padding: 15px 3px;
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    transition: background-color .2s ease, transform .2s ease;
  }
  .problem-card:not(:last-child) { border-bottom: 1px solid rgba(100,116,139,.22); }
  .problem-card:active { background: rgba(255,255,255,.45); transform: scale(.99); }
  .problem-icon {
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
    margin: 0;
    border-radius: 13px;
    background: rgba(254,243,199,.9);
    box-shadow: inset 0 0 0 1px rgba(245,158,11,.2);
  }
  .problems__grid .problem-card .problem-icon svg { width: 23px; height: 23px; fill: none; stroke: var(--dark); }
  .problem-card h3 { grid-column: 2; margin-bottom: 2px; font-size: 16.5px; line-height: 1.25; }
  .problem-card p { grid-column: 2; font-size: 13px; line-height: 1.42; }
  .note { margin-top: 16px; padding: 12px 14px; font-size: 11.5px; line-height: 1.45; border-radius: 14px; border-left-width: 3px; }

  .services__grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 12px 18px;
    margin-inline: -12px;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }
  .services__grid::-webkit-scrollbar { display: none; }
  .service-card { flex: 0 0 82%; min-height: 390px; scroll-snap-align: center; }
  .service-card img { height: 178px; }
  .service-card h3 { font-size: 20px; }

  .photo-cta { padding: 42px 0; }
  .photo-cta__box { grid-template-columns: 1fr; gap: 20px; padding: 22px; border-radius: 26px; }
  .photo-cta__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .photo-cta__actions .btn { min-width: 0; padding-inline: 10px; border-radius: 17px; }
  .modal-actions { grid-template-columns: 1fr; display: grid; }
  .modal-info { grid-template-columns: 1fr; }

  .why__grid {
    grid-template-areas:
      "heading"
      "master"
      "list";
    gap: 14px;
  }
  .why__heading { margin-bottom: 2px; }
  .master-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    padding: 8px;
    border-radius: 22px;
  }
  .master-card img { width: 92px; height: 92px; border-radius: 16px; object-fit: cover; }
  .master-card figcaption { padding: 6px 12px; text-align: left; }
  .master-card figcaption strong { font-size: 16px; }
  .master-card figcaption span { margin-top: 2px; font-size: 12.5px; line-height: 1.35; }
  .why__list {
    gap: 0;
    padding: 6px 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.74);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,.7), rgba(255,255,255,.38));
    box-shadow: 0 20px 45px rgba(15,23,42,.1);
    backdrop-filter: blur(18px);
  }
  .advantage {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    padding: 14px 3px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    transition: background-color .2s ease, transform .2s ease;
  }
  .advantage:not(:last-child) { border-bottom: 1px solid rgba(100,116,139,.22); }
  .advantage:active { background: rgba(255,255,255,.45); transform: scale(.99); }
  .advantage .advantage__icon { width: 38px; height: 38px; flex-basis: 38px; border-radius: 13px; }
  .advantage__icon svg { width: 22px; height: 22px; }
  .advantage h3 { margin-bottom: 2px; font-size: 16.5px; line-height: 1.25; }
  .advantage p { font-size: 13px; line-height: 1.42; }

  .works__grid { display: none; }
  .works-mobile-launch {
    width: 100%;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 12px;
    padding: 11px;
    border: 1px solid rgba(255,255,255,.76);
    border-radius: 22px;
    background: rgba(255,255,255,.68);
    color: var(--dark);
    box-shadow: 0 18px 40px rgba(15,23,42,.12);
    text-align: left;
    cursor: pointer;
  }
  .works-mobile-launch__previews { display: flex; align-items: center; padding-left: 8px; }
  .works-mobile-launch__previews img {
    width: 48px;
    height: 64px;
    object-fit: cover;
    border: 2px solid #fff;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(15,23,42,.18);
  }
  .works-mobile-launch__previews img + img { margin-left: -18px; }
  .works-mobile-launch__copy strong, .works-mobile-launch__copy small { display: block; }
  .works-mobile-launch__copy strong { font-size: 16px; }
  .works-mobile-launch__copy small { margin-top: 2px; color: var(--muted); font-size: 11.5px; }
  .works-mobile-launch > svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .reviews__rail { animation-duration: 28s; gap: 14px; }
  .review-card { flex-basis: min(310px, 82vw); padding: 20px; border-radius: 22px; }
  .review-card--active { transform: none; }

  .process__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 6px 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.74);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,.7), rgba(255,255,255,.38));
    box-shadow: 0 20px 45px rgba(15,23,42,.1);
    backdrop-filter: blur(18px);
  }
  .process__grid li {
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 13px;
    row-gap: 2px;
    padding: 14px 3px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
  .process__grid li:not(:last-child) { border-bottom: 1px solid rgba(100,116,139,.22); }
  .process__grid li > span { grid-row: 1 / 3; width: 36px; height: 36px; margin: 0; font-size: 13px; }
  .process__grid h3 { grid-column: 2; margin-bottom: 2px; font-size: 16.5px; line-height: 1.25; }
  .process__grid p { grid-column: 2; font-size: 13px; line-height: 1.42; }

  .form-section__grid { display: block; }
  .form-copy {
    margin-bottom: 20px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .form-copy span { margin-top: 8px; }
  .form-copy .messengers { display: none; }
  .lead-form { padding: 20px; border-radius: 24px; }
  .lead-form input, .lead-form textarea { border-radius: 15px; padding: 12px 14px; }
  .lead-form textarea { min-height: 96px; }

  .footer__grid { grid-template-columns: 1fr; }

  .modal { padding: 8px; }
  .modal__panel { max-height: calc(100svh - 16px); border-radius: 24px; }
  .modal__header { padding: 16px 16px 12px; }
  .modal__header h2 { font-size: 24px; }
  .modal__close { width: 40px; height: 40px; flex-basis: 40px; font-size: 27px; }
  .modal__body { padding: 18px 16px 22px; }
  .works-modal__body { padding: 14px 0 20px; }
  .works-modal__rail {
    gap: 12px;
    padding: 4px 12px 18px;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }
  .works-modal__rail::-webkit-scrollbar { display: none; }
  .works-modal__rail .work-card { flex: 0 0 calc(100vw - 48px); border-radius: 20px; }
  .works-modal__rail .work-card img { height: 250px; aspect-ratio: auto; }
  .works-modal__rail .work-card figcaption { padding: 13px 15px; font-size: 14px; }
}

@media (max-width: 380px) {
  .container, .container--narrow { width: calc(100% - 20px); }
  .hero .hero__content { padding-bottom: 30px; }
  .hero h1 { max-width: 205px; font-size: 46px; }
  .hero__lead { font-size: 14px; }
  .hero__actions { flex-direction: column; }
  .service-card { flex-basis: 86%; }
}

@media (max-width: 389px) and (min-height: 860px) {
  .hero__benefits {
    gap: 14px;
    margin-top: 58px;
  }
  .hero__actions {
    margin-top: 82px;
  }
  .hero__actions .btn { min-height: 60px; }
  .hero__actions .btn--glass { min-height: 58px; }
  .hero__photo-link {
    min-height: 42px;
    margin-top: 64px;
  }
}

@media (min-width: 390px) and (max-width: 700px) and (min-height: 860px) {
  .hero .hero__content { padding-top: 136px; }
  .hero__mobile-label {
    min-height: 38px;
    font-size: 12.5px;
  }
  .hero h1 {
    max-width: 235px;
    font-size: 60px;
  }
  .hero__lead {
    font-size: 15.5px;
    line-height: 1.5;
  }
  .hero__benefits {
    gap: 15px;
    margin-top: 58px;
  }
  .hero__benefits li { font-size: 14px; }
  .hero__benefits svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
  .hero__actions {
    margin-top: 78px;
  }
  .hero__actions .btn { min-height: 62px; }
  .hero__actions .btn--glass { min-height: 60px; }
  .hero__photo-link {
    min-height: 42px;
    margin-top: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
}
