



/* ── FAQ (asymmetric: sticky aside + numbered list) ── */
.faq-section {
    padding: 100px 0;
    background: var(--e0)
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.42fr 1fr;
    gap: 64px;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto
}

/* Left aside — sticky, stays in view as questions scroll past */
.faq-aside {
    position: sticky;
    top: 120px
}

.faq-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px
}

.faq-title {
    font-family: var(--display);
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 700;
    color: var(--e9);
    letter-spacing: -1.4px;
    line-height: 1.1;
    margin-bottom: 14px
}

.faq-sub {
    font-size: 15px;
    color: var(--e6);
    line-height: 1.65;
    letter-spacing: -.1px;
    margin-bottom: 24px
}

.faq-cta {
    text-align: left
}

.faq-cta .btn-s {
    font-size: 14px;
    padding: 11px 22px
}

.faq-cta .btn-s svg {
    width: 14px;
    height: 14px;
    transition: transform .25s var(--ease)
}

.faq-cta .btn-s:hover svg {
    transform: translateX(3px)
}

.faq-contact {
    margin-top: 20px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--e7);
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: left
}

.faq-contact a {
    color: var(--coral);
    text-decoration: none;
    border-bottom: 1px solid var(--coral);
    padding-bottom: 1px;
    transition: color .2s, border-color .2s
}

.faq-contact a:hover {
    color: var(--coral-d);
    border-bottom-color: var(--coral-d)
}

/* Right list — numbered items, dividers, +/- icons */
.faq-list {
    border-top: 1px solid var(--e2)
}

.faq-item {
    border-bottom: 1px solid var(--e2);
    transition: background .25s ease
}

.faq-item:hover:not(.open) {
    background: rgba(30, 18, 9, .018)
}

.faq-q {
    width: 100%;
    padding: 24px 8px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--display);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    color: var(--e9)
}

.faq-q-text {
    font-family: var(--display);
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 600;
    color: var(--e9);
    letter-spacing: -.4px;
    line-height: 1.4;
    flex: 1
}

.faq-num {
    display: inline-block;
    min-width: 26px;
    color: var(--e9);
    font-weight: 600
}

/* +/- icon — morphs from + (closed) to - (open) */
.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    position: relative;
    margin-top: 4px
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--e7);
    border-radius: 1px;
    transition: transform .3s var(--ease), opacity .3s var(--ease)
}

.faq-icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 1.5px;
    transform: translateY(-50%)
}

.faq-icon::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1.5px;
    transform: translateX(-50%) scaleY(1)
}

.faq-item.open .faq-icon::after {
    transform: translateX(-50%) scaleY(0)
}

.faq-q:hover .faq-icon::before,
.faq-q:hover .faq-icon::after {
    background: var(--e9)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease)
}

.faq-item.open .faq-a {
    max-height: 600px
}

.faq-a-inner {
    padding: 4px 8px 28px 34px;
    font-size: 15px;
    color: var(--e6);
    line-height: 1.7;
    letter-spacing: -.1px
}

.faq-a-inner p {
    margin-bottom: 14px
}

.faq-a-inner p:last-child {
    margin-bottom: 0
}

/* ── Final CTA (label + title + equal buttons + your-book placeholder) ── */
.cta-final {
    position: relative;
    padding: 96px 0 0;
    background: var(--e1)
}

.cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2
}

.cta-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 20px
}

.cta-title {
    font-family: var(--display);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    color: var(--e9);
    letter-spacing: -2.2px;
    line-height: 1.05;
    margin: 0 0 32px
}

.cta-btns-wrap {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 22px
}

/* Equal-sized buttons in this section only — keeps global btn-p/btn-s untouched */
.cta-btns-wrap .btn {
    padding: 14px 32px;
    font-size: 15px;
    min-width: 160px;
    justify-content: center
}

.cta-reassure {
    font-family: var(--mono);
    font-size: 11px;
    color: gray;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0
}

.cta-reassure-dot {
    display: inline-block;
    margin: 0 8px;
    opacity: .5
}

/* Bookshelf — 5 covers with title text, "Your ebook" placeholder in the middle as focal point */
/* margin-bottom NEGATIVE so books overhang into the footer (anchored, not flying) */
.cta-bookshelf {
    margin: 64px auto 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    pointer-events: none;
    position: relative
}

.cta-bk {
    position: relative;
    flex-shrink: 0;
    transform-origin: bottom center;
    border-radius: 2px 2px 0 0;
    box-shadow: 0 -10px 30px -8px rgba(30, 18, 9, .22), 0 -3px 10px -3px rgba(30, 18, 9, .10);
    transition: transform .55s var(--ease)
}

/* Image-based books — real AI-generated covers (the four flanking books) */
.cta-bk-img {
    overflow: hidden
}

.cta-bk-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top
}

/* Book 1 — far left — How a Child Becomes a Reader (cream + navy) */
.cta-bk-1 {
    width: 110px;
    height: 176px;
    transform: translateY(40px) rotate(-1deg);
    z-index: 1
}

