﻿:root {
  --blue: #075deb;
  --blue-dark: #004bd3;
  --ink: #0d1117;
  --muted: #3d4652;
  --soft: #f4f7fb;
  --line: #dfe5ee;
  --white: #ffffff;
  --dark: #071018;
  --dark-2: #0d1720;
  --shadow: 0 12px 30px rgba(24, 33, 45, 0.1);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: #eef2f7;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.35;
}

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

img,
svg {
  display: block;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: #ffffff;
  opacity: 1;
  transition: opacity 760ms ease-out;
}

body.page-ready::before {
  opacity: 0;
}

.site-header,
main {
  opacity: 0;
  transition: opacity 720ms ease-out;
}

body.page-ready .site-header,
body.page-ready main {
  opacity: 1;
}


.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: var(--header-height);
  padding: 10px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: block;
  width: clamp(160px, 17vw, 235px);
  line-height: 0;
}

.logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1.4vw, 14px);
  color: #080b10;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a {
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f2f5f9;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--blue);
  border-color: rgba(7, 93, 235, 0.24);
  background: #eaf2ff;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 900;
  border-radius: 10px;
}

.mini-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.big-whatsapp {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-section,
.page-section {
  width: min(100%, 1510px);
  height: calc(100vh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 20px 70px rgba(13, 17, 23, 0.08);
  overflow: hidden;
  scroll-margin-top: var(--header-height);
}

.home-section {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 42px) clamp(18px, 5vw, 70px) 0;
}

.home-grid {
  display: grid;
  grid-template-columns: minmax(500px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: 38px;
}

.home-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 18px;
}

.home-copy h1 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(2.35rem, 3.45vw, 3.45rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.home-copy h1 span,
.section-copy h2 span,
.section-copy h3 {
  color: var(--blue);
}

.home-copy p,
.section-copy p {
  max-width: 520px;
  margin: 12px 0 0;
  color: #151b24;
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 24px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 10px 18px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 800;
}

.primary-btn {
  color: var(--white);
  background: var(--blue);
}

.secondary-btn {
  color: var(--blue);
  background: var(--white);
}

.home-media {
  position: relative;
  min-height: 390px;
  margin-left: 8px;
  margin-right: calc(clamp(18px, 5vw, 70px) * -1);
  border-left: 12px solid var(--blue);
  border-radius: 54% 0 0 54%;
  overflow: hidden;
}

.home-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.58) 16%, rgba(255, 255, 255, 0) 34%);
}

.home-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 130px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.home-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center top;
  transform: translateY(-34px) scale(1.04);
  transform-origin: center top;
}

.dark-feature-bar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: -12px 0 18px;
  padding: 14px 22px;
  color: var(--white);
  background: linear-gradient(135deg, #11171e, #05090d);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.dark-feature-bar article {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.dark-feature-bar article:last-child {
  border-right: 0;
}

.dark-feature-bar .line-icon {
  width: 50px;
  height: 50px;
}

.dark-feature-bar h3,
.info-card h3,
.process-row h4,
.mini-grid h4,
.why-row h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 900;
}

.dark-feature-bar p,
.info-card p,
.process-row p,
.mini-grid p,
.why-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.dark-feature-bar p {
  color: rgba(255, 255, 255, 0.78);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-bottom: 18px;
}

.stats-row article {
  display: grid;
  grid-template-columns: 46px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  padding: 6px 18px;
  border-right: 1px solid var(--line);
}

.stats-row article:last-child {
  border-right: 0;
}

.stats-row .line-icon {
  grid-row: span 2;
  width: 46px;
  height: 46px;
}

.stats-row strong {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1;
}

.stats-row span {
  font-size: 0.86rem;
  font-weight: 800;
}

.blue-strip {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  padding: 13px 28px;
  color: var(--white);
  background: var(--blue);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 800;
}

.page-section {
  display: flex;
  flex-direction: column;
  padding: 0 clamp(18px, 4.8vw, 70px);
}

.section-hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(520px, 1.22fr);
  align-items: start;
  gap: 36px;
  min-height: 214px;
  padding-top: 24px;
}

.section-copy {
  position: relative;
  z-index: 4;
  max-width: 520px;
  padding-right: 10px;
  background: var(--white);
}

