:root {
  --blue: #079ed1;
  --blue-deep: #047baa;
  --blue-dark: #055779;
  --yellow: #ffd800;
  --green: #17b857;
  --green-dark: #0f9e49;
  --ink: #123044;
  --muted: #5c7280;
  --soft: #f2faff;
  --line: #dcecf3;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

svg {
  display: block;
  width: 100%;
  height: 100%;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled {
  position: fixed;
  background: rgba(5, 126, 172, 0.96);
  box-shadow: 0 8px 30px rgba(2, 67, 94, 0.16);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  width: 190px;
  height: 62px;
  align-items: center;
  overflow: hidden;
  border-radius: 14px;
}

.brand img {
  width: 170px;
  height: auto;
}

.header-location {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-location span {
  width: 8px;
  height: 8px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 216, 0, 0.14);
}

.header-button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.header-button svg {
  width: 18px;
  height: 18px;
}

.header-button:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 17%,
      rgba(255, 255, 255, 0.16),
      transparent 28%
    ),
    linear-gradient(135deg, #0aa7d8 0%, #0799cc 52%, #057aa9 100%);
  color: var(--white);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 760px;
  align-items: center;
  gap: 70px;
  padding-top: 105px;
  padding-bottom: 70px;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
}

.eyebrow {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  padding: 7px 13px 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(0, 77, 109, 0.2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.eyebrow > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue-dark);
}

.eyebrow svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  max-width: 680px;
  margin: 24px 0 20px;
  font-size: clamp(50px, 6.1vw, 82px);
  font-weight: 900;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.hero h1 strong {
  display: block;
  color: var(--yellow);
}

.hero-copy > p {
  max-width: 610px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.65;
}

.whatsapp-button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 10px 18px 10px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, #20c967 0%, var(--green) 100%);
  box-shadow:
    0 15px 32px rgba(4, 68, 38, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.whatsapp-button:hover {
  background: linear-gradient(180deg, #20c967 0%, var(--green-dark) 100%);
  box-shadow:
    0 18px 38px rgba(4, 68, 38, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: translateY(-3px);
}

.button-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
}

.button-icon svg {
  width: 26px;
  height: 26px;
}

.button-arrow {
  width: 21px;
  height: 21px;
  margin-left: 4px;
}

.header-button:focus-visible,
.whatsapp-button:focus-visible,
.contact-list a:focus-visible,
.mobile-sticky-button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.hero-note > span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--yellow);
}

.hero-note svg {
  width: 13px;
  height: 13px;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 590px;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  z-index: 3;
  width: 338px;
  padding: 11px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 46px;
  background: #0e3447;
  box-shadow:
    0 36px 70px rgba(0, 46, 72, 0.33),
    0 0 0 10px rgba(255, 255, 255, 0.07);
  transform: rotate(2.5deg);
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 19px;
  left: 50%;
  width: 82px;
  height: 22px;
  border-radius: 999px;
  background: #0e3447;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 575px;
  overflow: hidden;
  border-radius: 35px;
  background: #eef4f1;
}

.chat-header {
  display: grid;
  min-height: 87px;
  align-items: center;
  gap: 11px;
  padding: 17px 17px 11px;
  background: #075e54;
  grid-template-columns: 43px minmax(0, 1fr) auto;
}

.chat-avatar {
  display: grid;
  width: 43px;
  height: 43px;
  overflow: hidden;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: var(--blue);
}

.chat-avatar img {
  width: 64px;
  max-width: none;
  height: auto;
}

.chat-header strong,
.chat-header small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-header strong {
  font-size: 13px;
}

.chat-header small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.chat-header b {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  letter-spacing: 2px;
}

.chat-body {
  min-height: 418px;
  padding: 26px 18px;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(77, 124, 108, 0.08) 0 2px,
      transparent 3px
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(77, 124, 108, 0.07) 0 2px,
      transparent 3px
    ),
    #e9efea;
  background-size: 34px 34px;
}

.chat-day {
  display: block;
  width: max-content;
  margin: 0 auto 20px;
  padding: 6px 10px;
  border-radius: 7px;
  background: #d9eee8;
  color: #4f6d66;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.chat-message {
  position: relative;
  width: 89%;
  margin-left: auto;
  padding: 14px 14px 22px;
  border-radius: 12px 2px 12px 12px;
  background: #d9ffc8;
  box-shadow: 0 2px 6px rgba(31, 72, 58, 0.11);
  color: #183b32;
}

