:root {
    --navy: #513b3c;
    --navy-2: #241a1b;
    --red: #795756;
    --gold: #d7b79d;
    --ink: #2e2424;
    --muted: #716363;
    --soft: #f7f2ef;
    --line: #e4d8d1;
    --white: #fff;
    --radius: 18px;
    --shadow: 0 14px 40px rgba(57, 40, 41, .13);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    font-synthesis: none
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased
}

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

a {
    color: inherit
}

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

h1,
h2,
h3 {
    line-height: 1.13;
    letter-spacing: -.025em
}

h1 {
    font-size: clamp(2.25rem, 7vw, 4.35rem);
    margin-bottom: 1.25rem
}

h2 {
    font-size: clamp(1.85rem, 5vw, 3rem);
    margin-bottom: 1.25rem
}

h3 {
    font-size: 1.28rem
}

.skip-link {
    position: fixed;
    z-index: 20;
    top: 8px;
    left: 8px;
    padding: .7rem 1rem;
    background: #fff;
    transform: translateY(-150%)
}

.skip-link:focus {
    transform: none
}

.offer-bar {
    padding: .68rem 1rem;
    text-align: center;
    background: var(--navy-2);
    color: #fff;
    font-size: .84rem;
    line-height: 1.35
}

.wrap {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto
}

.narrow {
    max-width: 830px
}

.section {
    padding: 4.5rem 0;
    scroll-margin-top: 1rem
}

.soft {
    background: var(--soft)
}

.center {
    text-align: center
}

.eyebrow {
    margin-bottom: .65rem;
    color: var(--red);
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase
}

.eyebrow.light {
    color: #ead2bf
}

.lead {
    font-size: clamp(1.12rem, 3vw, 1.35rem);
    font-weight: 650
}

.hero {
    overflow: hidden;
    padding: 3rem 0;
    background: linear-gradient(145deg, #f8f3f0 0%, #fff 55%, #eee3dc 100%)
}

.hero-grid,
.split {
    display: grid;
    gap: 2.5rem;
    align-items: center
}

.hero-copy {
    max-width: 650px
}

.hero-copy>p:not(.eyebrow) {
    max-width: 625px
}

.hero-product {
    position: relative;
    max-width: 520px;
    margin: auto
}

.hero-product img {
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.hero-badge {
    position: absolute;
    right: -.5rem;
    bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 118px;
    height: 118px;
    padding: 1rem;
    border: 6px solid #fff;
    border-radius: 50%;
    background: var(--gold);
    text-align: center;
    line-height: 1.08;
    box-shadow: var(--shadow);
    transform: rotate(-7deg)
}

.hero-badge strong {
    font-size: 1.5rem
}

.hero-badge span {
    font-size: .72rem;
    font-weight: 800
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 1.75rem
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: .8rem 1.25rem;
    border: 2px solid var(--navy);
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(81, 59, 60, .2)
}

.button:hover,
.button:focus-visible {
    background: var(--navy-2);
    border-color: var(--navy-2)
}

.text-link {
    font-weight: 800;
    color: var(--navy);
    text-underline-offset: 4px
}

.feature-image {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.feature-image.contain {
    box-shadow: none
}

h3 small {
    display: block;
    margin-top: .4rem;
    color: var(--muted);
    font-size: .7em;
    letter-spacing: 0
}

.check-list {
    display: grid;
    gap: .72rem;
    padding: 0;
    list-style: none
}

.check-list li {
    position: relative;
    padding-left: 1.7rem
}

.check-list li::before {
    position: absolute;
    left: 0;
    top: .05rem;
    content: "✓";
    color: var(--red);
    font-weight: 900
}

.compact {
    gap: .5rem;
    margin-bottom: 0
}

.navy {
    background: var(--navy);
    color: #fff
}

.university-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin: 2rem 0
}

.university-grid span {
    padding: .8rem .5rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 9px;
    background: rgba(255, 255, 255, .07);
    font-weight: 700
}

.button.gold {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy-2);
    box-shadow: none
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center
}

.content-grid {
    display: grid;
    gap: .5rem;
    padding: 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow)
}

.answer-note {
    margin: 1.3rem 0 0;
    text-align: center
}

.testimonial-grid {
    display: grid;
    gap: 1rem
}

.testimonial-grid img {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(57, 40, 41, .09)
}

.bonus {
    padding-block: 3rem;
    background: #f3e6dc
}

.bonus .split {
    display: block;
    max-width: 820px
}

.bonus h2 {
    max-width: 650px;
    margin-bottom: .85rem;
    font-size: clamp(1.65rem, 4vw, 2.5rem)
}

.bonus p {
    margin-bottom: .85rem
}

.bonus .format-note {
    padding: .65rem .85rem
}

.bonus .check-list {
    gap: .45rem;
    margin-bottom: 0
}

.format-note {
    padding: .85rem 1rem;
    border-left: 4px solid var(--navy);
    border-radius: 0 8px 8px 0;
    background: rgba(255, 255, 255, .55)
}

