:root {
  --black: #080706;
  --charcoal: #141210;
  --ink: #22201c;
  --ivory: #f7f1e6;
  --sand: #e7d7bf;
  --muted: #786f63;
  --gold: #d6b24b;
  --gold-dark: #9d7724;
  --green: #334039;
  --line: rgba(214, 178, 75, 0.26);
  --white: #fffaf1;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: calc(100% - 40px);
  max-width: 1140px;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(214, 178, 75, 0.18);
  background: rgba(8, 7, 6, 0.84);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  width: 100%;
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.95rem;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn svg,
.site-header svg,
.signal-card svg,
.process-card svg,
.check-list svg,
.contact-details svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.25;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #15100a;
  background: linear-gradient(135deg, #f1d66f, #c99c2e 60%, #94691e);
  box-shadow: 0 12px 26px rgba(157, 119, 36, 0.25);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
  border-color: rgba(214, 178, 75, 0.38);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 250, 241, 0.38);
  background: rgba(255, 255, 255, 0.06);
}

.btn-light {
  color: var(--ink);
  border-color: rgba(8, 7, 6, 0.16);
  background: rgba(255, 250, 241, 0.7);
}

.btn-small {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 0.92rem;
}

.header-cta {
  flex: 0 0 auto;
  min-width: 150px;
  white-space: nowrap;
}

.header-cta span {
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("imagenes/68e8c06c35e8696ccc0a488b.jpeg");
  background-position: center 18%;
  background-size: cover;
  filter: saturate(0.94);
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.94) 0%, rgba(8, 7, 6, 0.82) 38%, rgba(8, 7, 6, 0.35) 70%, rgba(8, 7, 6, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.72) 0%, rgba(8, 7, 6, 0) 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
}

.hero-copy {
  width: 100%;
  max-width: 920px;
  padding: 72px 0 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 960px;
  margin-bottom: 18px;
  font-size: clamp(3.15rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 250, 241, 0.88);
  font-size: clamp(1.1rem, 2.2vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(116px, 1fr));
  gap: 1px;
  max-width: 650px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 75, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.08);
}

.trust-strip span {
  display: grid;
  gap: 3px;
  padding: 15px 16px;
  background: rgba(8, 7, 6, 0.48);
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.82rem;
}

.trust-strip strong {
  color: var(--gold);
  font-size: 1.32rem;
}

.section {
  padding: clamp(64px, 9vw, 116px) 0;
}

.intro-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 36px;
  align-items: center;
}

.intro-grid h2,
.intro-grid p {
  color: var(--white);
}

.pain-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.signal-card,
.process-card,
.review-card,
.video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.signal-card {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 250, 241, 0.06);
}

.signal-card svg,
.process-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--gold);
}

.signal-card p {
  margin: 0;
  color: rgba(255, 250, 241, 0.74);
}

.solution-section {
  background: var(--ivory);
}

.split,
.authority-grid,
.lead-grid,
.proof-grid,
.testimonial-video {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.section-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 650;
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--gold-dark);
}

.feature-photo,
.portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-photo::after,
.portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 250, 241, 0.08);
  pointer-events: none;
}

.feature-photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.results-section {
  background: var(--white);
}

.section-head {
  max-width: 800px;
  margin-bottom: 38px;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.comparison-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.44fr);
  gap: 24px;
  align-items: stretch;
}

.comparison {
  --position: 52%;
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid rgba(8, 7, 6, 0.12);
  border-radius: var(--radius);
  background: #0d0d0b;
  box-shadow: var(--shadow);
  user-select: none;
}

.compare-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
}

.compare-after,
.compare-before {
  position: absolute;
  inset: 0;
}

