:root {
  --ink: #0f2f3a;
  --ink-2: #183a42;
  --mint: #7faf96;
  --mint-soft: #dcebdd;
  --paper: #f8f4ec;
  --paper-2: #fffdf8;
  --sand: #eadcc8;
  --line: rgba(15, 47, 58, 0.15);
  --coral: #d3775e;
  --muted: rgba(28, 44, 48, 0.68);
  --shadow: 0 24px 70px rgba(15, 47, 58, 0.12);
  --radius: 28px;
  --font-display: "Montserrat", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 5%, rgba(127, 175, 150, 0.16), transparent 28rem),
    linear-gradient(90deg, rgba(15, 47, 58, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 47, 58, 0.028) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 64px 64px, 64px 64px, auto;
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(248, 244, 236, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 34px rgba(15, 47, 58, 0.06);
}

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

.nav {
  justify-self: end;
  display: flex;
  gap: 24px;
  color: rgba(15, 47, 58, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
}

.button-wa-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.header-cta,
.button.primary {
  background: var(--ink);
  color: var(--paper-2);
  box-shadow: 0 16px 35px rgba(15, 47, 58, 0.18);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.58);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section {
  position: relative;
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 64px);
  overflow: hidden;
}

.section[id] {
  scroll-margin-top: 92px;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  padding-top: clamp(34px, 5vw, 58px);
}

.ambient {
  position: absolute;
  border-radius: 999px 0 0 0;
  pointer-events: none;
}

.ambient-one {
  right: -120px;
  bottom: 80px;
  width: min(42vw, 520px);
  height: min(30vw, 360px);
  background: rgba(234, 220, 200, 0.75);
}

.dots {
  position: absolute;
  width: 155px;
  height: 155px;
  opacity: 0.42;
  background-image: radial-gradient(var(--mint) 2px, transparent 2.2px);
  background-size: 18px 18px;
}

.dots-top {
  right: 16%;
  top: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5vw, 5.15rem);
  line-height: 0.96;
}

h2 {
  max-width: 840px;
  font-size: clamp(2.35rem, 5vw, 5.1rem);
  line-height: 0.96;
}

h3 {
  font-size: clamp(1.16rem, 1.8vw, 1.55rem);
  line-height: 1.05;
}

.hero-lead,
.section-head p,
.method-panel > div > p,
.local-card > div > p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.56);
  color: rgba(15, 47, 58, 0.7);
  font-size: 0.88rem;
  font-weight: 650;
}

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

.phone-card {
  position: absolute;
  right: 14%;
  top: -92px;
  width: min(46vw, 300px);
  transform: rotate(0.6deg);
}

.phone-mockup-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 26px rgba(15, 47, 58, 0.14));
}