.chat-message em {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 7px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.chat-message strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.chat-message p {
  margin: 7px 0 0;
  color: #466158;
  font-size: 11px;
  line-height: 1.5;
}

.chat-message time {
  position: absolute;
  right: 8px;
  bottom: 6px;
  color: #799188;
  font-size: 8px;
}

.chat-message-small {
  display: grid;
  width: 75%;
  margin-top: 12px;
  align-items: center;
  gap: 7px;
  grid-template-columns: 25px 1fr;
}

.chat-message-small > span {
  font-size: 20px;
}

.chat-message-small p {
  margin: 0;
}

.chat-footer {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px;
  border-top: 1px solid #dae6e0;
  background: var(--white);
  color: #557169;
  font-size: 10px;
  font-weight: 800;
}

.chat-footer svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.yellow-label {
  position: absolute;
  z-index: 4;
  top: 90px;
  left: -1px;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--yellow);
  box-shadow: 0 13px 28px rgba(0, 65, 91, 0.18);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.floating-card {
  position: absolute;
  z-index: 5;
  right: -7px;
  bottom: 92px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(0, 55, 82, 0.24);
  color: var(--ink);
}

.floating-card > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: #e5f9ed;
  color: var(--green);
}

.floating-card svg {
  width: 20px;
  height: 20px;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 12px;
}

.floating-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-circle-one {
  top: 145px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(255, 255, 255, 0.055);
}

.hero-circle-two {
  bottom: 40px;
  left: -180px;
  width: 380px;
  height: 380px;
  background: rgba(0, 75, 103, 0.1);
}

.hero-wave {
  position: absolute;
  z-index: 2;
  right: -2px;
  bottom: -2px;
  left: -2px;
  height: 100px;
  color: var(--white);
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 620px;
}

.section-heading.center {
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading > span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(35px, 4.1vw, 52px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.benefits {
  padding-top: 82px;
}

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

.benefit-card {
  min-height: 275px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 15px 45px rgba(5, 92, 128, 0.07);
}

.benefit-card.featured {
  box-shadow: 0 18px 48px rgba(5, 92, 128, 0.13);
  transform: translateY(-12px);
}

.card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--blue), var(--blue-deep));
  box-shadow: 0 10px 23px rgba(4, 126, 173, 0.2);
  color: var(--white);
}

.featured .card-icon {
  background: var(--yellow);
  color: var(--blue-dark);
}

.card-icon svg {
  width: 25px;
  height: 25px;
}

.benefit-card h3 {
  margin: 24px 0 10px;
  font-size: 20px;
  font-weight: 900;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.steps {
  overflow: hidden;
  background: var(--soft);
}

.steps-grid {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 0.9fr 1.1fr;
}

.steps-copy .section-heading {
  margin-bottom: 30px;
}

.step-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list::before {
  position: absolute;
  top: 41px;
  bottom: 41px;
  left: 35px;
  width: 2px;
  background: linear-gradient(var(--blue), #bfe5f4);
  content: "";
}

.step-list li {
  position: relative;
  display: grid;
  align-items: center;
  gap: 22px;
  padding: 17px 0;
  grid-template-columns: 72px minmax(0, 1fr);
}

.step-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 7px solid var(--soft);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 10px 25px rgba(4, 126, 173, 0.18);
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
}

.step-list li:nth-child(2) .step-number {
  background: var(--yellow);
  color: var(--blue-dark);
}

.step-list h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
}