.section-copy h2 {
  margin: 0;
  font-size: clamp(2.15rem, 3.35vw, 3.25rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.section-copy h3 {
  margin: 5px 0 0;
  font-size: clamp(1.15rem, 1.85vw, 1.7rem);
  font-weight: 900;
  line-height: 1.06;
}

.section-visual {
  position: relative;
  min-height: 214px;
  margin-left: 4px;
  margin-right: calc(clamp(18px, 4.8vw, 70px) * -1);
  overflow: hidden;
}

.section-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.96) 20%, rgba(255, 255, 255, 0.45) 48%, rgba(255, 255, 255, 0) 70%);
}

.section-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 62px;
  background: linear-gradient(0deg, var(--white), rgba(255, 255, 255, 0));
}

.section-visual img {
  width: 100%;
  height: 236px;
  object-fit: cover;
  object-position: right top;
}

.phone-mock {
  position: absolute;
  top: 7px;
  right: clamp(18px, 4vw, 54px);
  z-index: 3;
  width: 128px;
  min-height: 192px;
  padding: 19px 8px 9px;
  color: #10151d;
  background: var(--white);
  border: 6px solid #101215;
  border-radius: 23px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
  font-size: 0.56rem;
  font-weight: 800;
}

.phone-mock::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 42px;
  height: 7px;
  background: #101215;
  border-radius: 0 0 9px 9px;
  transform: translateX(-50%);
}

.phone-mock strong {
  display: block;
  margin-bottom: 5px;
  text-align: center;
  font-size: 0.62rem;
}

.phone-row,
.phone-split span {
  display: block;
  margin-top: 5px;
  padding: 6px;
  background: #f7f9fc;
  border: 1px solid #e2e7ef;
  border-radius: 7px;
}

.phone-row.ok::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  background: #18b75d;
  border-radius: 50%;
}

.phone-amount {
  margin-top: 5px;
  font-size: 0.88rem;
  font-weight: 900;
}

.phone-bars {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 30px;
  margin-top: -24px;
  margin-left: 72px;
}

.phone-bars span {
  width: 5px;
  background: var(--blue);
  border-radius: 4px 4px 0 0;
}

.phone-bars span:nth-child(1) {
  height: 10px;
}

.phone-bars span:nth-child(2) {
  height: 16px;
}

.phone-bars span:nth-child(3) {
  height: 22px;
}

.phone-bars span:nth-child(4) {
  height: 28px;
}