.compare-before {
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.compare-label {
  position: absolute;
  z-index: 3;
  top: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(8, 7, 6, 0.62);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.label-before {
  left: 18px;
}

.label-after {
  right: 18px;
}

.compare-line {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 24px rgba(214, 178, 75, 0.8);
}

.compare-handle {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: var(--position);
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.compare-handle svg {
  width: 24px;
  height: 24px;
}

.compare-range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.result-proof {
  display: grid;
  gap: 14px;
}

.result-proof div {
  display: grid;
  gap: 6px;
  padding: 24px;
  border: 1px solid rgba(8, 7, 6, 0.1);
  border-radius: var(--radius);
  background: var(--ivory);
}

.result-proof strong {
  color: var(--black);
  font-size: 1.55rem;
}

.result-proof span {
  color: var(--muted);
}

.social-proof-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
}

.social-proof-cta h3 {
  max-width: 620px;
  margin: 0;
  color: var(--black);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.1;
}

.social-proof-cta .eyebrow {
  margin-bottom: 8px;
}

.authority-section,
.videos-section,
.faq-section {
  background: var(--ivory);
}

.portrait img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  object-position: 62% center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stats-row span {
  display: grid;
  gap: 4px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  font-size: 0.9rem;
}

.stats-row strong {
  color: var(--gold-dark);
  font-size: 1.65rem;
}

.videos-section {
  border-top: 1px solid var(--line);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(8, 7, 6, 0.08);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--black);
}

.video-card h3,
.video-card p {
  padding-left: 18px;
  padding-right: 18px;
}

.video-card h3 {
  margin-top: 18px;
}

.video-card p {
  margin-bottom: 20px;
  color: var(--muted);
}

.testimonial-video {
  margin-top: clamp(34px, 5vw, 66px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
}

.testimonial-video .section-copy > p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.76);
}

.testimonial-video video {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 75, 0.28);
  border-radius: var(--radius);
  background: var(--black);
}

.process-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  background: var(--ivory);
}

.process-card span {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(157, 119, 36, 0.28);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.process-card p {
  color: var(--muted);
}

.proof-section {
  background: var(--charcoal);
  color: var(--white);
}

.proof-section .section-copy > p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.75);
}

.review-list {
  display: grid;
  gap: 14px;
}

.review-card {
  padding: 22px;
  background: rgba(255, 250, 241, 0.06);
}

.review-card p {
  color: rgba(255, 250, 241, 0.8);
}

.review-card strong {
  color: var(--gold);
}

.stars {
  margin-bottom: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.lead-section {
  background:
    linear-gradient(90deg, rgba(247, 241, 230, 0.96), rgba(247, 241, 230, 0.88)),
    url("imagenes/68e8c51055c3ada5a91c6a36.jpeg") center / cover;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-details span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 750;
}

.contact-details svg {
  color: var(--gold-dark);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.contact-actions .btn {
  min-height: 44px;
}

.embedded-form {
  width: 100%;
  height: 627px;
  overflow: hidden;
  border: 1px solid rgba(8, 7, 6, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.92);
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(8, 7, 6, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.92);
  box-shadow: var(--shadow);
}

.lead-form label,
.modal-window label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea,
.lead-form select,
.modal-window textarea {
  width: 100%;
  border: 1px solid rgba(8, 7, 6, 0.16);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  outline: 0;
  padding: 13px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-form textarea,
.modal-window textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus,
.modal-window textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(214, 178, 75, 0.2);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--black);
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.site-footer {
  padding: 30px 0;
  background: var(--black);
  color: rgba(255, 250, 241, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-footer img {
  width: 38px;
  height: 38px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 250, 241, 0.88);
  font-weight: 800;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: #1fae5b;
  box-shadow: 0 18px 44px rgba(13, 118, 60, 0.35);
  font-weight: 900;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

.whatsapp-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 22px;
}

.whatsapp-modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.58);
  backdrop-filter: blur(8px);
}

.modal-window {
  position: relative;
  z-index: 2;
  width: min(430px, calc(100vw - 44px));
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(8, 7, 6, 0.12);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
}

.modal-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #fff;
  background: #1fae5b;
}

.modal-window h2 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.modal-window p {
  color: var(--muted);
}

.modal-send {
  width: 100%;
  margin-top: 16px;
}

body.modal-open {
  overflow: hidden;
}