/* Book 2 — left — Easy on the Climbs (forest green + copper) */
.cta-bk-2 {
    width: 116px;
    height: 186px;
    transform: translateY(24px) rotate(0.5deg);
    z-index: 2
}

/* Book 3 — center — PLACEHOLDER "Your ebook is waiting" — tallest, focal point */
.cta-bk-3 {
    width: 134px;
    height: 212px;
    background: linear-gradient(180deg, #FBF3E8 0%, #F4E8D6 100%);
    border-radius: 2px 2px 0 0;
    transform: translateY(12px) rotate(-0.3deg);
    z-index: 5;
    pointer-events: auto;
    padding: 32px 14px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .45s var(--ease), box-shadow .4s ease;
    box-shadow: 0 -14px 36px -8px rgba(232, 93, 84, 0.16), 0 -10px 30px -8px rgba(30, 18, 9, .20), 0 -3px 10px -3px rgba(30, 18, 9, .10)
}

.cta-bk-3:hover {
    transform: translateY(2px) rotate(-0.3deg);
    box-shadow: 0 -16px 40px -8px rgba(232, 93, 84, 0.24), 0 -12px 32px -8px rgba(30, 18, 9, .22), 0 -3px 10px -3px rgba(30, 18, 9, .12)
}

.cta-bk-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 4px;
    right: 4px;
    height: 2px;
    background: rgba(232, 93, 84, .18);
    border-radius: 2px 2px 0 0;
    pointer-events: none
}

/* "Your ebook" — italic serif, large, focal */
.bk-3-title {
    font-family: var(--display);
    font-style: italic;
    font-size: 22px;
    font-weight: 500;
    color: var(--coral);
    line-height: 1;
    letter-spacing: -0.5px;
    margin: 0 0 10px;
    text-align: center;
    white-space: nowrap
}

/* "is waiting." — serif, medium, dark */
.bk-3-sub {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 500;
    color: #3A2818;
    line-height: 1.1;
    margin: 0 0 14px;
    text-align: center
}

/* Decorative coral hairline */
.bk-3-rule {
    width: 16px;
    height: 1px;
    background: rgba(232, 93, 84, 0.5);
    border: none;
    margin: 0
}

/* "Generated in your voice. / In minutes." — italic byline, two lines, sits at bottom */
.bk-3-author {
    font-family: var(--display);
    font-style: italic;
    font-size: 11px;
    font-weight: 400;
    color: rgba(58, 40, 24, 0.58);
    line-height: 1.35;
    text-align: center;
    margin-top: auto
}

/* Book 4 — right — Centering (cream + terracotta) */
.cta-bk-4 {
    width: 116px;
    height: 186px;
    transform: translateY(22px) rotate(0.4deg);
    z-index: 2
}

/* Book 5 — far right — What We Cannot See (deep navy + gold) */
.cta-bk-5 {
    width: 110px;
    height: 176px;
    transform: translateY(38px) rotate(1deg);
    z-index: 1
}

@media(max-width:900px) {
    .cta-bookshelf {
        gap: 8px
    }

    .cta-bk-1 {
        width: 96px;
        height: 154px;
        transform: translateY(36px) rotate(-1deg)
    }

    .cta-bk-2 {
        width: 102px;
        height: 163px;
        transform: translateY(22px) rotate(0.5deg)
    }

    .cta-bk-3 {
        width: 116px;
        height: 188px;
        padding: 26px 12px 18px;
        transform: translateY(12px) rotate(-0.3deg)
    }

    .cta-bk-3 .bk-3-title {
        font-size: 19px;
        margin-bottom: 8px
    }

    .cta-bk-3 .bk-3-sub {
        font-size: 12px;
        margin-bottom: 12px
    }

    .cta-bk-3 .bk-3-author {
        font-size: 10px
    }

    .cta-bk-4 {
        width: 102px;
        height: 163px;
        transform: translateY(20px) rotate(0.4deg)
    }

    .cta-bk-5 {
        width: 96px;
        height: 154px;
        transform: translateY(34px) rotate(1deg)
    }
}

@media(max-width:720px) {
    .cta-bookshelf {
        gap: 6px
    }

    /* Drop outermost two on tablets — keeps composition balanced */
    .cta-bk-1,
    .cta-bk-5 {
        display: none
    }

    .cta-bk-2 {
        width: 96px;
        height: 154px;
        transform: translateY(22px) rotate(0.5deg)
    }

    .cta-bk-3 {
        width: 112px;
        height: 178px;
        padding: 24px 11px 16px;
        transform: translateY(10px) rotate(-0.3deg)
    }

    .cta-bk-3 .bk-3-title {
        font-size: 18px;
        margin-bottom: 7px
    }

    .cta-bk-3 .bk-3-sub {
        font-size: 11px;
        margin-bottom: 10px
    }

    .cta-bk-3 .bk-3-author {
        font-size: 9.5px
    }

    .cta-bk-4 {
        width: 96px;
        height: 154px;
        transform: translateY(20px) rotate(0.4deg)
    }
}

