* {
  box-sizing: border-box;
}

:root {
  --ink: #101814;
  --muted: #5c645e;
  --cream: #f5edcf;
  --cream-light: #fffaf0;
  --green: #18c96e;
  --green-dark: #07934c;
  --mint: #bde7d8;
  --pink: #f1b7df;
  --white: #ffffff;
  --line: rgba(16, 24, 20, 0.13);
  --shadow: 0 24px 70px rgba(27, 67, 45, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-light);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  content: "";
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

img,
svg {
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.page-shell {
  overflow: hidden;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  padding: 24px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.brand strong {
  color: var(--green-dark);
}

.brand-mark {
  width: 42px;
  height: 42px;
  padding: 6px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 3px 3px 0 var(--ink);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: var(--green);
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.brand-mark .brand-mark-face {
  fill: none;
  stroke-width: 3;
}

.brand-mark .brand-mark-leaf {
  fill: var(--green);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #354039;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.button-small {
  min-height: 45px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: 4px 4px 0 var(--green);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-primary {
  color: var(--ink);
  background: var(--green);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.32);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 0;
  background: var(--cream);
}

.hero::after {
  position: absolute;
  right: -4%;
  bottom: 90px;
  left: -4%;
  height: 45px;
  content: "";
  background: var(--cream-light);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -200px;
  right: -90px;
  width: 530px;
  height: 530px;
  background: rgba(189, 231, 216, 0.75);
}

.hero-glow-two {
  top: 60%;
  left: -160px;
  width: 360px;
  height: 360px;
  background: rgba(241, 183, 223, 0.27);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 42px;
}

.hero-copy {
  padding-bottom: 70px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--green-dark);
}

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

h1,
h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 650px;
  margin: 22px 0 26px;
  font-size: clamp(58px, 6.2vw, 92px);
  line-height: 0.97;
}

h1 em,
h2 em {
  position: relative;
  color: var(--green-dark);
  font-style: normal;
}

h1 em::after {
  position: absolute;
  right: 1%;
  bottom: -7px;
  width: 80%;
  height: 10px;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='400' height='12' viewBox='0 0 400 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 9C105 1 236 2 398 7' stroke='%23101814' stroke-width='4' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  margin-left: -8px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-size: 11px;
  font-weight: 800;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: var(--pink);
}

.avatar-stack span:last-child {
  background: var(--green);
}

.hero-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hero-proof strong {
  color: var(--ink);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.mascot-card {
  position: absolute;
  top: 20px;
  right: 30px;
  width: min(500px, 92%);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 50% 50% 44% 56% / 43% 44% 56% 57%;
  background: linear-gradient(145deg, #d9f0e8, var(--mint));
  box-shadow: 16px 18px 0 rgba(16, 24, 20, 0.95);
  transform: rotate(2deg);
}

.mascot-card::before {
  position: absolute;
  inset: 11%;
  border: 2px dashed rgba(16, 24, 20, 0.18);
  border-radius: 50%;
  content: "";
}

.mascot-card img {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -4%;
  width: 108%;
  height: 108%;
  object-fit: contain;
  filter: drop-shadow(0 18px 12px rgba(13, 73, 43, 0.2));
}

.delivery-badge {
  position: absolute;
  z-index: 4;
  right: 30px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  background: var(--cream-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.delivery-badge span {
  color: var(--green);
}

.speed-line {
  position: absolute;
  z-index: 1;
  width: 140px;
  height: 5px;
  border-radius: 10px;
  background: rgba(16, 24, 20, 0.15);
  transform: rotate(-12deg);
}

.speed-line-one {
  top: 33%;
  left: 6%;
}

.speed-line-two {
  top: 40%;
  left: 0;
  width: 90px;
}

.floating-note {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 13px 16px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  animation: float 3.5s ease-in-out infinite;
}

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

.floating-note strong {
  font-size: 13px;
}

.floating-note small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.note-icon {
  display: grid;
  flex: 0 0 34px;
  height: 34px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
}

.note-top {
  top: 52px;
  left: 0;
}

.note-bottom {
  right: -4px;
  bottom: 72px;
  animation-delay: -1.4s;
}

.spark {
  position: absolute;
  z-index: 6;
  font-size: 35px;
  line-height: 1;
}

.spark-one {
  top: 2px;
  right: 25px;
  color: var(--pink);
}

.spark-two {
  top: 42%;
  left: -14px;
  font-size: 22px;
}

.spark-three {
  right: -8px;
  bottom: 20px;
  color: var(--green-dark);
  font-size: 24px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-9px) rotate(1deg); }
}

.trust-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.25fr;
  min-height: 112px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
  transform: translateY(22px);
}

.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
}

.trust-strip > div:last-child {
  border: 0;
}

.trust-strip span {
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
}

.trust-strip strong {
  font-size: 14px;
  line-height: 1.35;
}

.trust-strip .trust-message {
  display: block;
  color: var(--white);
  background: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.trust-message em {
  color: var(--green);
  font-style: normal;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 55px;
}

.section-heading h2,
.benefits-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.03;
}

.section-heading > p {
  max-width: 430px;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.steps {
  padding-top: 145px;
  background: var(--cream-light);
}

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

.step-card {
  position: relative;
  min-height: 330px;
  padding: 36px 34px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.step-card:hover {
  transform: translateY(-7px);
  box-shadow: 10px 14px 0 var(--ink);
}

.step-card-featured {
  background: var(--green);
}

.step-number {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.step-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 36px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--cream);
  transform: rotate(-4deg);
}

.step-card-featured .step-icon {
  background: var(--white);
}

.step-icon svg {
  width: 43px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.step-card h3 {
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  letter-spacing: -0.7px;
}

.step-card p {
  max-width: 280px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.step-card-featured p {
  color: #153822;
}

.step-line {
  position: absolute;
  right: -15px;
  bottom: 26px;
  width: 110px;
  height: 3px;
  background: var(--ink);
  transform: rotate(-13deg);
}

.step-line::after {
  position: absolute;
  top: -5px;
  right: 0;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--ink);
  border-right: 3px solid var(--ink);
  content: "";
  transform: rotate(45deg);
}

.benefits {
  position: relative;
  background: var(--cream);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 110px;
}

.benefits-visual {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
}

.benefits-visual::before {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 46% 54% 60% 40% / 48% 38% 62% 52%;
  content: "";
  background: var(--mint);
  transform: rotate(-6deg);
}

.phone-card {
  position: relative;
  z-index: 2;
  width: min(330px, 82%);
  min-height: 540px;
  padding: 18px 16px;
  border: 3px solid var(--ink);
  border-radius: 38px;
  background: #efece3;
  box-shadow: 12px 14px 0 var(--ink);
  transform: rotate(-3deg);
}

.phone-card::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 74px;
  height: 18px;
  border-radius: 20px;
  content: "";
  background: var(--ink);
  transform: translateX(-50%);
}

.phone-top {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 20px -16px 0;
  padding: 14px 16px;
  color: white;
  background: var(--green-dark);
}

.phone-top > span {
  width: 42px;
  height: 42px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--green) url("assets/logo-fumaca.svg") center 18% / 150% no-repeat;
}

.phone-top small {
  font-weight: 700;
}

.phone-top i {
  font-style: normal;
}

.chat-date {
  width: max-content;
  margin: 18px auto;
  padding: 4px 10px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.8);
  font-size: 9px;
}

.chat-bubble {
  max-width: 84%;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.45;
  box-shadow: 0 2px 7px rgba(16, 24, 20, 0.08);
}

.chat-in {
  border-top-left-radius: 2px;
  background: var(--white);
}

.chat-out {
  margin-left: auto;
  border-top-right-radius: 2px;
  background: #d8f6c7;
}

.chat-options {
  margin-top: 10px;
  padding: 14px;
}

.chat-options strong,
.chat-options span {
  display: block;
}

.chat-options span {
  margin-top: 12px;
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 700;
}

.chat-input {
  position: absolute;
  right: 13px;
  bottom: 15px;
  left: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 15px;
  border-radius: 20px;
  color: #999;
  background: var(--white);
  font-size: 11px;
}

.chat-input button {
  display: grid;
  width: 31px;
  height: 31px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-dark);
}

