:root {
  --blue: #2563eb;
  --blue-dark: #17325c;
  --blue-ink: #102747;
  --orange: #c2410c;
  --orange-dark: #9a3412;
  --yellow: #fbbf24;
  --green: #22c55e;
  --green-dark: #15803d;
  --purple: #8b5cf6;
  --cream: #fff9ed;
  --paper: #fffdf8;
  --white: #ffffff;
  --text: #475569;
  --muted: #64748b;
  --line: #dbe4ee;
  --shadow-sm: 0 10px 28px rgba(23, 50, 92, .10);
  --shadow-md: 0 22px 58px rgba(23, 50, 92, .15);
  --shadow-lg: 0 34px 80px rgba(23, 50, 92, .20);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 0px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.has-mobile-sticky { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { margin-bottom: .55em; color: var(--blue-dark); font-family: "Outfit", system-ui, sans-serif; line-height: 1.05; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 11.8vw, 5.5rem); font-weight: 900; letter-spacing: -.058em; }
h2 { font-size: clamp(2.15rem, 8.8vw, 4rem); font-weight: 900; letter-spacing: -.045em; }
h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; }
p { text-wrap: pretty; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
::selection { color: var(--blue-dark); background: #fde68a; }

.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.narrow { max-width: 850px; }
.center { text-align: center; }
.section { position: relative; padding: 78px 0; }
.section-heading { max-width: 850px; margin: 0 auto 38px; }
.section-heading p { max-width: 700px; margin: 0 auto; font-size: 1.06rem; }
.section-heading h2 span, .section-copy h2 span, .final-cta-section h2 span { display: block; color: var(--orange); }
.section-copy { align-self: center; }
.section-copy > p:last-of-type { margin-bottom: 26px; }
.section-label, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--blue);
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}
.section-label::before { width: 28px; height: 4px; border-radius: 99px; background: currentColor; content: ""; }
.label-light { color: #93c5fd; }
.large-copy { font-size: clamp(1.04rem, 4.6vw, 1.22rem); line-height: 1.75; }
.price-anchor { display: inline-flex; align-items: baseline; gap: .35em; }
.price-anchor del { color: inherit; font-size: 1.3em; font-weight: 850; text-decoration-color: currentColor; text-decoration-thickness: 1px; text-decoration-skip-ink: none; }
.split-grid { display: grid; gap: 34px; align-items: center; }
.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: 10px 14px; border-radius: 10px; color: var(--white); background: var(--blue-dark); font-weight: 800; text-decoration: none; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0, 0, 0, 0)!important; white-space: nowrap!important; border: 0!important; }
.noscript-message { max-width: 620px; margin: 20px auto; padding: 16px; border-radius: var(--radius-sm); background: var(--cream); text-align: center; }

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 22px;
  border: 0;
  border-radius: 15px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(249, 115, 22, .28);
  font-size: .92rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .018em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button::after { font-size: 1.2em; content: "→"; transition: transform .2s ease; }
.button:hover { background: var(--orange-dark); box-shadow: 0 19px 36px rgba(249, 115, 22, .33); transform: translateY(-2px); }
.button:hover::after { transform: translateX(4px); }
.button-small { width: auto; min-height: 43px; padding: 10px 15px; border-radius: 12px; font-size: .74rem; box-shadow: none; }
.button-dark { background: var(--blue-dark); box-shadow: 0 14px 30px rgba(23, 50, 92, .22); }
.button-dark:hover { background: var(--blue-ink); box-shadow: 0 19px 36px rgba(23, 50, 92, .28); }