.package-grid {
    display: grid;
    gap: 1.25rem;
    max-width: 900px;
    margin: auto
}

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow)
}

.package-card.featured {
    border: 2px solid var(--gold)
}

.package-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    margin-bottom: 1rem
}

.package-card .button {
    width: 100%;
    margin-top: auto
}

.tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    padding: .35rem .75rem;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase
}

.price {
    color: var(--navy);
    font-size: 1.8rem;
    font-weight: 900
}

.price small {
    display: block;
    color: var(--muted);
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase
}

.order-section {
    background: var(--navy-2);
    color: #fff
}

.order-wrap {
    max-width: 940px
}

.notice {
    margin: 0 auto 1.25rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    background: rgba(255, 255, 255, .08)
}

.notice ul {
    margin: .5rem 0 0;
    padding-left: 1.2rem
}

.whatsapp-section {
    padding: 1.5rem 0;
    background: var(--soft);
    text-align: center
}

.whatsapp-section p {
    margin-bottom: .65rem;
    color: var(--muted)
}

.whatsapp-button {
    display: inline-flex;
    gap: .55rem;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: .8rem 1.25rem;
    border-radius: 10px;
    background: #25d366;
    color: #102d1b;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(18, 140, 69, .2)
}

.whatsapp-button svg {
    flex: 0 0 auto
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
    background: #1fbd5a
}

.order-frame {
    display: block;
    width: 100%;
    height: 1700px;
    border: 0;
    border-radius: 14px;
    background: #fff
}

.faq-list {
    display: grid;
    gap: .7rem
}

details {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff
}

summary {
    padding: 1rem 3rem 1rem 1rem;
    cursor: pointer;
    font-weight: 800;
    list-style-position: inside
}

details p {
    padding: 0 1rem 1rem;
    margin: 0;
    color: var(--muted)
}

footer {
    padding: 2rem 0;
    background: #181112;
    color: #e4d8d1;
    text-align: center;
    font-size: .82rem
}

footer p {
    margin: .3rem 0
}

.disclaimer {
    max-width: 850px;
    margin-inline: auto
}

@media (min-width:700px) {
    .wrap {
        width: min(1120px, calc(100% - 3rem))
    }

    .section {
        padding: 6rem 0
    }

    .section.bonus {
        padding-block: 3.5rem
    }

    .hero {
        padding: 4.5rem 0
    }

    .hero-grid,
    .split {
        grid-template-columns: 1fr 1fr
    }

    .reverse>img {
        order: 2
    }

    .content-grid {
        grid-template-columns: 1fr 1fr;
        padding: 2rem;
        gap: 2rem
    }

    .testimonial-grid,
    .package-grid {
        grid-template-columns: 1fr 1fr
    }

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

    .offer-bar {
        font-size: .95rem
    }
}

@media (max-width:699px) {
    .hero-copy {
        text-align: center
    }

    .actions {
        justify-content: center
    }

    .hero-product {
        width: min(92%, 430px)
    }

    .hero-badge {
        width: 95px;
        height: 95px;
        border-width: 4px
    }

    .hero-badge strong {
        font-size: 1.2rem
    }

    .split {
        gap: 2rem
    }

    .bonus .split {
        display: block
    }

    .section.bonus {
        padding-block: 1.5rem
    }

    .bonus h2 {
        font-size: 1.35rem
    }

    .bonus .check-list {
        font-size: .9rem;
        line-height: 1.45
    }

    .feature-image {
        max-width: 460px;
        margin-inline: auto
    }

    .button {
        width: 100%
    }

    .whatsapp-button {
        width: 100%
    }

    .text-link {
        width: 100%;
        text-align: center
    }

    .order-frame {
        height: 1900px
    }

    .package-card {
        padding: .85rem
    }

    .packages {
        padding-block: 2.25rem
    }

    .packages .section-heading {
        margin-bottom: 1rem
    }

    .packages .section-heading h2 {
        margin-bottom: 0;
        font-size: 1.55rem
    }

    .package-grid {
        gap: .85rem
    }

    .package-card img {
        height: 145px;
        margin-bottom: .55rem
    }

    .package-card h3 {
        margin-bottom: .2rem;
        font-size: 1.1rem
    }

    .package-card>p:not(.price) {
        margin-bottom: .5rem;
        font-size: .88rem;
        line-height: 1.4
    }

    .package-card .check-list {
        gap: .2rem;
        margin-block: 0 .65rem;
        font-size: .85rem;
        line-height: 1.4
    }

    .package-card .check-list li {
        padding-left: 1.35rem
    }

    .package-card .price {
        margin-bottom: .65rem;
        font-size: 1.45rem;
        line-height: 1.15
    }

    .package-card .price small {
        display: inline;
        margin-right: .3rem
    }

    .package-card .button {
        min-height: 44px;
        padding-block: .6rem
    }

    .package-card .tag {
        top: .75rem;
        left: .75rem;
        padding: .25rem .6rem
    }
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }
}