.round-stamp {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 44px;
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(9deg);
}

.round-stamp span {
  position: absolute;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
}

.round-stamp strong {
  font-family: "Manrope", sans-serif;
  font-size: 34px;
}

.benefits-copy > p {
  max-width: 540px;
  margin: 25px 0 32px;
  color: var(--muted);
  line-height: 1.75;
}

.benefits-list {
  display: grid;
  gap: 18px;
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.benefits-list li > span {
  display: grid;
  flex: 0 0 28px;
  height: 28px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
}

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

.benefits-list strong {
  margin-bottom: 3px;
  font-size: 15px;
}

.benefits-list small {
  color: var(--muted);
  font-size: 13px;
}

.final-cta {
  background: var(--cream-light);
}

.cta-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 34px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 10px 10px 0 var(--green);
}

.cta-content {
  position: relative;
  z-index: 4;
  width: 64%;
  padding: 65px 70px;
}

.kicker-light {
  color: var(--green);
}

.cta-card h2 {
  margin: 12px 0 18px;
  color: var(--white);
  font-size: clamp(45px, 5.7vw, 72px);
  line-height: 0.98;
}

.cta-card p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.65);
}

.cta-mascot {
  position: absolute;
  z-index: 3;
  right: -6%;
  bottom: -41%;
  width: 58%;
  max-width: 640px;
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.32));
}