.thank-page {
  min-height: 100svh;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.95), rgba(8, 7, 6, 0.72)),
    url("imagenes/68e8c06c35e8696ccc0a488b.jpeg") center 18% / cover;
}

.thank-hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.thank-card {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(214, 178, 75, 0.32);
  border-radius: var(--radius);
  background: rgba(8, 7, 6, 0.72);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(12px);
}

.thank-logo {
  width: 112px;
  height: auto;
  margin: 0 auto 20px;
}

.thank-card h1 {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.5rem, 7vw, 5.3rem);
}

.thank-card p:not(.eyebrow) {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 250, 241, 0.82);
  font-size: 1.08rem;
}

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.thank-home {
  color: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    gap: 14px;
  }

  .nav-links {
    flex: 1 1 auto;
    width: auto;
    gap: clamp(8px, 2vw, 18px);
    font-size: 0.86rem;
  }

  .site-header .btn {
    margin-left: auto;
  }

  .intro-grid,
  .split,
  .authority-grid,
  .lead-grid,
  .proof-grid,
  .testimonial-video,
  .comparison-shell {
    grid-template-columns: 1fr;
  }

  .pain-points,
  .video-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .comparison {
    min-height: min(680px, 112vw);
  }

  .result-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  body {
    text-align: center;
  }

  .container {
    width: calc(100% - 28px);
    max-width: 560px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 42px;
    padding: 12px 14px;
    gap: 8px;
  }

  .site-header .btn {
    margin-left: 0;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .header-cta {
    justify-self: end;
    flex: 0 0 42px;
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .header-cta span {
    display: none;
  }

  .header-cta svg {
    width: 21px;
    height: 21px;
  }

  .hero {
    min-height: 88svh;
    align-items: end;
  }

  .hero-media {
    background-position: 54% 18%;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 7, 6, 0.96) 0%, rgba(8, 7, 6, 0.82) 48%, rgba(8, 7, 6, 0.26) 100%),
      linear-gradient(90deg, rgba(8, 7, 6, 0.45), rgba(8, 7, 6, 0.08));
  }

  .hero-copy {
    width: calc(100vw - 28px);
    max-width: 360px;
    margin-left: 0;
    margin-right: auto;
    padding: 100px 0 34px;
  }

  .hero-subtitle,
  .hero-actions,
  .hero h1,
  .trust-strip {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.35rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.85rem);
  }

  .hero-actions,
  .check-list li,
  .contact-details span {
    justify-content: center;
  }

  .social-proof-cta {
    flex-direction: column;
    text-align: center;
  }

  .contact-actions {
    justify-content: center;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .hero-actions .btn,
  .lead-form .btn {
    width: 100%;
    font-size: 0.92rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }

  .nav-links {
    flex: 1 1 auto;
    min-width: 0;
    justify-self: center;
    gap: 6px;
    font-size: 0.68rem;
    line-height: 1;
  }

  .nav-links a {
    padding: 8px 0;
  }

  .trust-strip,
  .stats-row,
  .result-proof {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .signal-card,
  .process-card,
  .review-card {
    min-height: auto;
    padding: 22px;
  }

  .signal-card svg,
  .process-card svg {
    margin-left: auto;
    margin-right: auto;
  }

  .check-list {
    text-align: left;
  }

  .feature-photo img {
    aspect-ratio: 4 / 4.5;
  }

  .comparison {
    min-height: min(610px, 128vw);
  }

  .compare-label {
    top: 12px;
    font-size: 0.72rem;
  }

  .label-before {
    left: 12px;
  }

  .label-after {
    right: 12px;
  }

  .compare-handle {
    width: 46px;
    height: 46px;
  }

  .lead-form label,
  .modal-window label {
    text-align: center;
  }

  .lead-form input,
  .lead-form textarea,
  .lead-form select,
  .modal-window textarea {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 14px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-modal {
    justify-content: center;
    padding: 14px;
  }

  .modal-window {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .trust-strip,
  .stats-row,
  .result-proof {
    grid-template-columns: 1fr;
  }

  .btn {
    padding-left: 14px;
    padding-right: 14px;
  }
}
