:root {
  --deep: #073f45;
  --deep-2: #052f35;
  --green: #0f8a57;
  --mint: #09d7a9;
  --mint-soft: #b7f1df;
  --cream: #f8f4e8;
  --paper: #fffdf7;
  --ink: #153f3b;
  --muted: #5d746f;
  --warm: #c67b00;
  --warm-2: #e3a21a;
  --warm-soft: #fff0bd;
  --line: rgba(15, 90, 78, .15);
  --shadow: 0 25px 60px rgba(4, 49, 54, .16);
  --radius: 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; min-width: 320px; background: var(--paper); color: var(--ink); overflow-x: hidden; }
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.035em; }
h2 { font-size: clamp(2.3rem, 4vw, 4.25rem); line-height: 1.03; margin-bottom: 22px; }
p { line-height: 1.75; color: var(--muted); }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease var(--delay, 0ms), transform .7s ease var(--delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; color: var(--green); font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow--warm { color: var(--warm-2); }
.section-heading { max-width: 770px; margin-bottom: 54px; }
.section-heading p { max-width: 690px; font-size: 1.08rem; }
.section-heading--light h2, .section-heading--light p { color: white; }
.section-heading--light .eyebrow { color: var(--mint); }

.button { display: inline-flex; justify-content: center; align-items: center; gap: 10px; min-height: 54px; padding: 14px 24px; border: 0; border-radius: 999px; background: var(--green); color: white; font-weight: 800; box-shadow: 0 12px 30px rgba(15, 138, 87, .24); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(15, 138, 87, .3); background: #0b774b; }
.button svg { width: 20px; }
.button--small { min-height: 44px; padding: 10px 18px; }
.button--large { min-height: 62px; padding-inline: 32px; font-size: 1.05rem; }
.button--warm { background: var(--warm-2); color: #3d2900; box-shadow: 0 14px 34px rgba(219, 147, 7, .28); }
.button--warm:hover { background: #f0b52d; box-shadow: 0 18px 38px rgba(219, 147, 7, .34); }
.button--outline { background: transparent; color: var(--green); border: 1px solid rgba(15, 138, 87, .35); box-shadow: none; }
.button--outline:hover { color: white; }
.text-link { font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 3px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 60; background: rgba(5, 47, 53, .9); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(16px); }
.header-inner { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; color: white; }
.brand img { width: 82px; height: 52px; object-fit: contain; }
.brand span { display: grid; line-height: 1; border-left: 1px solid rgba(255,255,255,.22); padding-left: 12px; }
.brand strong { font-family: Georgia, serif; font-size: 1.02rem; }
.brand small { color: var(--mint); margin-top: 5px; letter-spacing: .08em; text-transform: uppercase; font-size: .62rem; }
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav > a:not(.button) { color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 650; transition: color .2s ease; }
.main-nav > a:not(.button):hover { color: var(--mint); }
.menu-button { display: none; border: 0; background: transparent; color: white; cursor: pointer; }

.hero { position: relative; min-height: 850px; padding-top: 80px; background: var(--deep); color: white; overflow: hidden; }
.hero-texture { position: absolute; inset: 0; opacity: .38; background-image: radial-gradient(circle at 20% 10%, rgba(9,215,169,.2), transparent 32%), radial-gradient(circle at 90% 70%, rgba(227,162,26,.17), transparent 30%), linear-gradient(115deg, transparent 25%, rgba(255,255,255,.025) 25% 26%, transparent 26% 55%, rgba(255,255,255,.02) 55% 56%, transparent 56%); }
.hero-grid { position: relative; z-index: 2; min-height: 690px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; padding-top: 62px; padding-bottom: 68px; }
.hero-copy { max-width: 670px; }
.hero h1 { font-size: clamp(3.8rem, 6.6vw, 7rem); line-height: .91; margin-bottom: 30px; color: white; }
.hero h1 em { color: var(--mint); font-weight: 400; }
.hero-lead { max-width: 650px; color: rgba(255,255,255,.78); font-size: 1.14rem; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 19px; list-style: none; padding: 0; margin: 34px 0 0; color: rgba(255,255,255,.72); font-size: .9rem; }
.hero-trust li { display: flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 17px; color: var(--mint); }
.hero-art { position: relative; height: 640px; display: grid; place-items: center; }
.book-render { position: relative; z-index: 3; display: block; width: 510px; max-width: 96%; height: auto; object-fit: contain; filter: drop-shadow(0 20px 18px rgba(1,27,29,.16)); }
.book-mock--hero { transform: translateX(8px); }
.hero-bookmark { position: absolute; z-index: 4; right: 38px; bottom: 48px; height: 290px; width: 84px; object-fit: cover; border-radius: 8px; transform: rotate(8deg); filter: drop-shadow(0 16px 18px rgba(1,27,29,.24)); }
.hero-badge { position: absolute; z-index: 5; left: 6px; bottom: 44px; display: grid; width: 150px; padding: 18px; border-radius: 20px; background: rgba(255,255,255,.96); color: var(--ink); box-shadow: var(--shadow); transform: rotate(-4deg); }
.hero-badge span { color: var(--warm); font-size: .68rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.hero-badge strong { font-family: Georgia, serif; font-size: 1.25rem; margin: 5px 0 3px; }
.hero-badge small { color: var(--muted); }
.bee-path { position: absolute; z-index: 1; color: rgba(83,50,0,.5); letter-spacing: 4px; }
.bee-path--one { left: -30px; top: 120px; transform: rotate(-10deg); }
.bee-path--two { right: -40px; top: 105px; transform: rotate(16deg); }
.benefit-strip { position: relative; z-index: 4; border-top: 1px solid rgba(255,255,255,.08); background: rgba(2,31,35,.82); overflow: hidden; }
.benefit-strip-track { width: min(1180px, calc(100% - 40px)); min-height: 82px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.benefit-strip span { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.78); font-size: .87rem; font-weight: 750; white-space: nowrap; }
.benefit-strip svg { width: 19px; color: var(--mint); }

.living-book { background: var(--paper); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { min-height: 275px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 16px 45px rgba(13, 74, 65, .06); }
.icon-orbit { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: var(--mint-soft); color: var(--green); margin-bottom: 25px; }
.icon-orbit svg { width: 29px; height: 29px; }
.feature-card h3 { font-family: Georgia, serif; font-size: 1.55rem; margin-bottom: 12px; }

.first-book { position: relative; background: #eef7ef; overflow: hidden; }
.first-book::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(227,162,26,.12); top: -300px; right: -180px; }
.first-book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.first-book-visual { position: relative; min-height: 650px; display: flex; align-items: center; justify-content: center; }
.book-mock--first { width: 520px; max-width: 94%; transform: none; }
.bookmark-frame { position: absolute; width: 114px; height: 404px; right: 9%; bottom: 40px; padding: 7px; border-radius: 12px; background: white; box-shadow: 0 18px 38px rgba(11,64,57,.16); transform: rotate(6deg); z-index: 5; }
.bookmark-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 7px; }
.visual-note { position: absolute; left: 8%; bottom: 52px; padding: 13px 18px; border-radius: 999px; background: var(--deep); color: white; font-weight: 750; transform: rotate(-3deg); z-index: 6; }
.first-book-copy h2 { margin-bottom: 6px; }
.book-author { color: var(--warm); font-family: Georgia, serif; font-size: 1.25rem; }
.first-book-copy > p:not(.book-author) { font-size: 1.08rem; }
.delivery-card { display: flex; gap: 16px; align-items: flex-start; margin: 30px 0; padding: 20px; border-radius: 18px; background: white; border: 1px solid var(--line); }
.delivery-card svg { flex: 0 0 auto; color: var(--green); }
.delivery-card div { display: grid; gap: 4px; }
.delivery-card span { color: var(--muted); line-height: 1.5; }

.how { background: var(--paper); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.step { position: relative; padding: 42px 38px 18px 0; border-right: 1px solid var(--line); }
.step:not(:first-child) { padding-left: 38px; }
.step:last-child { border-right: 0; }
.step-number { color: var(--warm); font-family: Georgia, serif; font-size: 3.5rem; line-height: 1; opacity: .55; }
.step h3 { font-family: Georgia, serif; font-size: 1.55rem; margin: 18px 0 10px; }

.box-section { background: var(--deep); color: white; overflow: hidden; }
.box-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.box-section h2 { color: white; }
.box-section p { color: rgba(255,255,255,.68); }
.box-benefits { display: grid; gap: 20px; margin-top: 36px; }
.box-benefit { display: flex; align-items: flex-start; gap: 16px; }
.box-benefit > svg { flex: 0 0 auto; width: 26px; color: var(--mint); }
.box-benefit div { display: grid; gap: 4px; }
.box-benefit span { color: rgba(255,255,255,.65); line-height: 1.5; }
.box-illustration { position: relative; min-height: 540px; display: flex; align-items: center; justify-content: center; }
.box-bundle-image { width: min(100%, 560px); height: auto; display: block; filter: drop-shadow(0 22px 28px rgba(0,0,0,.16)); }

.library { background: var(--deep-2); color: white; }
.book-shelf { display: flex; align-items: flex-end; gap: 18px; padding: 35px 15px 24px; overflow-x: auto; scrollbar-width: thin; scrollbar-color: var(--mint) rgba(255,255,255,.08); border-bottom: 13px solid #b2782f; box-shadow: inset 0 -8px 0 #7b4b17, 0 24px 35px rgba(0,0,0,.22); }
.shelf-book { flex: 0 0 145px; margin: 0; transform: rotate(var(--tilt)); transition: transform .25s ease; }
.shelf-book:hover { transform: translateY(-12px) rotate(0); }
.shelf-book img { width: 145px; height: 220px; object-fit: cover; border-radius: 3px 7px 7px 3px; box-shadow: 0 15px 24px rgba(0,0,0,.32); }
.shelf-book figcaption { margin-top: 15px; color: rgba(255,255,255,.75); font-size: .76rem; line-height: 1.35; }
.library-note { margin-top: 25px; color: rgba(255,255,255,.52); font-size: .85rem; }

.beyond { background: #eff9f5; }
.beyond-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 100px; align-items: center; }
.pill { display: inline-flex; padding: 9px 14px; border-radius: 999px; background: var(--warm-soft); color: #7d5000; font-size: .75rem; font-weight: 850; margin-bottom: 18px; }
.beyond-copy .eyebrow { display: flex; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; }
.check-list li { display: flex; align-items: center; gap: 10px; color: var(--muted); }
.check-list svg { width: 19px; color: var(--green); }
.pdf-mockup { position: relative; min-height: 560px; display: flex; align-items: center; justify-content: center; }
.pdf-sheet { position: absolute; width: 360px; height: 510px; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 40px rgba(10,61,65,.12); }
.pdf-sheet--back { background: linear-gradient(180deg, #f0d58f, #d79a17); transform: rotate(8deg) translate(26px, 10px); }
.pdf-sheet--front { background: white; border: 1px solid #e6ddd0; transform: rotate(-3deg); }
.pdf-sheet--front img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdf-pill { position: absolute; left: 42px; bottom: 20px; z-index: 4; padding: 12px 18px; border-radius: 999px; background: var(--deep); color: white; font-size: .76rem; font-weight: 850; box-shadow: 0 12px 20px rgba(7,63,69,.18); }

.plans-section { background: var(--paper); }
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 980px; margin: 0 auto; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; padding: 42px; border: 1px solid var(--line); border-radius: 32px; background: white; box-shadow: 0 20px 48px rgba(11, 78, 66, .08); overflow: hidden; }
.plan-card--highlighted { background: var(--deep); color: white; border-color: transparent; transform: translateY(-12px); box-shadow: 0 28px 60px rgba(4,49,54,.25); }
.plan-ribbon { position: absolute; right: -42px; top: 27px; width: 170px; padding: 8px; text-align: center; background: var(--warm-2); color: #3d2900; font-size: .7rem; font-weight: 900; transform: rotate(35deg); }
.plan-eyebrow { color: var(--green); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.plan-card--highlighted .plan-eyebrow { color: var(--mint); }
.plan-card h3 { margin: 11px 0 26px; font-family: Georgia, serif; font-size: 2.1rem; }
.price { display: grid; gap: 8px; padding-bottom: 27px; border-bottom: 1px solid var(--line); }
.plan-card--highlighted .price { border-color: rgba(255,255,255,.13); }
.price strong { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.055em; }
.price small { color: var(--warm); font-weight: 800; font-size: .92rem; }
.plan-card--highlighted .price small { color: var(--warm-2); }
.plan-card ul { list-style: none; padding: 0; margin: 30px 0 35px; display: grid; gap: 15px; flex: 1; }
.plan-card li { display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; color: var(--muted); }
.plan-card--highlighted li { color: rgba(255,255,255,.75); }
.plan-card li svg { flex: 0 0 auto; width: 19px; color: var(--green); }
.plan-card--highlighted li svg { color: var(--mint); }
.plan-card:not(.plan-card--highlighted) .button { width: 100%; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 15px; color: var(--muted); }
.plan-card--highlighted .secure-note { color: rgba(255,255,255,.5); }
.secure-note svg { width: 16px; }
.plan-footnote { text-align: center; margin: 32px auto 0; max-width: 740px; font-size: .88rem; }

.testimonials { background: #eff7f0; }
.testimonial-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.testimonial-heading .section-heading { margin-bottom: 36px; }
.carousel-buttons { display: flex; gap: 10px; margin-bottom: 40px; }
.carousel-buttons button { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--green); cursor: pointer; transition: background .2s, color .2s; }
.carousel-buttons button:hover { background: var(--green); color: white; }
.testimonial-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 0 20px; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-track img { flex: 0 0 min(350px, 86vw); width: min(350px, 86vw); aspect-ratio: 350 / 248; object-fit: contain; border-radius: 16px; box-shadow: 0 18px 35px rgba(13,70,62,.11); scroll-snap-align: start; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { font-size: clamp(2.3rem, 3.6vw, 3.7rem); }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 2px; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 800; cursor: pointer; }
.faq-item button svg { flex: 0 0 auto; width: 21px; transition: transform .25s ease; }
.faq-item.is-open button svg { transform: rotate(180deg); color: var(--green); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer p { min-height: 0; overflow: hidden; margin-bottom: 0; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding: 0 35px 24px 2px; }

.final-cta { position: relative; padding: 110px 0; background: var(--deep); color: white; overflow: hidden; }
.final-cta-pattern { position: absolute; inset: 0; opacity: .17; background-image: radial-gradient(circle at 15% 30%, var(--mint) 0 2px, transparent 3px), radial-gradient(circle at 85% 75%, var(--warm-2) 0 2px, transparent 3px); background-size: 34px 34px, 41px 41px; }
.final-cta-inner { position: relative; z-index: 1; text-align: center; max-width: 850px; }
.final-cta-logo { width: 190px; margin: 0 auto 22px; display: block; }
.final-cta h2 { color: white; font-size: clamp(2.7rem, 5vw, 5rem); }
.final-cta p { max-width: 680px; margin: 0 auto 32px; color: rgba(255,255,255,.68); font-size: 1.1rem; }

.footer { padding: 70px 0 25px; background: #032b30; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 45px; padding-bottom: 50px; }
.footer-brand img { width: 190px; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,.55); max-width: 280px; }
.footer h3 { font-family: Georgia, serif; font-size: 1.1rem; margin-bottom: 20px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer a, .footer button, .footer span { color: rgba(255,255,255,.64); font-size: .88rem; }
.footer a { display: flex; align-items: center; gap: 8px; }
.footer a:hover, .footer button:hover { color: var(--mint); }
.footer a svg { width: 17px; }
.footer button { border: 0; padding: 0; background: transparent; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom span { font-size: .77rem; }

.whatsapp-float { position: fixed; z-index: 45; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; min-height: 54px; padding: 12px 18px; border-radius: 999px; background: #20b765; color: white; font-weight: 850; box-shadow: 0 16px 35px rgba(0,0,0,.25); transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float svg { width: 24px; }

.modal-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(2,25,28,.76); backdrop-filter: blur(8px); }
.legal-modal { position: relative; width: min(820px, 100%); max-height: min(860px, 90vh); overflow-y: auto; padding: 45px; border-radius: 26px; background: white; box-shadow: 0 35px 100px rgba(0,0,0,.35); }
.modal-close { position: sticky; float: right; top: 0; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--ink); cursor: pointer; }
.legal-modal h2 { font-size: 2.7rem; }
.legal-update, .legal-disclaimer { font-size: .82rem; }
.legal-content h3 { margin: 27px 0 7px; font-family: Georgia, serif; font-size: 1.2rem; }
.legal-content p { margin-bottom: 0; font-size: .94rem; }
.legal-disclaimer { margin-top: 34px; padding: 14px; border-radius: 12px; background: #fff5d7; color: #7c5c17; }

@media (max-width: 1020px) {
  .main-nav { gap: 16px; }
  .main-nav > a:not(.button) { display: none; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
  .hero-copy { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-art { height: 600px; }
  .benefit-strip-track { overflow-x: auto; justify-content: flex-start; }
  .first-book-grid, .box-grid, .beyond-grid { gap: 55px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 800px) {
  .section { padding: 82px 0; }
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { height: 70px; }
  .brand img { width: 68px; }
  .brand span { display: none; }
  .main-nav { position: absolute; inset: 70px 14px auto; display: none; padding: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: #073f45; box-shadow: var(--shadow); }
  .main-nav.is-open { display: grid; }
  .main-nav > a:not(.button) { display: block; padding: 10px; }
  .menu-button { display: grid; place-items: center; }
  .hero { padding-top: 70px; }
  .hero-grid { padding-top: 72px; gap: 20px; }
  .hero h1 { font-size: clamp(3.35rem, 15vw, 5.3rem); }
  .hero-lead { font-size: 1rem; }
  .hero-art { height: 540px; transform: scale(.92); }
  .feature-grid, .steps, .plans-grid { grid-template-columns: 1fr; }
  .first-book-grid, .box-grid, .beyond-grid, .faq-grid { grid-template-columns: 1fr; }
  .first-book-visual { min-height: 590px; }
  .steps { border-top: 0; }
  .step, .step:not(:first-child) { padding: 25px 0; border-right: 0; border-top: 1px solid var(--line); }
  .box-illustration { min-height: 530px; }
  .plans-grid { gap: 20px; }
  .plan-card--highlighted { transform: none; order: -1; }
  .faq-intro { position: static; }
  .testimonial-heading { align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .section-heading { margin-bottom: 36px; }
  h2 { font-size: 2.55rem; }
  .hero-grid { min-height: 0; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-trust { gap: 10px 15px; }
  .hero-art { height: 500px; margin-inline: -10px; transform: scale(.88); transform-origin: center top; }
  
  .book-render { width: 430px; max-width: 96%; }
  .book-mock--hero { transform: rotate(-1deg); }
  .benefit-strip-track { min-height: 70px; }
  .feature-card, .plan-card { padding: 28px; }
  .first-book-visual { min-height: 500px; transform: scale(.84); margin-inline: -20px; }
  .bookmark-frame { right: 4%; }
  .box-illustration { min-height: auto; transform: none; margin-inline: 0; }
  .box-bundle-image { width: min(100%, 480px); }
  .pdf-mockup { min-height: 480px; transform: scale(.92); margin-inline: 0; transform-origin: center top; }
  .testimonial-heading { align-items: flex-start; }
  .carousel-buttons { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 56px; justify-content: center; padding: 0; }
  .legal-modal { padding: 28px 22px; }
  .legal-modal h2 { font-size: 2rem; }
}

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