.step-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.store-card {
  display: grid;
  min-height: 500px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(90deg, #fff 0%, #fff 59%, transparent 59%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  box-shadow: 0 25px 80px rgba(4, 74, 104, 0.13);
  grid-template-columns: 1.18fr 0.82fr;
}

.store-copy {
  padding: 66px 58px;
}

.contact-list {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.contact-list a {
  display: flex;
  max-width: 520px;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-list a:hover {
  box-shadow: 0 10px 25px rgba(4, 126, 173, 0.1);
  transform: translateX(4px);
}

.contact-list a > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 12px;
  background: #e9f8fe;
  color: var(--blue-deep);
}

.contact-list svg {
  width: 21px;
  height: 21px;
}

.contact-list small,
.contact-list strong {
  display: block;
}

.contact-list small {
  margin-bottom: 4px;
  color: #77909d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 14px;
  line-height: 1.35;
}

.store-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  padding: 55px 34px;
  text-align: center;
}

.store-cta::before,
.store-cta::after {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.store-cta::before {
  top: -90px;
  right: -90px;
  width: 270px;
  height: 270px;
}

.store-cta::after {
  bottom: -100px;
  left: -120px;
  width: 300px;
  height: 300px;
}

.store-logo {
  position: relative;
  z-index: 2;
  display: grid;
  width: 190px;
  height: 135px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 32px rgba(0, 62, 89, 0.2);
}

.store-logo img {
  width: 180px;
  height: auto;
}

.store-cta > p {
  position: relative;
  z-index: 2;
  max-width: 300px;
  margin: 21px 0 24px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.store-cta .whatsapp-button {
  position: relative;
  z-index: 2;
  width: min(100%, 315px);
}

.faq {
  padding-top: 40px;
}

.faq-grid {
  display: grid;
  gap: 75px;
  grid-template-columns: 0.74fr 1.26fr;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: #eaf8fd;
  color: var(--blue-deep);
  font-size: 21px;
  font-weight: 500;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -3px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #057dab 0%, var(--blue) 100%);
  color: var(--white);
}

.final-cta-inner {
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta .section-heading > span {
  color: var(--yellow);
}

.final-cta .section-heading h2 {
  max-width: 620px;
}

footer {
  padding: 38px 0 35px;
  background: #06364d;
  color: var(--white);
}

.footer-inner {
  display: grid;
  align-items: center;
  gap: 24px;
  grid-template-columns: 190px minmax(0, 1fr) minmax(230px, 0.65fr);
}

.footer-inner > img {
  width: 165px;
  height: auto;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.65;
}

.footer-note {
  text-align: right;
}

.mobile-sticky-button {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid {
    gap: 25px;
    grid-template-columns: minmax(0, 1fr) 390px;
  }

  .hero h1 {
    font-size: 59px;
  }

  .phone-mockup {
    width: 315px;
  }

  .steps-grid {
    gap: 55px;
  }

  .store-copy {
    padding: 58px 40px;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 30px, 580px);
  }

  .header-inner {
    min-height: 77px;
  }

  .brand {
    width: 150px;
    height: 52px;
  }

  .brand img {
    width: 145px;
  }

  .header-location {
    display: none;
  }

  .header-button {
    margin-left: auto;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    display: block;
    min-height: 0;
    padding-top: 125px;
    padding-bottom: 115px;
    text-align: center;
  }

  .hero h1 {
    margin-inline: auto;
    font-size: clamp(44px, 12vw, 68px);
  }

  .hero-copy > p {
    margin-inline: auto;
    font-size: 17px;
  }

  .hero-note {
    justify-content: center;
  }

  .hero-visual {
    min-height: 590px;
    margin-top: 28px;
  }

  .yellow-label {
    left: calc(50% - 202px);
  }

  .floating-card {
    right: calc(50% - 210px);
  }

  .benefit-grid {
    max-width: 520px;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

  .benefit-card.featured {
    transform: none;
  }

  .steps-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .steps-copy {
    text-align: center;
  }

  .steps-copy .section-heading {
    margin-inline: auto;
  }

  .step-list {
    max-width: 520px;
    margin-inline: auto;
  }

  .store-card {
    background:
      linear-gradient(180deg, #fff 0%, #fff 57%, transparent 57%),
      linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
    grid-template-columns: 1fr;
  }

  .store-copy {
    padding: 48px 28px 60px;
  }

  .store-cta {
    min-height: 380px;
  }

  .faq-grid {
    gap: 28px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer-inner {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .footer-inner > img {
    margin-inline: auto;
  }

  .footer-note {
    text-align: center;
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: 74px;
  }

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

  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 137px;
    height: 48px;
  }

  .brand img {
    width: 132px;
  }

  .header-button {
    display: none;
  }

  .hero-grid {
    padding-top: 112px;
    padding-bottom: 100px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(40px, 13.2vw, 56px);
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .whatsapp-button {
    width: 100%;
    min-height: 60px;
    gap: 9px;
    padding-right: 13px;
    font-size: 14px;
  }

  .button-arrow {
    margin-left: auto;
  }

  .hero-visual {
    min-height: 535px;
    margin-top: 35px;
  }

  .phone-mockup {
    width: min(296px, calc(100vw - 54px));
    border-radius: 40px;
    transform: rotate(1deg);
  }

  .phone-screen {
    min-height: 510px;
    border-radius: 30px;
  }

  .chat-body {
    min-height: 355px;
  }

  .yellow-label {
    top: 78px;
    left: -2px;
    font-size: 9px;
  }

  .floating-card {
    right: 0;
    bottom: 45px;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .benefit-card {
    padding: 26px;
  }

  .step-list li {
    gap: 14px;
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .step-list::before {
    left: 30px;
  }

  .step-number {
    width: 62px;
    height: 62px;
    font-size: 14px;
  }

  .step-list h3 {
    font-size: 17px;
  }

  .step-list p {
    font-size: 12px;
  }

  .store-card {
    width: calc(100% - 24px);
    border-radius: 25px;
    background:
      linear-gradient(180deg, #fff 0%, #fff 61%, transparent 61%),
      linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  }

  .store-copy {
    padding: 42px 21px 50px;
  }

  .contact-list strong {
    font-size: 12px;
  }

  .store-cta {
    min-height: 400px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 15px;
  }

  .final-cta-inner {
    text-align: center;
  }

  .mobile-sticky-button {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 16px;
    background: linear-gradient(180deg, #20c967 0%, var(--green) 100%);
    box-shadow: 0 14px 32px rgba(4, 68, 38, 0.32);
    color: var(--white);
    font-size: 15px;
    font-weight: 900;
  }

  .mobile-sticky-button svg {
    width: 25px;
    height: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
