:root {
  --blue-900: #0d47a1;
  --blue-800: #0f57c2;
  --blue-100: #eef4ff;
  --blue-050: #f7faff;
  --green-600: #22c55e;
  --green-700: #16a34a;
  --text-900: #142033;
  --text-700: #4a5568;
  --text-500: #6b7280;
  --border: #dbe5f1;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(13, 71, 161, 0.08);
  --shadow-soft: 0 10px 24px rgba(13, 71, 161, 0.05);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-offset: 116px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

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

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

main section[id] {
  scroll-margin-top: var(--header-offset);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 87, 194, 0.08);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.header__brand {
  flex-shrink: 0;
}

.header__logo {
  height: 62px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav a {
  text-decoration: none;
  color: var(--blue-900);
  font-weight: 600;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.header__nav a:hover {
  color: var(--blue-800);
}

.header__cta {
  flex-shrink: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 3px;
  border-radius: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 0;
  cursor: pointer;
}

.btn--primary {
  background: var(--green-600);
  color: var(--white);
  padding: 14px 22px;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.18);
}

.btn--primary:hover {
  background: var(--green-700);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--blue-900);
  border: 2px solid var(--blue-900);
  padding: 14px 22px;
}

.btn--secondary:hover {
  background: var(--blue-900);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--large {
  min-height: 56px;
  padding: 16px 28px;
  font-size: 1rem;
}

section {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue-800);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.15;
  color: var(--blue-900);
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--text-700);
  font-size: 0.98rem;
  max-width: 760px;
  margin: 0 auto;
}

.hero {
  background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
  padding-top: 56px;
  padding-bottom: 42px;
}

.hero__content {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  color: #1d7f45;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--blue-900);
  margin-bottom: 16px;
  max-width: 620px;
}

.hero__lead {
  font-size: 1rem;
  color: var(--text-700);
  margin-bottom: 20px;
  max-width: 620px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-bottom: 24px;
}

.hero__meta span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-700);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
}

.hero__actions {
  margin-bottom: 18px;
}

.hero__note {
  max-width: 620px;
  color: var(--text-500);
  font-size: 0.95rem;
}

.hero__media {
  max-width: 500px;
  margin-left: auto;
}

.hero__media img {
  width: 100%;
  max-height: 500px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.highlights {
  padding-top: 0;
  padding-bottom: 46px;
  margin-top: -8px;
  position: relative;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    transparent 0,
    transparent 36px,
    #ffffff 36px,
    #ffffff 100%
  );
}

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

.highlight-card {
  background: var(--blue-050);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.highlight-card h2 {
  color: var(--blue-900);
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.highlight-card p {
  color: var(--text-700);
  font-size: 0.96rem;
}

.problems {
  background: var(--blue-050);
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  min-height: 160px;
}

.problem-card h3 {
  color: var(--blue-900);
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.problem-card p {
  color: var(--text-700);
  font-size: 0.94rem;
}

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

.blog-section__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.blog-section__highlight {
  background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.blog-section__highlight h3 {
  color: var(--blue-900);
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.blog-section__highlight p {
  color: var(--text-700);
  font-size: 0.98rem;
  margin-bottom: 18px;
}

.blog-section__checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.blog-section__checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--text-700);
  font-weight: 600;
}

.blog-section__checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-700);
  font-weight: 800;
}

.blog-section__cards {
  display: grid;
  gap: 18px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.blog-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-900);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-card h3 {
  color: var(--blue-900);
  font-size: 1.04rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card p {
  color: var(--text-700);
  font-size: 0.94rem;
  margin-bottom: 12px;
}

.blog-card a {
  color: var(--blue-800);
  font-weight: 700;
  text-decoration: none;
}

.blog-card a:hover {
  text-decoration: underline;
}

.how-it-works {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 24px rgba(13, 71, 161, 0.04);
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--blue-100);
  color: var(--blue-900);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 18px;
}

.step-card h3 {
  color: var(--blue-900);
  font-size: 1.06rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-700);
  font-size: 0.95rem;
}

.proof {
  background: var(--blue-050);
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.proof-gallery__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.proof-gallery__item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.proof-gallery__item figcaption {
  padding: 14px 16px;
  color: var(--text-700);
  font-size: 0.92rem;
  font-weight: 600;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card__stars {
  color: #f5a623;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.review-card__text {
  color: var(--text-700);
  font-size: 0.96rem;
  line-height: 1.7;
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__author strong {
  color: var(--blue-900);
  font-size: 0.95rem;
}

.review-card__author span {
  color: var(--text-500);
  font-size: 0.88rem;
}

.equipments {
  background: var(--white);
}

.equipments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.equipment-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  min-height: 100%;
  box-shadow: var(--shadow-soft);
}

.equipment-card--featured {
  border: 1px solid rgba(15, 87, 194, 0.2);
  box-shadow: var(--shadow);
}

.equipment-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  overflow: hidden;
}

.equipment-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.equipment-card h3 {
  color: var(--blue-900);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.equipment-card p {
  color: var(--text-700);
  font-size: 0.96rem;
}

.regions {
  background: var(--blue-050);
}

.regions__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.regions__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-900);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.faq {
  background: var(--white);
}

.faq__list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(13, 71, 161, 0.04);
}