.phone-mapbox {
  display: grid;
  height: 60px;
  place-items: center;
  background:
    linear-gradient(45deg, transparent 48%, #d8e4f3 49%, #d8e4f3 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, #d8e4f3 49%, #d8e4f3 51%, transparent 52%),
    #eef5ff;
  background-size: 26px 26px;
  border: 1px solid #dfe8f4;
  border-radius: 8px;
}

.phone-mapbox .line-icon {
  width: 34px;
  height: 34px;
}

.phone-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.phone-cta {
  display: grid;
  min-height: 28px;
  margin-top: 6px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 7px;
}

.card-grid {
  display: grid;
  gap: 8px;
  margin-top: -22px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 72px;
  padding: 9px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(13, 17, 23, 0.03);
}

.info-card h3,
.info-card p,
.info-card a,
.info-card strong {
  grid-column: 2;
}

.info-card .line-icon {
  grid-row: 1 / span 3;
}

.info-card a,
.info-card strong {
  display: block;
  margin-top: 3px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.center-title {
  margin: 10px 0 7px;
  text-align: center;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 900;
  line-height: 1.1;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-row article {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 9px;
  align-items: center;
  min-height: 62px;
  padding-right: 14px;
}

.process-row article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 26px;
  border-top: 2px dotted #96b8ea;
}

.process-row span {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.process-row .line-icon {
  width: 38px;
  height: 38px;
  grid-row: span 2;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.mini-grid article,
.why-row article {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-height: 66px;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-grid article .line-icon,
.why-row article .line-icon {
  grid-row: span 2;
}

.note-line {
  margin: 7px 0 6px;
  color: var(--ink);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
}

.note-line::before {
  content: "\2713";
  display: inline-grid;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.64rem;
}

.why-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.why-row article {
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
}

.why-row article:last-child {
  border-right: 0;
}

.section-contact {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  margin: auto calc(clamp(18px, 4.8vw, 70px) * -1) 0;
  padding: 8px clamp(18px, 5vw, 86px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.section-contact div {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 12px;
  align-items: center;
}

.section-contact strong,
.section-contact span {
  grid-column: 2;
}

.section-contact strong {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  line-height: 1.1;
}

.section-contact span {
  margin-top: 1px;
  font-size: 0.82rem;
}

.section-contact a {
  display: inline-flex;
  min-width: 220px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  font-size: 1.06rem;
  font-weight: 900;
}

.section-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 0 calc(clamp(18px, 4.8vw, 70px) * -1);
  padding: 10px clamp(18px, 5vw, 86px);
  color: var(--white);
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  font-size: 0.78rem;
  font-weight: 700;
}

.section-footer a {
  justify-self: center;
}

.section-footer strong {
  justify-self: end;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1;
}

.section-footer strong span {
  color: #09a6ff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: -4px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.contact-cards .info-card {
  grid-template-columns: 48px 1fr;
  align-content: start;
}

.contact-form-card {
  padding: 0;
}

.contact-form-card h3 {
  margin: 0 0 7px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.form-grid span {
  display: flex;
  min-height: 32px;
  align-items: center;
  padding: 0 14px;
  color: #737b85;
  background: var(--white);
  border: 1px solid #cfd6e0;
  border-radius: 7px;
  font-size: 0.78rem;
}

.form-grid .wide {
  grid-column: 1 / -1;
  min-height: 48px;
  align-items: flex-start;
  padding-top: 9px;
}

.form-submit {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  margin-top: 7px;
  color: var(--white);
  background: var(--blue);
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 900;
}

@media (max-width: 1120px) {
  .home-section,
  .page-section {
    height: auto;
    min-height: calc(100vh - var(--header-height));
    overflow: visible;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .home-grid,
  .section-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .home-media,
  .section-visual {
    margin-right: 0;
  }

  .home-media {
    min-height: 420px;
    border-radius: 24px;
  }

  .home-media img {
    min-height: 420px;
    transform: translateY(-18px) scale(1.03);
  }

  .dark-feature-bar,
  .stats-row,
  .why-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .dark-feature-bar {
    margin-top: 28px;
  }

  .dark-feature-bar article:nth-child(2),
  .stats-row article:nth-child(2),
  .why-row article:nth-child(2) {
    border-right: 0;
  }

  .card-grid.three,
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .process-row article::after {
    display: none;
  }
}

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    position: static;
    min-height: 74px;
    padding: 12px 16px;
    overflow: hidden;
  }

  .logo {
    width: min(190px, 78vw);
  }

  .site-nav {
    gap: 5px 16px;
    font-size: 0.88rem;
  }

  .site-nav a {
    padding: 9px 12px;
  }

  .header-whatsapp {
    min-height: 40px;
    padding: 6px 10px;
  }

  .home-section,
  .page-section {
    margin-bottom: 18px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .home-section {
    padding: 28px 16px 0;
  }

  .home-copy h1 {
    max-width: 100%;
    font-size: clamp(1.75rem, 9.8vw, 2.2rem);
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .home-copy p,
  .section-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .primary-btn,
  .secondary-btn {
    min-height: 54px;
    padding: 10px 14px;
    font-size: 1rem;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .home-media {
    min-height: 300px;
    border-left-width: 7px;
    border-radius: 24px;
  }

  .home-media img {
    min-height: 300px;
    transform: translateY(-12px) scale(1.02);
  }

  .dark-feature-bar,
  .stats-row,
  .card-grid.three,
  .process-row,
  .mini-grid,
  .mini-grid.four,
  .why-row,
  .blue-strip,
  .section-contact,
  .section-footer,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .dark-feature-bar {
    padding: 18px;
  }

  .dark-feature-bar article,
  .stats-row article,
  .why-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dark-feature-bar article {
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }

  .dark-feature-bar article:last-child,
  .stats-row article:last-child,
  .why-row article:last-child {
    border-bottom: 0;
  }

  .stats-row {
    gap: 0;
    padding-bottom: 34px;
  }

  .blue-strip {
    gap: 10px;
    margin-bottom: 24px;
    padding: 18px;
  }

  .page-section {
    padding: 0 16px;
  }

  .section-hero {
    gap: 12px;
    min-height: 0;
    padding-top: 34px;
  }

  .section-copy h2 {
    font-size: 2.55rem;
  }

  .section-copy h3 {
    font-size: 1.35rem;
  }

  .section-visual {
    min-height: 220px;
    margin-right: 0;
    border-radius: 8px;
  }

  .section-visual::before {
    background: linear-gradient(0deg, var(--white), rgba(255, 255, 255, 0) 42%);
  }

  .section-visual img {
    height: 230px;
  }

  .phone-mock {
    top: 18px;
    right: 14px;
    width: 126px;
    min-height: 188px;
    padding: 20px 7px 8px;
    border-width: 6px;
    border-radius: 22px;
    font-size: 0.56rem;
  }

  .phone-mock::before {
    width: 42px;
    height: 7px;
  }

  .phone-mock strong {
    font-size: 0.62rem;
  }

  .phone-mapbox {
    height: 62px;
  }

  .phone-mapbox .line-icon {
    width: 34px;
    height: 34px;
  }

  .phone-row,
  .phone-split span {
    margin-top: 5px;
    padding: 6px;
  }

  .phone-amount {
    font-size: 0.82rem;
  }

  .phone-bars {
    height: 28px;
    margin-top: -24px;
    margin-left: 72px;
  }

  .phone-bars span {
    width: 5px;
  }

  .card-grid {
    margin-top: 14px;
  }

  .info-card,
  .mini-grid article,
  .why-row article {
    grid-template-columns: 58px 1fr;
    min-height: 88px;
    padding: 14px;
  }

  .line-icon {
    width: 48px;
    height: 48px;
  }

  .process-row {
    padding: 10px;
  }

  .process-row article {
    min-height: 82px;
  }

  .section-contact {
    margin-left: -16px;
    margin-right: -16px;
    padding: 18px 16px;
  }

  .section-contact div {
    grid-template-columns: 54px 1fr;
    column-gap: 12px;
  }

  .section-contact a {
    min-width: 0;
    width: 100%;
    font-size: 1.25rem;
  }

  .section-footer {
    margin-left: -16px;
    margin-right: -16px;
    gap: 14px;
    text-align: center;
  }

  .section-footer a,
  .section-footer strong {
    justify-self: center;
  }

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

  .form-grid .wide {
    grid-column: auto;
  }
}

@media (max-height: 820px) and (min-width: 1121px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .logo {
    font-size: clamp(1.85rem, 2.8vw, 2.25rem);
  }

  .site-nav {
    font-size: 0.82rem;
    gap: clamp(12px, 2vw, 28px);
  }

  .header-whatsapp {
    min-height: 34px;
    font-size: 0.84rem;
  }

  .home-section {
    padding-top: 20px;
  }

  .home-copy h1 {
    font-size: clamp(2.25rem, 3.35vw, 3.25rem);
  }

  .home-copy p,
  .section-copy p {
    margin-top: 8px;
    font-size: 0.86rem;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .primary-btn,
  .secondary-btn {
    min-height: 44px;
    font-size: 0.86rem;
  }

  .home-media,
  .home-media img {
    min-height: 340px;
  }

  .dark-feature-bar {
    margin-bottom: 12px;
    padding: 10px 18px;
  }

  .dark-feature-bar article {
    min-height: 66px;
  }

  .stats-row {
    padding-bottom: 12px;
  }

  .blue-strip {
    margin-bottom: 10px;
    padding: 10px 24px;
  }

  .section-hero {
    min-height: 188px;
    padding-top: 18px;
  }

  .section-copy h2 {
    font-size: clamp(1.95rem, 3vw, 2.85rem);
  }

  .section-copy h3 {
    font-size: clamp(1rem, 1.55vw, 1.45rem);
  }

  .section-visual {
    min-height: 188px;
  }

  .section-visual img {
    height: 208px;
  }

  .phone-mock {
    width: 116px;
    min-height: 172px;
    font-size: 0.5rem;
  }

  .card-grid {
    gap: 6px;
    margin-top: -18px;
  }

  .info-card {
    grid-template-columns: 44px 1fr;
    min-height: 61px;
    padding: 7px 10px;
  }

  .line-icon {
    width: 36px;
    height: 36px;
  }

  .dark-feature-bar h3,
  .info-card h3,
  .process-row h4,
  .mini-grid h4,
  .why-row h4 {
    font-size: 0.78rem;
  }

  .dark-feature-bar p,
  .info-card p,
  .process-row p,
  .mini-grid p,
  .why-row p {
    font-size: 0.68rem;
  }

  .center-title {
    margin: 7px 0 5px;
    font-size: 1rem;
  }

  .process-row {
    padding: 6px 10px;
  }

  .process-row article {
    min-height: 52px;
  }

  .mini-grid article,
  .why-row article {
    grid-template-columns: 40px 1fr;
    min-height: 54px;
    padding: 6px 10px;
  }

  .why-row article {
    min-height: 48px;
  }

  .note-line {
    margin: 5px 0;
    font-size: 0.72rem;
  }

  .section-contact {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .section-contact a {
    min-height: 34px;
    font-size: 0.98rem;
  }

  .section-footer {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

@media (min-width: 1121px) {
  :root {
    --header-height: 92px;
  }

  .site-header {
    gap: 26px;
    min-height: var(--header-height);
    padding: 16px clamp(18px, 5vw, 70px);
  }

  .site-nav {
    gap: clamp(8px, 1.5vw, 16px);
    font-size: 0.96rem;
  }

  .site-nav a {
    padding: 12px 16px;
  }

  .header-whatsapp {
    min-height: 46px;
    padding: 10px 18px;
    font-size: 1rem;
  }

  .mini-icon {
    width: 22px;
    height: 22px;
  }

  .line-icon {
    width: 56px;
    height: 56px;
  }

  .big-whatsapp {
    width: 58px;
    height: 58px;
  }

  .home-section,
  .page-section {
    height: auto;
    min-height: 980px;
    margin: 0 auto 34px;
    overflow: visible;
  }

  .home-section {
    padding: clamp(50px, 7vw, 86px) clamp(18px, 5vw, 70px) 0;
  }

  .home-grid {
    grid-template-columns: minmax(500px, 0.82fr) minmax(620px, 1.18fr);
    gap: 70px;
  }

  .home-copy {
    padding-bottom: 34px;
  }

  .home-copy h1 {
    max-width: 660px;
    font-size: clamp(3.1rem, 5vw, 5.15rem);
    line-height: 1;
  }

  .home-copy p,
  .section-copy p {
    max-width: 640px;
    margin-top: 22px;
    font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  }

  .hero-actions {
    gap: 18px 24px;
    margin-top: 42px;
  }

  .primary-btn,
  .secondary-btn {
    min-height: 68px;
    padding: 14px 28px;
    font-size: 1.1rem;
  }

  .home-media {
    min-height: 580px;
    margin-left: 0;
    border-left-width: 12px;
  }

  .home-media::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.62) 12%, rgba(255, 255, 255, 0) 30%);
  }

  .home-media img {
    min-height: 580px;
    object-position: center top;
    transform: translateY(-58px) scale(1.06);
  }

  .dark-feature-bar {
    margin: -28px 0 70px;
    padding: 28px 34px;
  }

  .dark-feature-bar article {
    gap: 20px;
    min-height: 112px;
    padding: 0 24px;
  }

  .dark-feature-bar .line-icon {
    width: 64px;
    height: 64px;
  }

  .dark-feature-bar h3,
  .info-card h3,
  .process-row h4,
  .mini-grid h4,
  .why-row h4 {
    font-size: 1.05rem;
  }

  .dark-feature-bar p,
  .info-card p,
  .process-row p,
  .mini-grid p,
  .why-row p {
    margin-top: 8px;
    font-size: 0.98rem;
  }

  .stats-row {
    gap: 22px;
    padding-bottom: 70px;
  }

  .stats-row article {
    grid-template-columns: 62px auto;
    column-gap: 18px;
    padding: 10px 28px;
  }

  .stats-row .line-icon {
    width: 62px;
    height: 62px;
  }

  .stats-row strong {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
  }

  .stats-row span {
    font-size: 1rem;
  }

  .blue-strip {
    gap: 28px;
    margin-bottom: 42px;
    padding: 22px 38px;
    font-size: 1rem;
  }

  .page-section {
    padding: 0 clamp(18px, 4.8vw, 70px);
  }

  .section-hero {
    grid-template-columns: minmax(430px, 0.9fr) minmax(600px, 1.1fr);
    gap: 72px;
    min-height: 330px;
    padding-top: 52px;
  }

  .section-copy {
    max-width: 640px;
    padding-right: 0;
    background: transparent;
  }

  .section-copy h2 {
    font-size: clamp(2.8rem, 5vw, 4.35rem);
  }

  .section-copy h3 {
    margin-top: 8px;
    font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  }

  .section-visual {
    min-height: 330px;
    margin-left: 0;
    margin-right: calc(clamp(18px, 4.8vw, 70px) * -1);
  }

  .section-visual::before {
    background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.82) 18%, rgba(255, 255, 255, 0.16) 52%, rgba(255, 255, 255, 0) 72%);
  }

  .section-visual::after {
    height: 90px;
  }

  .section-visual img {
    height: 350px;
    object-position: right top;
  }

  .phone-mock {
    top: 22px;
    right: clamp(24px, 4vw, 62px);
    width: 160px;
    min-height: 244px;
    padding: 24px 10px 12px;
    border-width: 8px;
    border-radius: 28px;
    font-size: 0.68rem;
  }

  .phone-mock::before {
    top: 6px;
    width: 54px;
    height: 9px;
  }

  .phone-mock strong {
    margin-bottom: 8px;
    font-size: 0.74rem;
  }

  .phone-row,
  .phone-split span {
    margin-top: 7px;
    padding: 8px;
  }

  .phone-amount {
    margin-top: 7px;
    font-size: 1.08rem;
  }

  .phone-bars {
    gap: 4px;
    height: 40px;
    margin-top: -32px;
    margin-left: 88px;
  }

  .phone-bars span {
    width: 7px;
  }

  .phone-mapbox {
    height: 88px;
    background-size: 34px 34px;
  }

  .phone-mapbox .line-icon {
    width: 48px;
    height: 48px;
  }

  .phone-split {
    gap: 6px;
  }

  .phone-cta {
    min-height: 34px;
    margin-top: 8px;
  }

  .card-grid {
    gap: 14px;
    margin-top: 18px;
  }

  .info-card {
    grid-template-columns: 74px 1fr;
    min-height: 118px;
    padding: 20px 26px;
  }

  .info-card a,
  .info-card strong {
    margin-top: 8px;
    font-size: 1.12rem;
  }

  .center-title {
    margin: 28px 0 14px;
    font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  }

  .process-row {
    padding: 18px 28px;
  }

  .process-row article {
    grid-template-columns: 52px 1fr;
    column-gap: 14px;
    min-height: 92px;
    padding-right: 20px;
  }

  .process-row article:not(:last-child)::after {
    width: 34px;
  }

  .process-row span {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  .process-row .line-icon {
    width: 54px;
    height: 54px;
  }

  .mini-grid {
    gap: 14px;
  }

  .mini-grid article,
  .why-row article {
    grid-template-columns: 66px 1fr;
    min-height: 96px;
    padding: 16px 22px;
  }

  .note-line {
    margin: 14px 0 12px;
    font-size: 1rem;
  }

  .why-row {
    margin-top: 10px;
  }

  .why-row article {
    min-height: 88px;
  }

  .section-contact {
    gap: 28px;
    margin: 34px calc(clamp(18px, 4.8vw, 70px) * -1) 0;
    padding: 18px clamp(18px, 5vw, 86px);
  }

  .section-contact div {
    grid-template-columns: 64px 1fr;
    column-gap: 20px;
  }

  .section-contact strong {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
  }

  .section-contact span {
    margin-top: 3px;
    font-size: 1rem;
  }

  .section-contact a {
    min-width: 280px;
    min-height: 54px;
    font-size: 1.5rem;
  }

  .section-footer {
    gap: 28px;
    padding: 24px clamp(18px, 5vw, 86px);
    font-size: 1rem;
  }

  .section-footer strong {
    font-size: 2rem;
  }

  .contact-layout {
    gap: 34px;
    margin-top: 18px;
  }

  .contact-cards {
    gap: 14px;
  }

  .contact-cards .info-card {
    grid-template-columns: 70px 1fr;
  }

  .contact-form-card h3 {
    margin-bottom: 12px;
    font-size: 1.55rem;
  }

  .form-grid {
    gap: 10px;
  }

  .form-grid span {
    min-height: 42px;
    font-size: 0.95rem;
  }

  .form-grid .wide {
    min-height: 64px;
    padding-top: 13px;
  }

  .form-submit {
    min-height: 48px;
    margin-top: 10px;
    font-size: 1rem;
  }
}