.cta-smoke {
  position: absolute;
  border-radius: 50%;
  background: var(--green-dark);
  filter: blur(1px);
}

.smoke-one {
  top: -45%;
  right: -8%;
  width: 570px;
  height: 570px;
  opacity: 0.55;
}

.smoke-two {
  right: 30%;
  bottom: -110%;
  width: 680px;
  height: 680px;
  opacity: 0.15;
}

footer {
  padding: 58px 0 26px;
  background: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding-bottom: 38px;
}

.footer-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.footer-link {
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  color: var(--ink);
  background: var(--green);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
}

.whatsapp-float svg {
  width: 23px;
  fill: currentColor;
}

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

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

.reveal-delay-short {
  transition-delay: 100ms;
}

.reveal-delay {
  transition-delay: 180ms;
}

@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 135px;
  }

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

  .hero-copy {
    max-width: 760px;
    padding-bottom: 10px;
  }

  .hero-visual {
    width: min(650px, 100%);
    margin: 0 auto 70px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .step-card {
    min-height: 285px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .benefits-copy {
    max-width: 700px;
  }

  .cta-content {
    width: 70%;
    padding: 60px 48px;
  }
}

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

  .site-header {
    padding: 17px 0;
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .nav-wrap > .button {
    min-width: 43px;
    min-height: 43px;
    padding: 0;
  }

  .nav-wrap > .button svg {
    width: 22px;
  }

  .nav-wrap > .button:not(:hover) {
    font-size: 0;
    gap: 0;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  h1 {
    margin-top: 17px;
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 19px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    margin-top: 28px;
  }

  .hero-visual {
    min-height: 430px;
    margin-top: 25px;
    margin-bottom: 45px;
  }

  .mascot-card {
    top: 20px;
    right: 4%;
    width: 90%;
    box-shadow: 10px 12px 0 var(--ink);
  }

  .floating-note {
    min-width: auto;
    padding: 10px 12px;
  }

  .floating-note strong {
    font-size: 11px;
  }

  .floating-note small {
    font-size: 8px;
  }

  .note-icon {
    flex-basis: 30px;
    height: 30px;
  }

  .note-top {
    top: 14px;
    left: -2px;
  }

  .note-bottom {
    right: 0;
    bottom: 35px;
  }

  .delivery-badge {
    right: 16px;
    bottom: 15px;
    font-size: 8px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    transform: translateY(15px);
  }

  .trust-strip > div,
  .trust-strip > div:nth-child(2) {
    min-height: 82px;
    padding: 19px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip .trust-message {
    padding: 24px;
  }

  .section {
    padding: 85px 0;
  }

  .steps {
    padding-top: 120px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .benefits-copy h2 {
    font-size: 44px;
  }

  .step-card {
    min-height: 295px;
    padding: 30px 26px;
  }

  .benefits-grid {
    gap: 35px;
  }

  .benefits-visual {
    min-height: 530px;
  }

  .benefits-visual::before {
    width: 390px;
    height: 390px;
  }

  .phone-card {
    width: 80%;
    min-height: 485px;
  }

  .round-stamp {
    right: 0;
    bottom: 25px;
    width: 105px;
    height: 105px;
  }

  .cta-card {
    min-height: 630px;
  }

  .cta-content {
    width: 100%;
    padding: 48px 26px;
  }

  .cta-card h2 {
    font-size: 49px;
  }

  .cta-card .button {
    width: 100%;
  }

  .cta-mascot {
    right: -20%;
    bottom: -14%;
    width: 120%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid > p {
    text-align: left;
  }

  .footer-link {
    width: max-content;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    min-height: 49px;
    padding: 0 15px;
  }

  .whatsapp-float span {
    display: none;
  }
}

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

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