.faq-item__question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 22px 56px 22px 22px;
  color: var(--blue-900);
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
}

.faq-item__question::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--green-700);
  font-weight: 700;
}

.faq-item.is-open .faq-item__question::after {
  content: "–";
}

.faq-item__answer {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

.faq-item__answer p {
  color: var(--text-700);
}

.cta-section {
  background: var(--blue-900);
  color: var(--white);
  text-align: center;
}

.cta-section__content {
  max-width: 760px;
}

.cta-section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.14;
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.88);
}

.cta-section .btn {
  margin-top: 24px;
}

.cta-section__note {
  margin-top: 18px;
  font-size: 0.95rem;
}

.footer {
  background: #f8fbff;
  padding: 54px 0 28px;
  border-top: 1px solid rgba(15, 87, 194, 0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer__logo {
  width: 150px;
  height: auto;
  margin-bottom: 14px;
}

.footer__col h3 {
  color: var(--blue-900);
  font-size: 1.02rem;
  margin-bottom: 14px;
}

.footer__col p,
.footer__col a,
.footer__links li {
  color: var(--text-700);
  font-size: 0.95rem;
  text-decoration: none;
}

.footer__links {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer__links a:hover,
.footer__col a:hover {
  color: var(--blue-800);
}

.footer__disclaimer {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-500);
  font-size: 0.9rem;
}

.footer__bottom {
  text-align: center;
  margin-top: 18px;
  color: var(--text-500);
  font-size: 0.88rem;
}

.sticky-whatsapp {
  display: none;
}

@media (max-width: 1180px) {
  .hero__meta {
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero__meta span {
    font-size: 0.88rem;
    padding: 11px 14px;
  }
}

@media (max-width: 1080px) {
  .hero__content,
  .highlights__grid,
  .problems__grid,
  .steps,
  .proof-gallery,
  .review-grid,
  .equipments__grid,
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header__nav {
    gap: 18px;
  }

  .blog-section__grid,
  .regions__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-offset: 132px;
  }

  .header__content {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header__nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__content,
  .highlights__grid,
  .problems__grid,
  .steps,
  .proof-gallery,
  .review-grid,
  .equipments__grid,
  .footer__grid,
  .blog-section__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 34px;
  }

  .hero__media {
    max-width: 100%;
    margin-left: 0;
  }

  .hero__media img {
    max-height: 420px;
  }

  .section-heading h2,
  .cta-section h2 {
    font-size: 2rem;
  }

  .highlights {
    margin-top: 0;
    padding-top: 28px;
    background: #ffffff;
  }

  .proof-gallery__item img {
    height: 240px;
  }

  .equipment-card__media {
    height: auto;
    min-height: 220px;
  }

  .sticky-whatsapp {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    min-height: 58px;
    padding: 14px 16px;
    background: var(--green-600);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.18);
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  body {
    padding-bottom: 72px;
  }

  .footer {
    padding-bottom: 92px;
  }
}

@media (max-width: 540px) {
  :root {
    --header-offset: 154px;
  }

  section {
    padding: 56px 0;
  }

  .container {
    width: min(100%, calc(100% - 24px));
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 32px;
  }

  .hero h1 {
    font-size: 1.7rem;
    max-width: 100%;
  }

  .hero__lead {
    font-size: 0.95rem;
  }

  .hero__meta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__meta span {
    width: 100%;
    min-height: 58px;
    text-align: center;
    white-space: normal;
    justify-content: center;
  }

  .btn--large {
    width: 100%;
  }

  .header__content {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0 10px;
  }

  .header__brand {
    display: flex;
    justify-content: flex-start;
  }

  .header__logo {
    height: 48px;
    width: auto;
  }

  .header__cta {
    width: auto;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.86rem;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.16);
    white-space: nowrap;
  }

  .header__nav {
    width: 100%;
    order: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
    align-items: center;
    gap: 12px 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 87, 194, 0.08);
  }

  .header__nav a {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    line-height: 1.2;
  }

  .hero__media img {
    max-height: 360px;
  }

  .proof-gallery__item img {
    height: 220px;
  }

  .review-card {
    padding: 20px;
  }

  .equipment-card__media {
    min-height: 190px;
  }

  .regions__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  .header__logo {
    height: 44px;
  }

  .header__cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .header__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 8px;
  }

  .header__nav a {
    font-size: 0.93rem;
  }

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