@media(max-width:480px) {
    .cta-final {
        padding: 52px 0 0
    }

    .cta-btns-wrap {
        flex-direction: column;
        align-items: center;
        padding: 0 24px
    }

    .cta-btns-wrap .btn {
        width: 100%;
        max-width: 280px
    }

    .cta-bookshelf {
        margin-top: 48px;
        gap: 5px
    }

    .cta-bk-2 {
        width: 80px;
        height: 128px;
        transform: translateY(20px) rotate(0.5deg)
    }

    .cta-bk-3 {
        width: 94px;
        height: 148px;
        padding: 20px 9px 14px;
        transform: translateY(8px) rotate(-0.3deg)
    }

    .cta-bk-3 .bk-3-title {
        font-size: 15px;
        margin-bottom: 6px;
        letter-spacing: -0.3px
    }

    .cta-bk-3 .bk-3-sub {
        font-size: 10px;
        margin-bottom: 8px
    }

    .cta-bk-3 .bk-3-author {
        font-size: 9px
    }

    .cta-bk-4 {
        width: 80px;
        height: 128px;
        transform: translateY(18px) rotate(0.4deg)
    }
}



/* ── Responsive ── */
@media(max-width:968px) {
    .hero h1 {
        font-size: 42px;
        letter-spacing: -1.5px
    }

    .sh-title {
        font-size: 36px;
        letter-spacing: -1.2px
    }

    .bento {
        grid-template-columns: 1fr
    }

    .bento-card.wide {
        grid-column: span 1
    }

    .bento-card.wide>div {
        grid-template-columns: 1fr !important
    }

    .price-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .footer-links-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 28px
    }

    .nav-center {
        position: static;
        transform: none
    }

    .tpl-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    /* FAQ stacks on tablet — aside no longer sticky */
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 680px
    }

    .faq-aside {
        position: static
    }

    .ebook-mockup {
        gap: 12px
    }

    .ebook-cover {
        width: 110px;
        height: 154px;
        padding: 14px 12px
    }

    .ebook-cover-title {
        font-size: 12px
    }

    .ebook-interior {
        width: 130px;
        height: 154px;
        padding: 12px 10px
    }

    .cta-box {
        padding: 56px 32px
    }

    .cta-box h2 {
        font-size: 34px
    }
}

@media(max-width:640px) {
    .container {
        padding: 0 20px
    }

    .hero {
        padding: 36px 0 16px
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: -1.2px
    }

    .hero-sub {
        font-size: 15px
    }

    .demo-section {
        padding: 0 0 24px
    }

    .hero-btns,
    .cta-btns {
        flex-direction: column
    }

    .hero-btns .btn,
    .cta-btns .btn {
        text-align: center;
        justify-content: center
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px
    }

    .nav-toggle {
        display: block
    }

    .nav-close {
        display: block
    }

    .nav-center {
        display: none
    }

    .nav-right {
        position: fixed;
        inset: 0;
        background: rgba(250, 248, 244, .98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        z-index: 200;
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s var(--ease)
    }

    .nav-right.open {
        opacity: 1;
        pointer-events: all
    }

    .nav-right .mob-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px
    }

    .nav-right .nav-link {
        font-size: 18px;
        font-weight: 600;
        color: var(--e9)
    }

    .nav-right .nav-cta {
        font-size: 16px;
        padding: 14px 32px
    }

    .nav-close {
        position: absolute;
        top: 18px;
        right: 20px
    }

    .wizard {
        padding: 26px 22px
    }

    .wiz-row {
        grid-template-columns: 1fr
    }

    .price-grid {
        grid-template-columns: 1fr
    }

    .how,
    .features,
    .showcase,
    .pricing,
    .faq-section {
        padding: 64px 0
    }

    .compare-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .compare-table {
        min-width: 520px;
        font-size: 12px
    }

    .compare-table th,
    .compare-table td {
        padding: 8px 10px
    }

    .cta-final {
        padding: 48px 0 0
    }

    .cta-box {
        padding: 48px 24px;
        border-radius: var(--r-lg)
    }

    .cta-box h2 {
        font-size: 28px
    }

    .sh {
        margin-bottom: 40px
    }

    .sh-title {
        font-size: 28px;
        letter-spacing: -1px
    }

    .sh-sub {
        font-size: 15px
    }

    .footer {
        padding: 48px 0 24px
    }

    .footer-links-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px
    }

    .tpl-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .em-btns {
        flex-direction: column
    }

    .ebook-mockup {
        flex-direction: column;
        align-items: center
    }

    .ebook-cover,
    .ebook-interior {
        transform: none
    }

    .problem-items {
        flex-direction: column;
        align-items: center;
        gap: 20px
    }

    .bento-title {
        font-size: 22px
    }

    /* FAQ mobile — tighter padding, smaller question text */
    .faq-q {
        padding: 20px 4px;
        gap: 16px
    }

    .faq-q-text {
        font-size: 16px
    }

    .faq-num {
        min-width: 24px
    }

    .faq-a-inner {
        padding: 0 4px 22px 30px;
        font-size: 14.5px
    }

    .faq-head {
        margin-bottom: 36px
    }
}