:root {
  --ink: #15221d;
  --muted: #65726c;
  --cream: #fffaf2;
  --paper: #ffffff;
  --orange: #ff5a1f;
  --orange-dark: #e9480f;
  --orange-soft: #fff0e7;
  --yellow: #ffd84d;
  --green: #23c268;
  --green-dark: #128c4b;
  --line: #e8e3da;
  --shadow: 0 28px 70px rgba(29, 48, 40, 0.13);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  z-index: 10;
  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='.16'/%3E%3C/svg%3E");
}

a { color: inherit; }
svg { display: block; }

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  transform: translateY(-150%);
  z-index: 100;
}

.skip-link:focus { transform: translateY(0); }

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

.header-inner, .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font: 800 24px/1 "Manrope", sans-serif;
  letter-spacing: -1.2px;
  text-decoration: none;
}

.brand-logo { display: block; width: 190px; height: auto; }

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 11px;
  transform: rotate(-4deg);
}

.brand-mark svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linejoin: round; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 23px;
  border: 0;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.button svg.arrow-icon, .button-small svg, .text-link svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.button-small { min-height: 44px; padding: 0 17px; border-radius: 12px; font-size: 14px; }
.button-dark { color: #fff; background: var(--ink); box-shadow: 0 9px 22px rgba(21, 34, 29, 0.16); }
.button-dark:hover { background: #263b32; }

.hero {
  position: relative;
  min-height: 760px;
  padding: 150px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 20%, rgba(255, 216, 77, 0.3), transparent 24%),
    linear-gradient(135deg, #fffdf8 0%, #fff8ed 54%, #fff2e7 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 40px;
  background: var(--paper);
  clip-path: polygon(0 80%, 100% 0, 100% 100%, 0 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 72px;
}

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.eyebrow span { width: 25px; height: 3px; background: var(--orange); border-radius: 10px; }

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

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

h1 {
  max-width: 660px;
  margin: 22px 0 24px;
  font-size: clamp(54px, 6.2vw, 84px);
  line-height: 0.98;
}

h1 em {
  position: relative;
  color: var(--orange);
  font-style: normal;
  white-space: nowrap;
}

h1 em::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 0;
  bottom: -7px;
  height: 10px;
  border-top: 4px solid var(--yellow);
  border-radius: 50%;
  transform: rotate(-1.5deg);
}

.hero-description {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 18px; }
.button-primary { color: #fff; background: var(--green); box-shadow: 0 14px 28px rgba(35, 194, 104, 0.25); }
.button-primary:hover { background: #1aab5a; box-shadow: 0 18px 34px rgba(35, 194, 104, 0.3); }
.whatsapp-icon { width: 21px; fill: currentColor; }
.action-note { max-width: 125px; color: #7a847f; font-size: 12px; line-height: 1.45; }

.hero-visual { position: relative; display: grid; min-height: 530px; place-items: center; }
.hero-visual::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  background: var(--yellow);
  border-radius: 44% 56% 57% 43% / 53% 42% 58% 47%;
  transform: rotate(7deg);
}

.hero-visual::after {
  content: "";
  position: absolute;
  bottom: 28px;
  width: 380px;
  height: 36px;
  background: rgba(61, 46, 17, 0.2);
  filter: blur(24px);
  border-radius: 50%;
}

.phone {
  position: relative;
  z-index: 2;
  width: 292px;
  height: 565px;
  overflow: hidden;
  border: 9px solid #17221e;
  background: #efeae2;
  border-radius: 41px;
  box-shadow: 0 35px 70px rgba(54, 42, 19, 0.28);
  transform: rotate(3deg);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 7px;
  left: 50%;
  width: 77px;
  height: 20px;
  background: var(--ink);
  border-radius: 20px;
  transform: translateX(-50%);
}

.phone-top { display: flex; height: 35px; padding: 10px 18px 0; align-items: center; justify-content: space-between; background: #f8f8f8; font-size: 9px; font-weight: 700; }
.phone-sensors { display: flex; align-items: end; gap: 2px; }
.phone-sensors i { display: block; width: 3px; background: var(--ink); border-radius: 2px; }
.phone-sensors i:nth-child(1) { height: 5px; }.phone-sensors i:nth-child(2) { height: 7px; }.phone-sensors i:nth-child(3) { width: 10px; height: 6px; border-radius: 3px; }
.chat-header { display: flex; height: 63px; padding: 8px 12px; align-items: center; gap: 9px; color: #fff; background: #075e54; }
.chat-avatar { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; color: #fff; background: transparent; }
.chat-avatar img { width: 31px; height: 31px; object-fit: contain; }
.chat-header strong { display: block; font-size: 13px; }
.chat-header span { display: block; margin-top: 2px; font-size: 9px; opacity: 0.8; }
.chat-dots { margin-left: auto; font-size: 15px; letter-spacing: 1px; transform: rotate(90deg); }
.chat-body { min-height: 467px; padding: 13px 11px; background-color: #efeae2; background-image: radial-gradient(rgba(89, 74, 60, .09) 1px, transparent 1px); background-size: 14px 14px; }
.chat-date { width: max-content; margin: 0 auto 10px; padding: 4px 9px; color: #66736d; background: #e6f2f5; border-radius: 5px; font-size: 8px; font-weight: 700; }
.offer-message { position: relative; width: 92%; padding: 6px 6px 19px; background: #fff; border-radius: 3px 9px 9px 9px; box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.offer-message::before { content: ""; position: absolute; top: 0; left: -7px; border-top: 7px solid #fff; border-left: 7px solid transparent; }
.offer-image { position: relative; display: grid; height: 156px; margin-bottom: 9px; overflow: hidden; place-items: center; background: linear-gradient(145deg, #fff5db, #ffd96a); border-radius: 6px; }
.offer-image::before { content: ""; position: absolute; width: 110px; height: 110px; background: rgba(255,255,255,.65); border-radius: 50%; }
.headphone-band { position: absolute; z-index: 1; width: 78px; height: 80px; border: 13px solid #242d2a; border-bottom: 0; border-radius: 45px 45px 0 0; }
.headphone-left, .headphone-right { position: absolute; z-index: 2; top: 75px; width: 27px; height: 52px; background: #19211e; border: 5px solid #4b5651; border-radius: 10px; }
.headphone-left { left: 78px; transform: rotate(-5deg); }.headphone-right { right: 78px; transform: rotate(5deg); }
.offer-badge { position: absolute; z-index: 3; top: 9px; left: 8px; padding: 4px 7px; color: #fff; background: var(--orange); border-radius: 5px; font-size: 8px; font-weight: 800; }
.offer-message > strong { display: block; padding: 0 4px; font-size: 11px; }
.offer-message p { margin: 4px 0 7px; padding: 0 4px; color: #66736d; font-size: 9px; }
.price-row { display: flex; padding: 0 4px; align-items: baseline; gap: 7px; }.price-row del { color: #89938f; font-size: 8px; }.price-row b { color: var(--green-dark); font-size: 15px; }
.message-time { position: absolute; right: 7px; bottom: 5px; color: #77948a; font-size: 7px; }
.compact-message { display: flex; width: 88%; margin: 10px 0 0 auto; padding: 10px 8px 18px; align-items: center; gap: 8px; background: #d9fdd3; }.compact-message::before { left: auto; right: -7px; border-top-color: #d9fdd3; border-left: 0; border-right: 7px solid transparent; }.compact-message .fire { font-size: 24px; }.compact-message p { margin-bottom: 0; }.compact-message strong { font-size: 10px; }
.floating-pill { position: absolute; z-index: 4; display: grid; place-items: center; color: #fff; font: 800 18px/1 "Manrope", sans-serif; box-shadow: 0 16px 30px rgba(31, 40, 36, .18); }
.pill-discount { top: 43px; left: 33px; width: 80px; height: 80px; background: var(--orange); border-radius: 50%; transform: rotate(-12deg); }
.pill-coupon { top: 118px; right: 13px; padding: 13px 17px; color: var(--ink); background: #fff; border-radius: 12px; font-size: 13px; transform: rotate(8deg); }
.visual-caption { position: absolute; z-index: 4; right: 9px; bottom: 53px; padding: 13px 16px; background: #fff; border-radius: 13px; box-shadow: 0 16px 35px rgba(31,40,36,.16); font-size: 12px; font-weight: 700; transform: rotate(-4deg); }.visual-caption span { display: inline-grid; width: 20px; height: 20px; margin-right: 5px; place-items: center; color: #fff; background: var(--green); border-radius: 50%; }
.hero-orb { position: absolute; border: 1px solid rgba(255,90,31,.14); border-radius: 50%; }.hero-orb-one { top: 112px; left: -65px; width: 150px; height: 150px; }.hero-orb-two { right: -110px; bottom: 45px; width: 220px; height: 220px; }

.benefits { padding: 116px 0 125px; background: var(--paper); }
.section-heading { max-width: 650px; margin: 0 auto 54px; text-align: center; }
.section-heading h2, .steps-copy h2, .cta-panel h2 { margin: 13px 0 16px; font-size: clamp(38px, 4.4vw, 58px); line-height: 1.05; }
.section-heading p { color: var(--muted); font-size: 17px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card { position: relative; min-height: 280px; padding: 31px; overflow: hidden; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.benefit-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-7px); }
.benefit-icon { display: grid; width: 54px; height: 54px; margin-bottom: 34px; place-items: center; border-radius: 16px; }.benefit-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }.icon-orange { color: var(--orange); background: var(--orange-soft); }.icon-yellow { color: #926f00; background: #fff6cc; }.icon-green { color: var(--green-dark); background: #e2f8eb; }
.benefit-card h3 { margin-bottom: 10px; font: 800 20px/1.25 "Manrope", sans-serif; letter-spacing: -.5px; }.benefit-card p { max-width: 270px; margin-bottom: 0; color: var(--muted); line-height: 1.6; }.card-number { position: absolute; right: 22px; bottom: 10px; color: #f3f0ea; font: 800 56px/1 "Manrope", sans-serif; }

.how-it-works { padding: 120px 0; background: #f4f0e8; }
.steps-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 105px; align-items: start; }
.steps-copy { position: sticky; top: 40px; }.steps-copy h2 { margin-bottom: 28px; }.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--orange-dark); font-weight: 800; text-underline-offset: 5px; }.text-link svg { width: 18px; }
.steps-list { margin: 0; padding: 0; list-style: none; }.steps-list li { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid #d9d3c8; }.steps-list li:first-child { padding-top: 0; }.step-number { display: grid; width: 58px; height: 58px; place-items: center; color: #fff; background: var(--orange); border-radius: 18px; font: 800 20px/1 "Manrope", sans-serif; transform: rotate(-4deg); }.steps-list li:nth-child(2) .step-number { color: var(--ink); background: var(--yellow); transform: rotate(3deg); }.steps-list li:nth-child(3) .step-number { background: var(--green); }.steps-list h3 { margin: 2px 0 7px; font: 800 22px/1.2 "Manrope", sans-serif; }.steps-list p { margin-bottom: 0; color: var(--muted); line-height: 1.55; }

.final-cta { padding: 100px 0; background: var(--paper); }
.cta-panel { position: relative; padding: 78px 30px; overflow: hidden; color: #fff; background: var(--orange); border-radius: 32px; text-align: center; }
.cta-panel::before, .cta-panel::after { content: ""; position: absolute; width: 310px; height: 310px; border: 55px solid rgba(255,255,255,.09); border-radius: 50%; }.cta-panel::before { top: -170px; left: -90px; }.cta-panel::after { right: -120px; bottom: -200px; }
.cta-label { display: inline-block; padding: 7px 12px; color: var(--ink); background: var(--yellow); border-radius: 7px; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; transform: rotate(-2deg); }.cta-panel h2 { position: relative; z-index: 1; margin: 19px auto 14px; max-width: 720px; font-size: clamp(42px, 5vw, 66px); }.cta-panel p { margin-bottom: 29px; color: rgba(255,255,255,.84); font-size: 17px; }.button-light { position: relative; z-index: 1; color: var(--green-dark); background: #fff; box-shadow: 0 15px 30px rgba(131, 39, 8, .2); }.button-light:hover { background: #f9fff9; }.cta-note { display: block; margin-top: 15px; color: rgba(255,255,255,.72); font-size: 12px; }.cta-spark { position: absolute; color: var(--yellow); font-size: 35px; }.spark-one { top: 70px; left: 15%; }.spark-two { right: 15%; bottom: 70px; font-size: 23px; }

footer { padding: 35px 0; color: var(--muted); background: #f4f0e8; border-top: 1px solid var(--line); }.brand-footer { color: var(--ink); }.brand-footer .brand-logo { width: 175px; }.footer-inner p { margin: 0; font-size: 13px; }.footer-inner > a:last-child { font-size: 13px; text-underline-offset: 4px; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }.reveal-delay-short { transition-delay: 90ms; }.reveal-delay { transition-delay: 170ms; }.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-description { max-width: 620px; }
  .hero-visual { margin-top: 8px; }
  .benefit-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .benefit-card { min-height: 230px; }
  .steps-layout { grid-template-columns: 1fr; gap: 55px; }
  .steps-copy { position: static; text-align: center; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 32px, 1160px); }
  .site-header { padding-top: 18px; }
  .brand-logo { width: 165px; }
  .header-inner .button { display: none; }
  .hero { min-height: auto; padding: 117px 0 80px; }
  h1 { margin-top: 18px; font-size: clamp(46px, 14vw, 64px); }
  .hero-description { font-size: 17px; line-height: 1.55; }
  .hero-actions { flex-direction: column; width: 100%; }.hero-actions .button { width: 100%; }.action-note { max-width: none; }
  .hero-visual { min-height: 500px; transform: scale(.89); margin: -10px 0 -35px; }
  .hero-visual::before { width: 390px; height: 390px; }
  .pill-discount { left: -4px; }.pill-coupon { right: -6px; }.visual-caption { right: -10px; }
  .benefits, .how-it-works { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }.section-heading h2, .steps-copy h2 { font-size: 38px; }
  .benefit-card { min-height: auto; padding: 26px; }.benefit-icon { margin-bottom: 25px; }.card-number { font-size: 47px; }
  .steps-list li { grid-template-columns: 50px 1fr; gap: 16px; }.step-number { width: 48px; height: 48px; border-radius: 14px; }.steps-list h3 { font-size: 19px; }
  .final-cta { padding: 72px 0 96px; }.cta-panel { padding: 61px 20px; border-radius: 25px; }.cta-panel h2 { font-size: 39px; }.spark-one { left: 7%; }.spark-two { right: 8%; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .mobile-cta { position: fixed; z-index: 20; left: 16px; right: 16px; bottom: 14px; display: flex; min-height: 54px; align-items: center; justify-content: center; gap: 10px; color: #fff; background: var(--green); border: 1px solid rgba(255,255,255,.35); border-radius: 16px; box-shadow: 0 12px 35px rgba(15, 74, 41, .32); font-weight: 800; text-decoration: none; transition: transform 180ms ease, opacity 180ms ease; }.mobile-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(80px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