@media (max-width: 540px) {
  :root {
    --header-offset: 128px;
  }

  body {
    background: #f6f8fc;
    padding-bottom: 58px;
  }

  section {
    padding: 36px 0;
  }

  .container {
    width: min(100% - 28px, 560px);
  }

  .header {
    box-shadow: 0 2px 14px rgba(13, 71, 161, 0.08);
  }

  .header__content {
    display: grid;
    grid-template-columns: 112px 1fr;
    align-items: center;
    gap: 8px 10px;
    min-height: auto;
    padding: 8px 0 9px;
  }

  .header__brand {
    min-width: 0;
  }

  .header__logo {
    height: 39px;
    max-width: 112px;
    object-fit: contain;
  }

  .header__cta {
    justify-self: end;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.76rem;
  }

  .header__nav {
    order: 3;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid rgba(15, 87, 194, 0.08);
  }

  .header__nav a:nth-child(-n + 3) {
    grid-column: span 2;
  }

  .header__nav a:nth-child(n + 4) {
    grid-column: span 3;
  }

  .header__nav a {
    min-height: 32px;
    padding: 7px 6px;
    border-radius: 999px;
    background: #f1f6ff;
    color: var(--blue-900);
    font-size: 0.72rem;
    line-height: 1.08;
    font-weight: 700;
  }

  .hero {
    padding: 22px 0 24px;
    background: linear-gradient(180deg, #eef5ff 0%, #f8fbff 100%);
  }

  .hero__content {
    gap: 18px;
  }

  .hero__text {
    text-align: center;
  }

  .hero__eyebrow {
    justify-content: center;
    width: 100%;
    min-height: auto;
    margin-bottom: 12px;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .hero h1 {
    max-width: 22ch;
    margin: 0 auto 12px;
    font-size: 1.46rem;
    line-height: 1.1;
    letter-spacing: 0;
  }

  .hero__lead {
    max-width: 34rem;
    margin: 0 auto 14px;
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .hero__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: none;
    margin: 0 0 14px;
  }

  .hero__meta span {
    min-height: 42px;
    padding: 9px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .hero__actions {
    margin-bottom: 0;
  }

  .btn--large {
    min-height: 48px;
    padding: 13px 18px;
    border-radius: 10px;
    font-size: 0.94rem;
  }

  .hero__note {
    display: none;
  }

  .hero__media {
    margin: 0;
  }

  .hero__media img {
    width: 100%;
    height: 178px;
    max-height: none;
    object-fit: cover;
    object-position: center 38%;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(13, 71, 161, 0.14);
  }

  .highlights {
    padding-top: 24px;
  }

  .highlights__grid,
  .problems__grid,
  .steps,
  .proof-gallery,
  .review-grid,
  .equipments__grid {
    gap: 12px;
  }

  .highlight-card,
  .problem-card,
  .step-card,
  .review-card,
  .equipment-card {
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 5px 16px rgba(13, 71, 161, 0.07);
  }

  .problem-card {
    min-height: auto;
  }

  .problem-card h3,
  .step-card h3,
  .highlight-card h2 {
    margin-bottom: 7px;
    font-size: 0.98rem;
    line-height: 1.25;
  }

  .problem-card p,
  .step-card p,
  .highlight-card p {
    font-size: 0.84rem;
    line-height: 1.46;
  }

  .step-card__number {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border-radius: 12px;
    font-size: 0.88rem;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading__eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .section-heading h2,
  .cta-section h2 {
    font-size: 1.36rem;
    line-height: 1.16;
  }

  .section-heading p,
  .cta-section p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .regions__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .regions__list li {
    min-height: 42px;
    padding: 9px 8px;
    border-radius: 10px;
    font-size: 0.78rem;
  }

  .faq__list {
    gap: 10px;
  }

  .faq-item {
    border-radius: 10px;
  }

  .faq-item__question {
    padding: 15px 42px 15px 15px;
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .faq-item__question::after {
    right: 16px;
  }

  .faq-item__answer {
    padding: 0 15px 15px;
  }

  .faq-item__answer p {
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .cta-section {
    padding: 40px 0 38px;
  }

  .footer {
    padding: 30px 0 76px;
  }

  .footer__grid {
    gap: 18px;
  }

  .footer__col p,
  .footer__col a,
  .footer__links li {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .footer__disclaimer {
    padding: 12px;
    font-size: 0.65rem;
    line-height: 1.5;
  }

  .sticky-whatsapp {
    min-height: 52px;
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    font-size: 0.92rem;
  }
}