.hero { position: relative; display: grid; min-height: calc(100svh - var(--header-height)); align-items: center; overflow: hidden; padding: 48px 0 60px; background: radial-gradient(circle at 90% 14%, rgba(251, 191, 36, .27), transparent 25%), radial-gradient(circle at 8% 87%, rgba(37, 99, 235, .15), transparent 27%), var(--cream); }
.hero::before { position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(23, 50, 92, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 50, 92, .08) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 72%, transparent); content: ""; }
.hero-grid { position: relative; z-index: 2; display: grid; gap: 26px; align-items: center; }
.hero-copy { text-align: center; }
.eyebrow { justify-content: center; padding: 9px 12px; border: 1px solid rgba(37, 99, 235, .15); border-radius: 999px; color: var(--blue); background: rgba(255, 255, 255, .72); letter-spacing: .08em; }
.hero h1 { margin-bottom: 0; }
.hero h1 span { display: block; color: var(--orange); }
.hero-lead { max-width: 665px; margin: 0 auto 26px; color: var(--blue-dark); font-size: clamp(1.09rem, 4.6vw, 1.34rem); font-weight: 650; line-height: 1.52; }
.hero-action { max-width: 590px; margin-inline: auto; }
.hero-offer-line { display: grid; gap: 1px; margin-top: 15px; color: var(--muted); font-size: .76rem; font-weight: 700; }
.hero-offer-line .price-anchor { justify-self: center; font-size: .81rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.hero-offer-line strong { color: var(--blue-dark); font: 900 1.18rem/1.2 "Outfit", sans-serif; }
.hero-product { position: relative; width: min(100%, 600px); margin-inline: auto; filter: drop-shadow(0 24px 35px rgba(23, 50, 92, .17)); }
.hero-product > img { width: 100%; animation: productFloat 5.2s ease-in-out infinite; }
.hero-badge { position: absolute; z-index: 4; display: flex; align-items: center; gap: 7px; max-width: 185px; padding: 10px 12px; border: 1px solid rgba(23, 50, 92, .08); border-radius: 14px; color: var(--blue-dark); background: rgba(255, 255, 255, .95); box-shadow: var(--shadow-sm); font-size: .72rem; font-weight: 900; line-height: 1.2; text-transform: uppercase; }
.hero-badge b { display: grid; width: 31px; height: 31px; flex: 0 0 auto; place-items: center; border-radius: 10px; color: var(--blue-dark); background: var(--yellow); font-size: .8rem; }
.hero-badge-one { bottom: 13%; left: 1%; }
.hero-badge-two { top: 10%; right: 0; max-width: 150px; }
.tape { position: absolute; z-index: 5; width: 64px; height: 22px; opacity: .88; background: repeating-linear-gradient(135deg, rgba(251, 191, 36, .8) 0 8px, rgba(255, 255, 255, .75) 8px 16px); box-shadow: 0 3px 8px rgba(23, 50, 92, .08); }
.tape-one { top: 12%; left: 23%; transform: rotate(-10deg); }
.tape-two { right: 17%; bottom: 13%; transform: rotate(8deg); }
.doodle { position: absolute; pointer-events: none; }
.doodle-hero-gear { top: 14%; right: -38px; width: 120px; color: rgba(37, 99, 235, .22); animation: slowSpin 25s linear infinite; }
.doodle-hero-star { bottom: 9%; left: -22px; width: 72px; color: rgba(249, 115, 22, .28); transform: rotate(-13deg); }

.trust-strip { position: relative; z-index: 4; border-block: 1px solid #eef2f7; background: var(--white); box-shadow: 0 12px 32px rgba(23, 50, 92, .05); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; }
.trust-item { display: flex; min-height: 110px; align-items: center; justify-content: center; gap: 10px; padding: 18px 9px; border-right: 1px solid #eef2f7; border-bottom: 1px solid #eef2f7; text-align: left; }
.trust-item:nth-child(even) { border-right: 0; }
.trust-item:nth-last-child(-n + 2) { border-bottom: 0; }
.trust-item svg { width: 31px; height: 31px; flex: 0 0 auto; color: var(--orange); }
.trust-item:nth-child(2) svg { color: var(--yellow); }
.trust-item:nth-child(3) svg { color: var(--blue); }
.trust-item:nth-child(4) svg { color: var(--green); }
.trust-item p { margin: 0; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { color: var(--blue-dark); font: 900 .92rem/1.2 "Outfit", sans-serif; }
.trust-item span { margin-top: 3px; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .06em; line-height: 1.3; text-transform: uppercase; }
.trust-guarantee strong { display: inline-flex; align-items: baseline; gap: 4px; font-size: 1rem; white-space: nowrap; }
.trust-guarantee strong span { display: inline; margin: 0; color: inherit; font: inherit; letter-spacing: 0; line-height: inherit; }

.problem-section { background: var(--white); }
.problem-section h2 { margin-bottom: 22px; }
.screen-bubbles { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 30px 0; }
.screen-bubbles span { padding: 10px 16px; border: 2px solid #cbd5e1; border-radius: 15px; color: var(--blue-dark); background: #f8fafc; font-family: "Fredoka", sans-serif; font-weight: 700; transform: rotate(var(--r, -2deg)); }
.screen-bubbles span:nth-child(2) { --r: 2deg; }
.screen-bubbles span:nth-child(3) { --r: -1deg; }
.solution-panel { position: relative; margin-top: 34px; padding: 28px 22px; overflow: hidden; border-radius: var(--radius-lg); color: #dbeafe; background: var(--blue-dark); box-shadow: var(--shadow-md); }
.solution-panel::before { position: absolute; right: -75px; bottom: -105px; width: 230px; height: 230px; border: 30px dotted rgba(251, 191, 36, .1); border-radius: 50%; content: ""; }
.solution-panel > * { position: relative; z-index: 1; }
.solution-icon { width: 52px; margin: 0 auto 8px; color: var(--yellow); }
.solution-panel h3 { margin-bottom: 0; color: var(--white); font-size: clamp(1.65rem, 7vw, 2.35rem); }
.solution-panel h3 span { display: block; margin-top: 6px; color: var(--yellow); }
.solution-panel > p { max-width: 680px; margin: 0 auto; color: #cbd5e1; }
.action-path { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin: 24px 0; }
.action-path > span { display: inline-flex; align-items: center; gap: 8px; }
.action-path > span > span { padding: 10px 13px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 12px; color: var(--white); background: rgba(255, 255, 255, .08); font: 800 .95rem/1 "Fredoka", sans-serif; text-transform: uppercase; }
.action-path i { color: var(--yellow); font-style: normal; font-weight: 900; }

.success-section { background: linear-gradient(180deg, var(--paper), var(--white)); }
.photo-frame { position: relative; padding: 9px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); transform: rotate(-1.1deg); }
.photo-frame::before { position: absolute; z-index: 2; top: -12px; left: 50%; width: 78px; height: 25px; background: rgba(251, 191, 36, .72); content: ""; transform: translateX(-50%) rotate(2deg); }
.photo-frame img { width: 100%; aspect-ratio: 4 / 3; border-radius: calc(var(--radius-lg) - 7px); object-fit: cover; }
.photo-note { position: absolute; right: 19px; bottom: 18px; padding: 9px 12px; border-radius: 10px; color: var(--blue-dark); background: rgba(255, 255, 255, .94); box-shadow: var(--shadow-sm); font: 700 .75rem/1 "Fredoka", sans-serif; }
.frame-orange { box-shadow: 16px 17px 0 #ffedd5, var(--shadow-md); }
.frame-blue { box-shadow: -15px 16px 0 #dbeafe, var(--shadow-md); transform: rotate(1deg); }
.tick-list { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.tick-list li { display: flex; align-items: center; gap: 10px; color: var(--blue-dark); font-weight: 750; }
.tick-list li::before { display: grid; width: 27px; height: 27px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--white); background: var(--green-dark); content: "✓"; font-size: .8rem; font-weight: 900; }
.shared-moment { display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 13px; margin-top: 24px; padding: 17px; border: 1px solid #bfdbfe; border-radius: var(--radius-sm); background: #eff6ff; }
.shared-moment svg { width: 42px; color: var(--blue); transform: rotate(-8deg); }
.shared-moment h3 { margin-bottom: 5px; font-size: 1.02rem; }
.shared-moment p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.55; }

.how-section { overflow: hidden; background: var(--cream); }
.doodle-how { top: 11%; right: -34px; width: 110px; color: rgba(37, 99, 235, .22); }
.how-grid { display: grid; gap: 36px; align-items: center; }
.steps-list { display: grid; gap: 12px; }
.step-card { display: grid; grid-template-columns: 52px 1fr; gap: 15px; align-items: center; padding: 18px; border: 1px solid rgba(23, 50, 92, .08); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.step-card > span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; color: var(--white); background: var(--blue); font: 900 1rem/1 "Outfit", sans-serif; }
.step-card:nth-child(2) > span { background: var(--green-dark); }
.step-card:nth-child(3) > span { background: var(--orange); }
.step-card:nth-child(4) > span { color: var(--blue-dark); background: var(--yellow); }
.step-card h3 { margin-bottom: 3px; text-transform: uppercase; }
.step-card p { margin: 0; color: var(--muted); font-size: .88rem; }

.projects-section { overflow: hidden; background: var(--white); }
.carousel-shell { --card-size: min(78vw, 350px); position: relative; width: 100%; }
.carousel-track {
  display: flex;
  gap: 12px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 38px calc((100% - var(--card-size)) / 2) 46px;
  scroll-padding-inline: calc((100% - var(--card-size)) / 2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.is-dragging { scroll-snap-type: none; cursor: grabbing; user-select: none; }
.project-card {
  --tone: var(--blue);
  --tone-soft: #dbeafe;
  position: relative;
  display: flex;
  min-height: 500px;
  flex: 0 0 var(--card-size);
  flex-direction: column;
  overflow: visible;
  padding: 22px;
  border: 2px solid transparent;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transform: scale(.95);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.project-card.is-active { z-index: 3; border-color: color-mix(in srgb, var(--tone), transparent 35%); box-shadow: var(--shadow-lg); transform: scale(1); }
.tone-green { --tone: var(--green-dark); --tone-soft: #dcfce7; }
.tone-purple { --tone: var(--purple); --tone-soft: #ede9fe; }
.tone-orange { --tone: var(--orange); --tone-soft: #ffedd5; }
.tone-yellow { --tone: #a16207; --tone-soft: #fef3c7; }
.project-number { align-self: flex-start; margin-bottom: 12px; padding: 7px 10px; border-radius: 9px; color: var(--white); background: var(--tone); font: 900 .74rem/1 "Inter", sans-serif; letter-spacing: .09em; }
.project-card h3 { min-height: 2.2em; margin-bottom: 14px; font-size: clamp(1.35rem, 5.6vw, 1.75rem); text-transform: uppercase; }
.project-visual { position: relative; display: grid; width: 100%; aspect-ratio: 4 / 3; place-items: center; overflow: hidden; border-radius: 20px; background: linear-gradient(145deg, var(--tone-soft), var(--white)); }
.project-visual::before, .project-visual::after { position: absolute; z-index: 2; inset: 0; pointer-events: none; content: ""; }
.project-visual::before { background: linear-gradient(90deg, var(--white) 0%, transparent 8%, transparent 92%, var(--white) 100%); opacity: .75; }
.project-visual::after { background: linear-gradient(0deg, var(--white) 0%, transparent 9%, transparent 93%, var(--white) 100%); opacity: .72; }
.project-visual img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; transform: none; }
.project-doodle { position: absolute; z-index: 3; right: 10px; bottom: 10px; width: 43px; height: 43px; color: var(--tone); opacity: .25; transform: rotate(8deg); }
.project-card > p { margin: 17px 0 0; color: var(--muted); font-size: .89rem; line-height: 1.55; }
.carousel-controls { display: none; align-items: center; justify-content: center; gap: 18px; margin-bottom: -20px; }
.carousel-shell.carousel-ready .carousel-controls { display: flex; }
.carousel-arrow { position: absolute; z-index: 6; top: 50%; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(23, 50, 92, .14); border-radius: 50%; color: var(--blue-dark); background: rgba(255, 255, 255, .86); box-shadow: 0 8px 22px rgba(23, 50, 92, .18); backdrop-filter: blur(8px); font: 900 1.35rem/1 "Outfit", sans-serif; cursor: pointer; transform: translateY(-50%); transition: transform .2s, opacity .2s, background-color .2s; }
.carousel-arrow:hover:not(:disabled) { background: rgba(255, 255, 255, .96); transform: translateY(-50%) scale(1.05); }
#carouselPrev { left: calc((100% - var(--card-size)) / 2 - 22px); }
#carouselNext { right: calc((100% - var(--card-size)) / 2 - 22px); }
.carousel-arrow:disabled { opacity: .28; cursor: not-allowed; }
.carousel-status { display: grid; width: min(43vw, 210px); gap: 7px; color: var(--blue-dark); font: 900 .8rem/1 "Outfit", sans-serif; text-align: center; }
.carousel-progress { position: relative; height: 5px; overflow: hidden; border-radius: 99px; background: #e2e8f0; }
.carousel-progress i { display: block; width: var(--carousel-progress, 5%); height: 100%; border-radius: inherit; background: var(--orange); transition: width .25s ease; }
.quick-offer { display: grid; gap: 18px; align-items: center; margin-top: 8px; margin-bottom: 20px; padding: 22px 18px; border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius-md); color: #dbeafe; background: var(--blue-dark); box-shadow: var(--shadow-md); text-align: center; }
.quick-offer-kicker { display: inline-block; margin-bottom: 8px; color: var(--yellow); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.quick-offer h3 { margin-bottom: 14px; color: var(--white); font-size: clamp(1.45rem, 6vw, 2rem); }
.quick-offer-facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin: 0; padding: 0; list-style: none; }
.quick-offer-facts li { padding: 8px 10px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 10px; color: var(--white); background: rgba(255, 255, 255, .08); font-size: .72rem; font-weight: 800; line-height: 1.35; }
.quick-offer-action { padding: 16px; border-radius: 18px; background: var(--white); }
.quick-offer-price { display: grid; margin-bottom: 13px; text-align: center; }
.quick-offer-price .price-anchor { justify-self: center; color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.quick-offer-price .price-anchor del { color: var(--blue-dark); }
.quick-offer-price strong { color: var(--blue-dark); font: 900 clamp(2.65rem, 12vw, 3.7rem)/1 "Outfit", sans-serif; letter-spacing: -.05em; }
.quick-offer-price small { margin-top: 5px; color: var(--green-dark); font-size: .74rem; font-weight: 850; text-transform: uppercase; }
.quick-offer .button { width: 100%; min-width: 0; }
.project-21-strip { position: relative; display: grid; gap: 17px; align-items: center; margin-top: 0; padding: 20px; overflow: hidden; border: 2px solid var(--yellow); border-radius: var(--radius-md); background: linear-gradient(135deg, #fff7d6 0%, var(--white) 55%, #eff6ff 100%); box-shadow: 0 16px 38px rgba(23, 50, 92, .13); text-align: center; }
.project-21-strip::before, .project-21-strip::after { position: absolute; width: 76px; height: 76px; border: 14px dotted rgba(37, 99, 235, .09); border-radius: 50%; content: ""; }
.project-21-strip::before { top: -42px; left: -34px; }
.project-21-strip::after { right: -35px; bottom: -45px; border-color: rgba(249, 115, 22, .1); }
.project-21-strip > * { position: relative; z-index: 1; }
.project-21 { display: grid; width: 132px; min-height: 132px; align-content: center; justify-items: center; margin-inline: auto; padding: 13px; border: 4px solid var(--white); border-radius: 23px; color: var(--white); background: var(--blue-dark); box-shadow: 0 11px 24px rgba(23, 50, 92, .22); transform: rotate(-2deg); }
.project-21 span { padding: 5px 10px; border-radius: 99px; color: var(--blue-dark); background: var(--yellow); font-size: .72rem; font-weight: 950; letter-spacing: .09em; line-height: 1; text-transform: uppercase; }
.project-21 b { margin: 4px 0 1px; color: var(--white); font: 900 3.2rem/.9 "Outfit", sans-serif; letter-spacing: -.06em; }
.project-21 small { color: #bfdbfe; font-size: .7rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.bonus-included { display: inline-block; margin-bottom: 7px; color: var(--green-dark); font-size: .72rem; font-weight: 950; letter-spacing: .07em; text-transform: uppercase; }
.project-21-strip h3 { margin: 0 0 6px; font-size: clamp(1.35rem, 6vw, 1.8rem); }
.project-21-strip p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }

.benefits-section { background: linear-gradient(180deg, #f0fdf4, var(--white)); }
.benefits-grid { display: grid; gap: 14px; }
.benefit-card { position: relative; min-height: 180px; padding: 22px 19px; border: 1px solid #bbf7d0; border-radius: var(--radius-md); background: rgba(255, 255, 255, .9); box-shadow: 0 8px 24px rgba(21, 128, 61, .06); }
.benefit-card > span { display: inline-grid; width: 40px; height: 40px; margin-bottom: 14px; place-items: center; border-radius: 13px; color: var(--green-dark); background: #dcfce7; font: 900 .82rem/1 "Outfit", sans-serif; }
.benefit-card h3 { margin-bottom: 7px; font-size: 1.02rem; text-transform: uppercase; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .89rem; }
.section-button { max-width: 590px; margin-top: 34px; margin-inline: auto; }

.testimonials-section { background: linear-gradient(180deg, var(--white), #eff6ff); }
.testimonials-grid { display: grid; gap: 16px; }
.testimonial-card { position: relative; display: grid; align-content: start; justify-items: center; margin: 0; padding: 26px 21px; overflow: hidden; border: 1px solid #bfdbfe; border-radius: var(--radius-md); background: rgba(255, 255, 255, .94); box-shadow: 0 12px 32px rgba(23, 50, 92, .08); text-align: center; }
.testimonial-card::before { position: absolute; top: 7px; left: 16px; color: #dbeafe; content: "“"; font: 900 5.5rem/1 "Outfit", sans-serif; }
.testimonial-avatar { position: relative; z-index: 1; width: 66px; height: 66px; margin-bottom: 11px; border: 4px solid var(--white); border-radius: 50%; object-fit: cover; box-shadow: 0 7px 18px rgba(23, 50, 92, .16); }
.testimonial-stars { color: #a16207; font-size: 1rem; letter-spacing: .12em; line-height: 1; }
.testimonial-card blockquote { margin: 16px 0 17px; color: var(--text); font-size: .91rem; line-height: 1.65; }
.testimonial-card blockquote p { margin: 0; }
.testimonial-card figcaption { color: var(--blue-dark); font: 900 .95rem/1.2 "Outfit", sans-serif; }

.readiness-section { color: #dbeafe; background: var(--blue-dark); }
.readiness-section h2, .readiness-card h3 { color: var(--white); }
.readiness-section .section-heading > p { color: #cbd5e1; }
.readiness-grid { display: grid; gap: 14px; }
.readiness-card { padding: 22px 19px; border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius-md); background: rgba(255, 255, 255, .06); text-align: center; }
.readiness-card svg { width: 52px; margin: 0 auto 12px; color: var(--yellow); }
.readiness-card:nth-child(2) svg { color: #86efac; }
.readiness-card h3 { margin-bottom: 8px; }
.readiness-card > p { margin: 0; color: #dbeafe; }
.honest-note { margin: 16px 0 0; padding: 14px 15px; border: 1px solid #fed7aa; border-top: 4px solid var(--orange); border-radius: var(--radius-sm); color: var(--blue-dark); background: var(--cream); font-size: .84rem; line-height: 1.55; text-align: center; }

.offer-section { overflow: hidden; color: #dbeafe; background: linear-gradient(145deg, var(--blue-dark), var(--blue-ink)); }
.offer-grid { display: grid; gap: 34px; align-items: center; }
.offer-copy { text-align: center; }
.offer-copy h2 { color: var(--white); }
.offer-copy > p { max-width: 620px; margin-inline: auto; }
.offer-cover { width: min(66%, 310px); margin: 30px auto -80px; border-radius: 4px 16px 16px 4px; box-shadow: 0 32px 70px rgba(0, 0, 0, .32); transform: rotate(-3deg); }
.offer-card { position: relative; z-index: 2; padding: 28px 22px; border: 5px solid var(--white); border-radius: 28px; color: var(--text); background: var(--white); box-shadow: 0 30px 75px rgba(0, 0, 0, .28); }
.offer-card::before { position: absolute; top: -17px; right: 24px; width: 82px; height: 28px; background: rgba(251, 191, 36, .85); content: ""; transform: rotate(4deg); }
.offer-brand { margin-bottom: 7px; color: var(--blue); font: 800 .75rem/1 "Inter", sans-serif; letter-spacing: .11em; text-transform: uppercase; }
.offer-card h3 { font-size: clamp(1.75rem, 8vw, 2.55rem); }
.offer-list { display: grid; gap: 10px; margin: 22px 0; padding: 0; list-style: none; }
.offer-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--blue-dark); font-weight: 700; }
.offer-list li::before { display: grid; width: 23px; height: 23px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--white); background: var(--green-dark); content: "✓"; font-size: .68rem; }
.offer-price { display: grid; margin: 24px 0; padding: 18px; border-radius: 18px; background: var(--cream); text-align: center; }
.offer-price span, .offer-price small { color: var(--muted); font-size: .75rem; font-weight: 750; text-transform: uppercase; }
.offer-price .price-anchor { justify-self: center; margin-bottom: 3px; }
.offer-price .price-anchor del { color: var(--blue-dark); }
.offer-price strong { color: var(--blue-dark); font: 900 clamp(3rem, 14vw, 4.8rem)/1 "Outfit", sans-serif; letter-spacing: -.05em; }
.delivery-summary { margin: -7px 0 22px; padding: 16px; border: 1px solid #bfdbfe; border-radius: 16px; background: #eff6ff; text-align: center; }
.delivery-summary > strong { display: block; margin-bottom: 11px; color: var(--blue-dark); font: 900 .84rem/1.2 "Outfit", sans-serif; letter-spacing: .04em; text-transform: uppercase; }
.delivery-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 0; padding: 0; list-style: none; }
.delivery-facts li { display: grid; min-height: 50px; place-items: center; padding: 8px; border: 1px solid #dbeafe; border-radius: 11px; color: var(--blue-dark); background: var(--white); font-size: .74rem; font-weight: 800; line-height: 1.35; }
.delivery-summary small { display: block; margin-top: 11px; color: var(--muted); font-size: .74rem; line-height: 1.45; }
.checkout-note { margin: 12px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }
.offer-guarantee-panel { display: grid; grid-template-columns: 78px 1fr; align-items: center; gap: 14px; margin-top: 18px; padding: 15px; border: 1px solid #bbf7d0; border-radius: 18px; background: #f0fdf4; text-align: left; }
.offer-guarantee-panel img { width: 78px; filter: drop-shadow(0 8px 12px rgba(21, 128, 61, .18)); transform: rotate(-3deg); }
.offer-guarantee-panel b { display: block; color: var(--green-dark); font: 900 1rem/1.2 "Outfit", sans-serif; text-transform: uppercase; }
.offer-guarantee-panel b span { display: inline; }
.offer-guarantee-panel p { margin: 6px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.doodle-offer { top: 8%; left: -55px; width: 150px; color: rgba(251, 191, 36, .16); animation: slowSpin 28s linear infinite reverse; }

.faq-section { background: var(--white); }
.faq-grid { display: grid; gap: 34px; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 6px 18px rgba(23, 50, 92, .04); }
.faq-item summary { position: relative; min-height: 58px; padding: 17px 52px 17px 17px; color: var(--blue-dark); font-weight: 800; line-height: 1.35; list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; top: 50%; right: 18px; display: grid; width: 27px; height: 27px; place-items: center; border-radius: 9px; color: var(--blue); background: #dbeafe; content: "+"; font-size: 1.2rem; transform: translateY(-50%); transition: transform .2s; }
.faq-item[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq-item p { margin: 0; padding: 0 17px 18px; color: var(--muted); }
.faq-cta { max-width: 550px; margin-top: 34px; }

.final-cta-section { overflow: hidden; color: #dbeafe; background: radial-gradient(circle at 50% 0, #244b7d, transparent 45%), var(--blue-dark); }
.final-cta-section h2 { color: var(--white); }
.final-cta-section h2 span { margin-top: 10px; color: var(--yellow); }
.final-question { font-size: clamp(1.1rem, 5vw, 1.45rem); }
.final-question strong { color: var(--white); }
.final-price { display: grid; margin: 26px 0; }
.final-price strong { color: var(--white); font: 900 clamp(3.2rem, 15vw, 5.6rem)/1 "Outfit", sans-serif; letter-spacing: -.055em; }
.final-price span { color: #bfdbfe; font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.final-price .price-anchor { justify-self: center; margin-bottom: 4px; }
.final-price .price-anchor del { color: var(--white); }
.closing-line { margin: 26px 0 0; font-family: "Fredoka", sans-serif; font-size: 1rem; }
.closing-line b { display: block; color: var(--yellow); }
.doodle-final-star { top: 10%; right: -22px; width: 95px; color: rgba(251, 191, 36, .22); transform: rotate(14deg); }

.site-footer { padding: 42px 0 26px; color: #cbd5e1; background: #0c1d35; }
.footer-grid { display: grid; gap: 28px; }
.footer-brand img { width: min(240px, 100%); }
.footer-brand p { margin: 10px 0 0; font-size: .8rem; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: var(--white); font-size: .84rem; font-weight: 700; text-underline-offset: 4px; }
.safety-note { margin: 0; padding: 16px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 14px; background: rgba(255, 255, 255, .04); font-size: .74rem; line-height: 1.65; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: 28px; padding-top: 19px; border-top: 1px solid rgba(255, 255, 255, .08); color: #94a3b8; font-size: .74rem; }

.mobile-sticky { position: fixed; z-index: 1100; right: 0; bottom: 0; left: 0; display: flex; visibility: hidden; align-items: center; gap: 12px; justify-content: space-between; padding: 10px max(12px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-right)); border-top: 1px solid rgba(23, 50, 92, .12); background: rgba(255, 255, 255, .97); box-shadow: 0 -12px 35px rgba(23, 50, 92, .12); opacity: 0; pointer-events: none; transform: translateY(110%); transition: transform .25s ease, opacity .25s ease, visibility 0s linear .25s; }
.mobile-sticky.is-visible { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); transition-delay: 0s; }
.mobile-sticky > div { display: grid; min-width: 92px; }
.mobile-sticky span { color: var(--muted); font-size: .7rem; font-weight: 800; line-height: 1.25; text-transform: uppercase; }
.mobile-sticky .price-anchor { font-size: .72rem; }
.mobile-sticky strong { color: var(--blue-dark); font: 900 1.2rem/1.1 "Outfit", sans-serif; }
.mobile-sticky .button { min-height: 48px; width: min(58vw, 245px); padding: 11px 14px; font-size: .72rem; }

[data-reveal] { opacity: 1; transform: none; }
html.reveal-enabled [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
html.reveal-enabled [data-reveal].is-visible,
html.reveal-enabled #inicio [data-reveal] { opacity: 1; transform: none; }
html.reveal-enabled #inicio [data-reveal] { transition: none; }

.final-cta-section :focus-visible,
.readiness-section .section-button :focus-visible,
.site-footer :focus-visible { outline-color: var(--yellow); }

/* Shared legal and utility pages */
.legal-body { min-height: 100vh; background: var(--cream); }
.legal-header { border-bottom: 1px solid rgba(23, 50, 92, .08); background: var(--white); }
.legal-header .container { display: flex; min-height: 74px; align-items: center; justify-content: space-between; gap: 18px; }
.legal-header img { width: 190px; }
.back-link { color: var(--blue-dark); font-size: .8rem; font-weight: 800; text-decoration: none; }
.legal-main { padding: 50px 0 75px; }
.legal-card { max-width: 880px; margin-inline: auto; padding: clamp(24px, 6vw, 52px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); }
.legal-card h1 { font-size: clamp(2.2rem, 9vw, 4rem); }
.legal-card h2 { margin-top: 32px; font-size: 1.45rem; }
.legal-card li { margin-bottom: 8px; }
.provisional-notice { margin: 20px 0 30px; padding: 16px; border: 2px solid #facc15; border-radius: var(--radius-sm); color: #713f12; background: #fef9c3; font-size: .84rem; }
.business-data { display: grid; gap: 8px; padding: 18px; border-radius: var(--radius-sm); background: #f8fafc; }
.business-data p { margin: 0; }
.contact-panel { display: grid; gap: 16px; margin-top: 25px; padding: 22px; border-radius: var(--radius-md); background: var(--cream); }
.contact-panel a { color: var(--blue); font-weight: 800; overflow-wrap: anywhere; }
.not-found { display: grid; min-height: 100vh; place-items: center; padding: 30px 0; background: radial-gradient(circle at 50% 20%, #dbeafe, transparent 35%), var(--cream); }
.not-found-card { max-width: 680px; text-align: center; }
.not-found-code { color: var(--orange); font: 900 clamp(6rem, 30vw, 12rem)/.8 "Outfit", sans-serif; letter-spacing: -.08em; }

@keyframes productFloat { 0%, 100% { transform: translateY(0) rotate(-.4deg); } 50% { transform: translateY(-10px) rotate(.4deg); } }
@keyframes slowSpin { to { transform: rotate(360deg); } }

@media (min-width: 360px) and (max-width: 699px) {
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 480px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .button { width: auto; min-width: 310px; }
  .offer-card .button { width: 100%; min-width: 0; }
}

@media (min-width: 700px) {
  .section { padding: 100px 0; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-item { min-height: 105px; border-bottom: 0; }
  .trust-item:nth-child(even) { border-right: 1px solid #eef2f7; }
  .trust-item:last-child { border-right: 0; }
  .how-grid { grid-template-columns: .92fr 1.08fr; }
  .carousel-shell { --card-size: clamp(370px, 49vw, 420px); }
  .carousel-track { gap: 24px; padding-block: 54px; }
  .project-card { min-height: 555px; padding: 26px; }
  .project-card h3 { font-size: 1.65rem; }
  .solution-panel { padding: 36px; }
  .quick-offer { grid-template-columns: 1.15fr .85fr; gap: 26px; padding: 28px; text-align: left; }
  .quick-offer-facts { justify-content: flex-start; }
  .project-21-strip { grid-template-columns: 150px 1fr; padding: 24px 28px; text-align: left; }
  .project-21 { margin-inline: 0; }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .readiness-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr auto; }
  .safety-note { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .hero { min-height: min(900px, calc(100svh - var(--header-height))); padding: 70px 0; }
  .hero-grid { grid-template-columns: 1.02fr .98fr; grid-template-rows: auto auto; column-gap: 34px; row-gap: 0; }
  .hero-copy { text-align: left; }
  .hero-copy-heading { grid-column: 1; grid-row: 1; align-self: end; }
  .hero-copy-details { grid-column: 1; grid-row: 2; align-self: start; }
  .hero-copy-heading h1 { margin-bottom: 21px; }
  .hero-product { grid-column: 2; grid-row: 1 / span 2; }
  .hero-offer-line .price-anchor { justify-self: start; }
  .eyebrow { justify-content: flex-start; }
  .hero h1 { font-size: clamp(4.2rem, 7.2vw, 6.25rem); }
  .hero-lead, .hero-action { margin-left: 0; }
  .hero-product { width: min(100%, 660px); }
  .split-grid { grid-template-columns: 1fr 1fr; gap: 70px; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-card { min-height: 195px; }
  .offer-grid { grid-template-columns: 1fr minmax(420px, .82fr); gap: 70px; }
  .offer-copy { text-align: left; }
  .offer-copy > p { margin-left: 0; }
  .offer-cover { width: 290px; margin: 34px 0 -120px 90px; }
  .offer-card { padding: 38px 34px; }
  .faq-grid { grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
  .faq-intro { position: sticky; top: calc(var(--header-height) + 28px); }
  .footer-grid { grid-template-columns: 1fr auto 1.4fr; align-items: start; }
  .safety-note { grid-column: auto; }
}

@media (min-width: 1200px) {
  .carousel-shell { --card-size: 420px; }
  .carousel-track { gap: 30px; }
  .project-card { transform: scale(.87); }
  .project-card.is-active { transform: scale(1); }
}

@media (max-width: 699px) {
  .section { padding-block: 60px; }
  .section-heading { margin-bottom: 30px; }
  .how-section { padding-bottom: 48px; }
  .projects-section { padding-top: 50px; }
  .split-grid,
  .how-grid,
  .offer-grid,
  .faq-grid { gap: 28px; }

  .section-copy,
  .solution-panel,
  .step-card,
  .trust-item,
  .project-card,
  .benefit-card,
  .readiness-card,
  .offer-card,
  .faq-intro,
  .site-footer { text-align: center; }

  .shared-moment { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .readiness-section { padding-block: 60px; }
  .readiness-section .section-heading { margin-bottom: 28px; }
  .readiness-section .section-button { margin-top: 26px; }
  .offer-guarantee-panel { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .offer-guarantee-panel img { width: 68px; }

  .trust-item { flex-direction: column; gap: 8px; }

  .benefits-section { padding-block: 60px; }
  .benefits-section .section-heading { margin-bottom: 28px; }
  .benefits-grid { gap: 10px; }
  .benefit-card { min-height: 130px; padding: 16px 15px; }
  .benefit-card > span { width: 36px; height: 36px; margin-bottom: 10px; border-radius: 12px; }
  .benefit-card h3 { margin-bottom: 5px; }
  .benefits-section .section-button { margin-top: 26px; }

  .tick-list { width: fit-content; margin-inline: auto; }
  .tick-list li,
  .offer-list li { text-align: left; }

  .project-number { align-self: center; }
  .offer-list { max-width: 310px; margin-inline: auto; }
  .faq-cta { margin-inline: auto; }
  .footer-brand img { margin-inline: auto; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 359px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .hero { padding-top: 38px; }
  .hero-badge-two { display: none; }
  .trust-item { min-height: 104px; padding-inline: 5px; }
  .trust-item svg { width: 26px; height: 26px; }
  .trust-item strong { font-size: .82rem; }
  .project-card { padding: 18px; }
  .mobile-sticky .button { min-width: 0; width: 55vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto!important; animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
  [data-reveal], html.reveal-enabled [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .mobile-sticky, .carousel-controls, .checkout-link { display: none!important; }
  body { color: #000; background: #fff; }
  [data-reveal], html.reveal-enabled [data-reveal] { opacity: 1!important; transform: none!important; }
  .section { break-inside: avoid; }
}