.iphone-device {
  position: relative;
  padding: 11px;
  border-radius: 48px;
  background:
    linear-gradient(90deg, #111 0%, #343434 9%, #111 17%, #0a0a0a 50%, #2d2d2d 83%, #090909 100%);
  box-shadow:
    0 34px 70px rgba(15, 47, 58, 0.28),
    0 14px 28px rgba(15, 47, 58, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 0 0 2px rgba(0, 0, 0, 0.7);
}

.iphone-device::before,
.iphone-device::after {
  content: "";
  position: absolute;
  width: 3px;
  border-radius: 999px;
  background: #0c0c0c;
}

.iphone-device::before {
  left: -3px;
  top: 118px;
  height: 72px;
}

.iphone-device::after {
  right: -3px;
  top: 172px;
  height: 110px;
}

.iphone-screen {
  position: relative;
  aspect-ratio: 390 / 790;
  overflow: hidden;
  border-radius: 37px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(246, 241, 232, 0.96)),
    #f7f2e9;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    inset 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.iphone-screen::before {
  content: "";
  position: absolute;
  inset: 86px 0 52px;
  opacity: 0.55;
  background:
    radial-gradient(circle at 16% 10%, rgba(127, 175, 150, 0.08), transparent 11rem),
    linear-gradient(90deg, rgba(15, 47, 58, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 47, 58, 0.025) 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
}

.iphone-notch {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 3;
  width: 132px;
  height: 30px;
  border-radius: 0 0 18px 18px;
  background: #050505;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.iphone-status {
  position: relative;
  z-index: 2;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 26px 0;
  color: #0e1719;
  font-size: 0.78rem;
  font-weight: 850;
}

.status-icons {
  width: 44px;
  height: 14px;
  background:
    linear-gradient(90deg, #0e1719 0 19px, transparent 19px 25px, #0e1719 25px 31px, transparent 31px 35px, #0e1719 35px 44px);
  opacity: 0.78;
  clip-path: polygon(0 58%, 18% 58%, 18% 42%, 34% 42%, 34% 28%, 48% 28%, 48% 14%, 62% 14%, 62% 70%, 73% 70%, 73% 36%, 100% 36%, 100% 82%, 0 82%);
}

.wa-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 6px 11px 8px;
  border-bottom: 1px solid rgba(15, 47, 58, 0.12);
  background: rgba(255, 253, 248, 0.92);
}

.wa-header img {
  width: 30px;
  height: 30px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(127, 175, 150, 0.18);
  border: 1px solid rgba(15, 47, 58, 0.1);
}

.wa-header strong,
.wa-header small {
  display: block;
}

.wa-header div {
  min-width: 0;
  flex: 1;
}

.wa-header strong {
  color: #172326;
  font-size: 0.86rem;
  line-height: 1.05;
}

.wa-header small {
  color: rgba(23, 35, 38, 0.58);
  font-size: 0.68rem;
  line-height: 1.1;
}

.wa-back {
  width: 12px;
  height: 12px;
  border-left: 2px solid #3388e8;
  border-bottom: 2px solid #3388e8;
  transform: rotate(45deg);
}

.wa-call,
.wa-video {
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid #3388e8;
  opacity: 0.9;
}

.wa-call {
  border-radius: 50%;
  border-left-color: transparent;
  transform: rotate(-35deg);
}

.wa-video {
  width: 24px;
  border-radius: 6px;
}

.wa-video::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 4px;
  border-left: 8px solid #3388e8;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.phone-chat {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 482px;
  padding: 16px 12px;
}

.msg {
  width: fit-content;
  max-width: 82%;
  margin: 0;
  padding: 10px 12px 7px;
  border-radius: 13px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.28;
  box-shadow: 0 1px 2px rgba(15, 47, 58, 0.12);
}

.msg span {
  display: block;
  margin-top: 4px;
  color: rgba(15, 47, 58, 0.44);
  font-size: 0.58rem;
  font-weight: 750;
  text-align: right;
}

.msg.in {
  background: #ffffff;
  border-bottom-left-radius: 3px;
}

.msg.out {
  justify-self: end;
  background: #dcf7c9;
  color: #172326;
  border-bottom-right-radius: 3px;
}

.wa-input {
  position: relative;
  z-index: 2;
  height: 53px;
  display: grid;
  grid-template-columns: 24px 1fr 24px 24px;
  align-items: center;
  gap: 8px;
  padding: 7px 11px 11px;
  background: rgba(255, 253, 248, 0.92);
  border-top: 1px solid rgba(15, 47, 58, 0.08);
}

.wa-plus,
.wa-camera,
.wa-mic {
  position: relative;
  width: 22px;
  height: 22px;
  color: #3388e8;
}

.wa-plus::before,
.wa-plus::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.wa-plus::before {
  left: 10px;
  top: 2px;
  width: 2px;
  height: 18px;
}

.wa-plus::after {
  left: 2px;
  top: 10px;
  width: 18px;
  height: 2px;
}

.wa-field {
  height: 34px;
  border: 1px solid rgba(15, 47, 58, 0.14);
  border-radius: 999px;
  background: #fff;
}

.wa-camera {
  border: 2px solid #3388e8;
  border-radius: 6px;
}

.wa-camera::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 6px;
  height: 6px;
  border: 2px solid #3388e8;
  border-radius: 50%;
}

.wa-mic {
  border: 2px solid #3388e8;
  border-radius: 999px 999px 8px 8px;
  width: 15px;
  justify-self: center;
}

.wa-mic::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -8px;
  width: 2px;
  height: 7px;
  background: #3388e8;
}

.floating-card {
  position: absolute;
  z-index: 3;
  max-width: 270px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.85);
  box-shadow: 0 18px 45px rgba(15, 47, 58, 0.1);
}

.floating-card span {
  color: var(--mint);
  font-weight: 800;
}

.floating-card strong {
  display: block;
  margin: 8px 0 4px;
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-one {
  left: 0;
  top: 120px;
}

.card-two {
  left: 18px;
  top: 270px;
}

.card-three {
  left: 92px;
  bottom: 44px;
}

.section-head {
  max-width: 1000px;
  margin-bottom: 42px;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  gap: 48px;
  max-width: none;
  align-items: end;
}

.problem-grid,
.solution-grid,
.segment-grid,
.flow-grid,
.do-dont {
  display: grid;
  gap: 22px;
}

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

.problem-grid article,
.solution-grid article,
.segment-grid article,
.flow-card,
.do-dont article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.6);
}

.problem-grid article {
  min-height: 230px;
  padding: 24px;
}

.problem-grid p,
.solution-grid p,
.segment-grid p,
.flow-card p,
.do-dont li,
.faq-list p {
  color: var(--muted);
  line-height: 1.45;
}

.problem-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border: 1px solid rgba(127, 175, 150, 0.34);
  border-radius: 50%;
  color: var(--ink);
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 253, 248, 0.92), rgba(220, 235, 221, 0.84) 70%),
    var(--mint-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 22px rgba(15, 47, 58, 0.06);
}

.problem-icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.insight,
.plain-statement,
.principle {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(127, 175, 150, 0.38);
  border-radius: 18px;
  background: rgba(220, 235, 221, 0.42);
  font-weight: 750;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.insight span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
}

.insight p {
  margin: 0;
}

.solution-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 18px 8% -4px;
  height: 42px;
}

.solution-line span {
  position: relative;
  border-top: 2px solid rgba(127, 175, 150, 0.64);
}

.solution-line span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(127, 175, 150, 0.64);
  border-radius: 50%;
  background: var(--paper);
  transform: translateX(-50%);
}

.solution-grid {
  grid-template-columns: repeat(5, 1fr);
}

.solution-grid article {
  min-height: 250px;
  padding: 22px;
}

.solution-grid small {
  color: var(--mint);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.solution-grid h3,
.segment-grid h3,
.flow-card h3 {
  margin-top: 18px;
}

.method-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 40px 40px 40px 8px;
  background: var(--ink);
  color: var(--paper);
}

.method-panel h2,
.method-panel .eyebrow {
  color: var(--paper);
}

.method-panel > div > p {
  color: rgba(255, 253, 248, 0.72);
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.08);
}

.steps span {
  color: var(--mint);
  font-weight: 800;
}

.steps strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--paper-2);
  font-size: 1.22rem;
}

.steps p {
  margin: 0;
  color: rgba(255, 253, 248, 0.7);
  line-height: 1.4;
}

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

.segment-grid article {
  min-height: 170px;
  padding: 24px;
}

.plain-statement {
  color: var(--mint);
  background: rgba(255, 253, 248, 0.64);
}

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

.flow-card {
  padding: 26px;
}

.mini-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.mini-flow span {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(248, 244, 236, 0.72);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.local-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 36px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 40px 8px 40px 40px;
  background:
    radial-gradient(circle at 90% 20%, rgba(127, 175, 150, 0.2), transparent 20rem),
    rgba(255, 253, 248, 0.64);
  border: 1px solid var(--line);
}

.local-stats {
  display: grid;
  gap: 14px;
}

.local-stats div {
  padding: 22px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.local-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}

.local-stats span {
  color: var(--muted);
  line-height: 1.35;
}

.do-dont {
  grid-template-columns: 1fr 1fr;
}

.do-dont article {
  padding: 28px;
}

.do-dont h3 {
  color: var(--mint);
}

.do-dont .dont h3 {
  color: var(--coral);
}

.do-dont ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.do-dont li {
  position: relative;
  padding-left: 30px;
}

.do-dont li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
}

.do-dont .dont li::before {
  background: var(--coral);
}

.principle {
  justify-content: center;
  color: var(--mint);
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

.faq-list p {
  margin: 14px 0 0;
}

.final-cta {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 32px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 64px) 64px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 42px 42px 42px 8px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.final-cta img {
  width: 150px;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.56);
}

.site-footer img {
  width: 160px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span,
.footer-contact {
  color: var(--muted);
}

.footer-contact {
  display: grid;
  gap: 6px;
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 850;
  box-shadow: 0 18px 48px rgba(15, 47, 58, 0.22);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .nav.is-open {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper-2);
    box-shadow: var(--shadow);
  }

  .nav.is-open a {
    padding: 14px;
  }

  .hero,
  .method-panel,
  .local-card,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
  }

  .phone-card {
    right: 0;
  }

  .problem-grid,
  .solution-grid,
  .segment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-line {
    display: none;
  }

  .section-head.split,
  .flow-grid,
  .do-dont,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .site-footer,
  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 146px;
  }

  .section {
    padding: 62px 18px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.45rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

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

  .hero-visual {
    min-height: 660px;
  }

  .phone-card {
    width: min(100%, 330px);
    right: 50%;
    top: 76px;
    transform: translateX(50%) rotate(0.4deg);
  }

  .floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 10px 0;
    max-width: none;
  }

  .card-one {
    margin-top: 0;
  }

  .problem-grid,
  .solution-grid,
  .segment-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .mini-flow {
    grid-template-columns: 1fr;
  }

  .final-cta {
    margin: 0 18px 42px;
  }

  .whatsapp-float {
    right: 18px;
    left: auto;
    min-height: 48px;
    padding: 0 16px;
  }
}
