:root {
    --primary: #376CE6;
    --accent: #F6631B;
    --secondary: #762ADF;
    --green: #00c853;
    --green-dark: #00a846;
    --green-soft: rgba(0, 200, 83, 0.1);
    --primary-soft: rgb(55 108 230/8%);
    --accent-soft: rgb(246 99 27/9%);
    --secondary-soft: rgb(118 42 223/8%);
    --ink: #111827;
    --muted: #667085;
    --surface: #fff;
    --soft: #f6f8fc;
    --border: #e5eaf2;
    --dark: #10162b;
    --container: 1180px;
    --heading: 'Manrope', sans-serif;
    --body: 'Roboto', sans-serif;
    --shadow: 0 18px 55px rgba(28, 48, 93, .1);
    --radius: 18px
}

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    font-family: var(--body);
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

a {
    text-decoration: none;
    color: inherit
}

button {
    font: inherit
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -60px;
    z-index: 9999;
    background: var(--dark);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px
}

.skip-link:focus {
    top: 12px
}

h1,
h2,
h3 {
    font-family: var(--heading);
    line-height: 1.08;
    letter-spacing: -.035em
}

h1 {
    font-size: clamp(2.55rem, 5vw, 4.7rem);
    font-weight: 800
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 800
}

h3 {
    font-size: 1.28rem;
    font-weight: 800
}

.section {
    padding: 100px 0
}

.section-heading {
    max-width: 780px;
    margin-bottom: 52px
}

.section-heading.centered {
    text-align: center;
    margin-inline: auto
}

.section-heading h2 {
    margin: 12px 0 18px
}

.section-heading p {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 670px;
    margin-inline: auto
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-family: var(--heading);
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase
}

.eyebrow {
    letter-spacing: 0;
    background: #fff;
    border: 1px solid rgba(55, 108, 230, .18);
    box-shadow: 0 8px 24px rgba(55, 108, 230, .08);
    border-radius: 99px;
    padding: 9px 13px;
    text-transform: none;
    font-size: .84rem
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px var(--accent-soft)
}

.btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 999px;
    padding: 0 26px;
    font-family: var(--heading);
    font-weight: 800;
    border: 1px solid transparent;
    transition: .25s ease;
    cursor: pointer
}

.btn:hover {
    transform: translateY(-2px)
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(246, 99, 27, .45);
    outline-offset: 3px
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 13px 30px rgba(55, 108, 230, .3)
}

.btn-primary:hover {
    box-shadow: 0 17px 34px rgba(55, 108, 230, .38)
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 13px 30px rgba(246, 99, 27, .28)
}

.btn-secondary {
    background: #fff;
    color: var(--primary);
    border-color: rgba(55, 108, 230, .3)
}

.btn-outline {
    color: var(--primary);
    border-color: rgba(55, 108, 230, .3);
    background: #fff
}

.btn-small {
    min-height: 44px;
    padding: 0 20px;
    font-size: .9rem
}

/* ==========================================================================
   TOP ANNOUNCEMENT BANNER (ENEM 2026 COUNTDOWN)
   ========================================================================== */
.top-banner {
    position: relative;
    background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 50%, #1d4ed8 100%);
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.86rem;
    box-shadow: 0 2px 8px rgba(29, 78, 216, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
    z-index: 60;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    animation: bannerShimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bannerShimmer {
    0% { left: -60%; }
    25%, 100% { left: 140%; }
}

.top-banner-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.top-banner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--heading);
    font-weight: 600;
    font-size: 0.86rem;
    line-height: 1.4;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.top-banner-link:hover {
    opacity: 0.92;
}

.timer-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2px 9px;
    border-radius: 8px;
    font-family: var(--heading);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.timer-pill b {
    font-weight: 800;
}

.timer-sep {
    opacity: 0.55;
    font-weight: 400;
    margin: 0 1px;
}

.site-header {
    height: 76px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--heading);
    font-weight: 700
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 12px;
    font-weight: 800
}

.brand-mark img {
    width: 26px;
    height: 26px;
    object-fit: contain
}

.brand strong {
    color: var(--primary)
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-family: var(--heading);
    font-size: .9rem;
    font-weight: 700;
    color: #344054
}

.desktop-nav a:hover {
    color: var(--primary)
}

.hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(135deg, #f8faff 0%, #fff 46%, #fbf7ff 100%);
    padding: 72px 0 58px
}

.hero:after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent)
}

.hero-shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px)
}

.hero-shape-one {
    width: 540px;
    height: 540px;
    right: -170px;
    top: -110px;
    background: radial-gradient(circle, var(--secondary-soft), transparent 67%)
}

.hero-shape-two {
    width: 460px;
    height: 460px;
    left: -260px;
    bottom: -160px;
    background: radial-gradient(circle, var(--primary-soft), transparent 67%)
}

.hero-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 56px;
    align-items: center
}

.hero-copy {
    max-width: 620px;
    position: relative;
    z-index: 2
}

.hero-copy h1 {
    margin: 22px 0;
    color: var(--dark)
}

.hero-copy h1:after {
    content: '';
    display: block;
    width: 92px;
    height: 8px;
    margin-top: 16px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--accent), var(--secondary))
}

.hero-lead {
    font-size: 1.18rem;
    color: #475467;
    max-width: 590px
}

.hero-lead strong {
    color: var(--ink)
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 23px;
    margin: 30px 0 20px
}

.text-link {
    font-family: var(--heading);
    font-weight: 800;
    color: var(--primary)
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: .86rem;
    color: #475467
}

.trust-row span:before {
    color: var(--primary)
}

.hero-media {
    min-height: 580px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-orbit {
    position: relative;
    width: 570px;
    height: 570px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(145deg, var(--primary), var(--secondary));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 35px 80px rgba(55, 108, 230, .26)
}

.hero-orbit:before,
.hero-orbit:after {
    content: '';
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    inset: 52px;
    pointer-events: none;
    z-index: 0
}

.hero-orbit:after {
    inset: 118px
}

.hero-orbit img {
    height: 670px;
    max-width: none;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: -80px;
    filter: drop-shadow(0 15px 25px rgba(16, 22, 43, .2))
}

.float-card {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 15px;
    padding: 14px 17px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    font-size: .84rem
}

.float-card strong {
    font-family: var(--heading)
}

.float-card span {
    color: var(--muted)
}

.float-card-top {
    right: -15px;
    top: 105px;
    animation: floatCardTop 4.5s ease-in-out infinite
}

.float-card-bottom {
    left: -8px;
    bottom: 56px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    animation: floatCardBottom 6.2s ease-in-out 1.2s infinite
}

.float-card-bottom div {
    display: flex;
    flex-direction: column
}

.score-pill {
    width: 58px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--accent);
    color: #fff !important;
    font-family: var(--heading);
    font-weight: 800
}

.green-check {
    color: var(--green, #00c853);
    font-weight: 900;
    margin-right: 3px
}

@keyframes floatCardTop {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-16px) rotate(2deg)
    }
}

@keyframes floatCardBottom {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg)
    }

    33% {
        transform: translate(-10px, -12px) rotate(-2.5deg)
    }

    66% {
        transform: translate(8px, -18px) rotate(1.5deg)
    }
}

.confidence-strip {
    border-bottom: 1px solid var(--border);
    background: #fff
}

.confidence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 22px 0
}

.confidence-item {
    padding: 8px 20px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.confidence-grid .confidence-item:last-child {
    border: 0
}

.confidence-svg {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: block
}

.confidence-svg.blue-svg {
    color: var(--primary)
}

.confidence-svg.green-svg {
    color: var(--green, #00c853)
}

.confidence-svg.orange-svg {
    color: var(--accent)
}

.confidence-svg.purple-svg {
    color: var(--secondary)
}

.confidence-item div {
    display: flex;
    flex-direction: column
}

.confidence-item strong {
    font-family: var(--heading);
    font-size: .95rem
}

.confidence-item span {
    font-size: .82rem;
    color: var(--muted)
}

.university-strip {
    background: #fff;
    padding: 34px 0 16px
}

.university-showcase {
    position: relative;
    min-height: 178px;
    display: grid;
    grid-template-columns: 150px minmax(250px, .85fr) 1.25fr;
    align-items: center;
    gap: 34px;
    padding: 28px 40px;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(125deg, #101a38, #17275b 58%, #263f91);
    box-shadow: 0 22px 60px rgba(30, 55, 125, .18)
}

.university-showcase:after {
    content: '';
    position: absolute;
    width: 310px;
    height: 310px;
    right: -150px;
    top: -190px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%
}

.university-brand-stack {
    position: relative;
    width: 112px;
    height: 112px;
    margin-left: 10px
}

.brand-stack-card {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 28px
}

.brand-stack-back { transform: rotate(-13deg); background: rgba(118,42,223,.58) }
.brand-stack-middle { transform: rotate(9deg); background: rgba(55,108,230,.78) }
.brand-stack-front { background: linear-gradient(145deg, var(--primary), var(--secondary)); box-shadow: 0 18px 35px rgba(4,10,29,.3) }
.brand-stack-front img { width: 62px; height: 62px; object-fit: contain }

.university-copy { position: relative; z-index: 1 }

.university-copy > span {
    color: #91adff;
    font-family: var(--heading);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase
}

.university-copy h2 {
    margin-top: 8px;
    color: #fff;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.15
}

.university-list {
    position: relative;
    z-index: 1;
    min-width: 0;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.university-track {
    display: flex;
    width: max-content;
    animation: universityTicker 24s linear infinite;
    will-change: transform
}

.university-list:hover .university-track { animation-play-state: paused }

.university-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 44px;
    padding-right: 44px
}

.university-group span {
    color: rgba(255,255,255,.9);
    font-family: var(--heading);
    font-size: clamp(1.8rem, 3vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1;
    white-space: nowrap
}

@keyframes universityTicker {
    to { transform: translateX(-50%) }
}

.pain-section {
    background: #fff
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.pain-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(31, 47, 86, .06);
    overflow: hidden
}

.pain-card:after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    right: -76px;
    top: -78px;
    border-radius: 50%;
    background: rgba(55, 108, 230, .075);
    pointer-events: none;
    transition: transform .55s cubic-bezier(.2, .75, .25, 1), background .35s ease
}

.pain-card:hover:after {
    transform: scale(1.28);
    background: rgba(55, 108, 230, .11)
}

.pain-card > * {
    position: relative;
    z-index: 1
}

.card-number {
    position: absolute;
    right: 24px;
    top: 22px;
    color: #cdd5e5;
    font-family: var(--heading);
    font-weight: 800
}

.pika-svg {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

.pain-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    margin-bottom: 24px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.pain-card:hover .pain-icon {
    transform: translateY(-3px);
}

.pain-icon-blue {
    background: rgba(37, 99, 235, 0.09);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.18);
    box-shadow: none;
}

.pain-icon-purple {
    background: rgba(55, 108, 230, .07);
    color: var(--primary);
    border: 1px solid rgba(55, 108, 230, .14);
    box-shadow: none;
}

.pain-icon-amber {
    background: rgba(55, 108, 230, .07);
    color: var(--primary);
    border: 1px solid rgba(55, 108, 230, .14);
    box-shadow: none;
}

.pain-card h3 {
    margin-bottom: 10px
}

.pain-card p {
    color: var(--muted)
}

.transition-copy {
    text-align: center;
    margin: 48px auto 0
}

.transition-copy p {
    color: var(--muted)
}

.transition-copy strong {
    font-family: var(--heading);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    color: var(--primary)
}

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

.method-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 76px;
    align-items: center
}

.method-intro h2 {
    margin: 22px 0 26px
}

.method-intro>p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 34px
}

.method-note {
    margin: 24px 0;
    padding: 17px 19px;
    border-left: 4px solid var(--accent);
    background: #fff;
    border-radius: 0 12px 12px 0;
    color: #475467
}

.method-note span {
    font-weight: 700;
    color: var(--ink)
}

.steps-list {
    display: grid;
    gap: 14px;
    list-style: none
}

.step-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(40, 60, 105, .05)
}

.step-icon-box {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}

.step-card:hover .step-icon-box {
    transform: scale(1.08);
}

.step-icon-blue {
    background: rgba(37, 99, 235, 0.09);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
}

.step-icon-purple {
    background: rgba(124, 58, 237, 0.09);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.08);
}

.step-icon-indigo {
    background: rgba(79, 70, 229, 0.09);
    color: #4f46e5;
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.08);
}

.step-icon-green {
    background: rgba(16, 185, 129, 0.09);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.08);
}

.step-badge-num {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.62rem;
    font-weight: 800;
    font-family: var(--heading);
    padding: 2px 5px;
    border-radius: 999px;
    line-height: 1;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.step-content {
    flex: 1;
}

.step-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 2px;
}

.step-card h3 {
    font-size: 1.08rem;
    margin: 1px 0 5px;
}

.step-card p {
    color: var(--muted);
    font-size: .94rem
}

.kit-section {
    background: #fff
}

.kit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px
}

.kit-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    background: #fff;
    box-shadow: 0 14px 45px rgba(27, 48, 94, .06);
    overflow: hidden
}

.kit-card.featured {
    border-color: rgba(118, 42, 223, .28);
    background: linear-gradient(145deg, #fff, var(--secondary-soft))
}

.kit-tag {
    font-family: var(--heading);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary)
}

.kit-card h3 {
    font-size: 1.45rem;
    margin: 12px 0 10px
}

.kit-card p {
    color: var(--muted)
}

.kit-card ul,
.price-card ul {
    list-style: none;
    display: grid;
    gap: 9px;
    margin-top: 20px
}

.kit-card li,
.price-card li {
    position: relative;
    padding-left: 25px;
    color: #475467
}

.kit-card li:before,
.price-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green, #00c853);
    font-weight: 900;
    font-size: 1.15em
}

.kit-card-wide {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 45px;
    align-items: center
}

.week-map {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
}

.week-map span {
    display: flex;
    flex-direction: column;
    padding: 18px;
    background: var(--soft);
    border-radius: 12px;
    color: var(--muted);
    font-size: .78rem
}

.week-map strong {
    font-family: var(--heading);
    color: var(--ink);
    font-size: .9rem
}

.preview-section {
    background: linear-gradient(135deg, var(--primary-soft), #fff 50%, var(--secondary-soft))
}

.preview-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 70px;
    align-items: center
}

.preview-media {
    position: relative
}

.preview-media img {
    position: relative;
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 8px solid #fff
}

.preview-glow {
    position: absolute;
    inset: 8% -5%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    filter: blur(45px);
    opacity: .16
}

.preview-copy h2 {
    margin: 14px 0 20px
}

.preview-copy>p {
    color: var(--muted);
    font-size: 1.08rem
}

.preview-points {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.preview-point-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.preview-icon-box {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    transition: transform .22s ease, box-shadow .22s ease;
}

.preview-point-item:hover .preview-icon-box {
    transform: scale(1.1) rotate(2deg);
}

.preview-sq-blue {
    background: rgba(37, 99, 235, 0.09);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.18);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.preview-sq-purple {
    background: rgba(124, 58, 237, 0.09);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.18);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
}

.preview-sq-amber {
    background: rgba(234, 88, 12, 0.09);
    color: #ea580c;
    border: 1px solid rgba(234, 88, 12, 0.18);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.08);
}

.preview-points p {
    color: #475467;
    font-size: 0.98rem;
    line-height: 1.45;
}

.team-section {
    background: #fff
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(27, 48, 94, .06);
    padding-bottom: 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(27, 48, 94, .12);
    border-color: rgba(55, 108, 230, .3);
}

.team-photo-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f4f6fa;
    position: relative;
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .35s ease;
}

.team-card:hover .team-photo-wrap img {
    transform: scale(1.05);
}

.team-role-tag {
    display: inline-block;
    width: max-content;
    max-width: calc(100% - 36px);
    margin-top: -16px;
    margin-left: 18px;
    margin-right: 18px;
    background: #fff;
    color: var(--primary);
    border: 1px solid rgba(55, 108, 230, .2);
    box-shadow: 0 4px 14px rgba(27, 48, 94, .08);
    border-radius: 99px;
    padding: 6px 13px;
    font-size: .74rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-card h3 {
    margin-top: 15px;
    margin-left: 18px;
    margin-right: 18px;
    font-size: 1.18rem;
    font-family: var(--heading);
    font-weight: 800;
    color: var(--dark);
}

.team-card p {
    margin-top: 6px;
    margin-left: 18px;
    margin-right: 18px;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.5;
}

.team-disclaimer {
    max-width: 740px;
    text-align: center;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: .82rem
}

.bonuses-section {
    background: var(--dark);
    position: relative;
    overflow: hidden
}

.bonuses-section:before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--secondary);
    filter: blur(150px);
    opacity: .18;
    right: -200px;
    top: -200px
}

.section-heading.light h2 {
    color: #fff
}

.section-heading.light p {
    color: #b8c1d9
}

.section-heading.light .section-kicker {
    color: #91aff5
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.bonus-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, .055)
}

.bonus-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.bonus-icon-squircle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.bonus-card:hover .bonus-icon-squircle {
    transform: scale(1.1) translateY(-2px);
}

.bonus-sq-blue {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.32);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.bonus-sq-purple {
    background: rgba(147, 51, 234, 0.2);
    color: #c084fc;
    border: 1px solid rgba(192, 132, 252, 0.32);
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.25);
}

.bonus-sq-green {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.32);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.bonus-sq-amber {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.32);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
}

.bonus-sq-rose {
    background: rgba(244, 63, 94, 0.2);
    color: #fb7185;
    border: 1px solid rgba(251, 113, 133, 0.32);
    box-shadow: 0 4px 16px rgba(244, 63, 94, 0.25);
}

.bonus-sq-cyan {
    background: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
    border: 1px solid rgba(34, 211, 238, 0.32);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.25);
}

.bonus-num-badge {
    font-family: var(--heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.32);
    letter-spacing: 0.06em;
}

.bonus-card h3 {
    color: #fff;
    font-size: 1.08rem;
    margin: 0 0 8px;
    letter-spacing: -.015em;
}

.bonus-card p {
    color: #aeb8d0;
    font-size: .9rem;
    line-height: 1.45;
}

.bonus-card b {
    display: inline-block;
    margin-top: 14px;
    color: #f99a6c;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

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

.pricing-grid {
    max-width: 1060px;
    margin: auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 32px;
    align-items: center;
}

/* Card Padrão (Plano Essencial - Tamanho Normal) */
.price-card-standard {
    position: relative;
    border: 1px solid rgba(55, 108, 230, .18);
    border-radius: 30px;
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(55, 108, 230, .1), 0 8px 22px rgba(16, 22, 43, .04);
    display: flex;
    flex-direction: column;
    height: auto;
    transition: transform .25s ease, box-shadow .25s ease;
}

.price-card-standard .price-head {
    padding: 26px 24px 24px;
    border-radius: 21px;
    background: linear-gradient(145deg, rgba(55, 108, 230, .095), rgba(118, 42, 223, .055));
    border: 1px solid rgba(55, 108, 230, .1)
}

.price-card-standard:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 55px rgba(31, 51, 98, 0.12);
}

.plan-kicker {
    font-family: var(--heading);
    font-size: .73rem;
    letter-spacing: .11em;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.price-head h3 {
    font-size: 1.55rem;
    margin: 8px 0;
}

.price-head p {
    color: var(--muted);
    min-height: 44px;
    font-size: .92rem;
    line-height: 1.45;
}

.price-anchor {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    margin-bottom: 2px;
}

.price-old {
    font-size: 0.92rem;
    color: #8896ab;
    font-weight: 600;
}

.price-old s {
    color: #94a3b8;
    text-decoration: line-through;
}

.price-wrap-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.price-wrap-row .price {
    display: flex;
    align-items: flex-start;
    margin-top: 0;
    color: var(--dark);
}

.price strong {
    font-family: var(--heading);
    font-size: 3.8rem;
    line-height: .95;
    letter-spacing: -.08em;
}

.price small {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 6px 3px;
}

.price-wrap-row .discount-badge {
    font-family: var(--heading);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.03em;
    display: inline-block;
    align-self: center;
}

.discount-badge.subtle {
    background: rgba(55, 108, 230, 0.08);
    color: var(--primary);
    border: 1px solid rgba(55, 108, 230, 0.2);
}

.payment-note {
    display: block;
    color: var(--muted);
    font-size: .84rem;
    margin-top: 6px;
}

.plan-features-standard {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin: 18px 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.plan-features-standard li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.4;
    color: #334155;
}

.price-card-standard .btn {
    width: auto;
    margin-inline: 18px;
    border-radius: 999px;
}

.price-card-standard .secure-badges-line {
    padding: 0 18px 18px
}

/* Card principal — adaptado ao design system do projeto */
.price-card-hero {
    position: relative;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(55, 108, 230, .2);
    padding: 10px;
    box-shadow: 0 26px 75px rgba(55, 108, 230, .15), 0 8px 24px rgba(16, 22, 43, .05);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.price-card-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 85px rgba(55, 108, 230, .21), 0 12px 32px rgba(16, 22, 43, .07);
}

.card-hero-header {
    background: linear-gradient(135deg, var(--primary) 0%, #4f50e8 54%, var(--secondary) 130%);
    color: #ffffff;
    padding: 34px 36px 28px;
    border-radius: 21px;
    position: relative;
    overflow: hidden;
}

.card-hero-header:before {
    display: none
}

.hero-particles {
    position: absolute !important;
    z-index: 0 !important;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity .7s ease
}

.price-card-hero.upsell-applied .hero-particles { opacity: 1 }

.card-hero-header > * {
    position: relative;
    z-index: 1
}

.hero-particles i {
    position: absolute;
    left: var(--x);
    bottom: -10px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: rgba(255,255,255,.34);
    opacity: 0;
    animation: particleDrift var(--duration) ease-in-out var(--delay) infinite paused
}

.price-card-hero.upsell-applied .hero-particles i { animation-play-state: running }

@keyframes particleDrift {
    0% { opacity: 0; transform: translate3d(0,0,0) scale(.6) }
    13% { opacity: .34 }
    42% { transform: translate3d(var(--drift),-70px,0) scale(1) }
    72% { opacity: .16; transform: translate3d(calc(var(--drift) * -.45),-128px,0) scale(.82) }
    100% { opacity: 0; transform: translate3d(calc(var(--drift) * .25),-178px,0) scale(.5) }
}

.card-hero-header:after {
    content: '';
    position: absolute;
    width: 230px;
    height: 230px;
    right: -105px;
    top: -125px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    pointer-events: none
}

.card-hero-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hero-plan-kicker {
    font-family: var(--heading);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.hero-discount-pill {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .28);
    font-family: var(--heading);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    box-shadow: none;
    backdrop-filter: blur(8px)
}

.hero-plan-title {
    font-family: var(--heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffffff;
    margin: 8px 0 16px;
    letter-spacing: -0.02em;
}

.hero-price-block {
    margin-bottom: 20px;
}

.offer-applied-note {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap
}

.price-card-hero.upsell-applied .offer-applied-note {
    max-height: none;
    margin: 0;
    opacity: 1
}

.price-card-hero.upsell-applied .hero-discount-pill {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    animation: discountConfirm .55s cubic-bezier(.2,.8,.2,1)
}

@keyframes discountConfirm {
    0% { transform: scale(.82); opacity: .3 }
    65% { transform: scale(1.08) }
    100% { transform: none; opacity: 1 }
}

.hero-price-rolling {
    display: inline-flex;
    align-items: flex-end;
    line-height: 1 !important;
    font-variant-numeric: tabular-nums lining-nums
}

.hero-price-rolling > span:not(.rolling-digit) {
    display: block;
    line-height: 1
}

.price-currency { margin-right: .12em }

.rolling-digit {
    position: relative;
    display: block;
    flex: 0 0 .63em;
    width: .63em;
    height: 1em;
    overflow: clip;
    line-height: 1;
    margin-right: -.1em
}

.rolling-digit-track {
    position: absolute;
    inset: 0 0 auto;
    display: flex;
    flex-direction: column;
    transition: transform .72s cubic-bezier(.16,1,.3,1);
    will-change: transform
}

.rolling-digit-track > span {
    display: block;
    flex: 0 0 1em;
    height: 1em;
    line-height: 1
}

.price-card-hero.upsell-applied .rolling-digit-track {
    transform: translateY(-1em)
}

.hero-price-old {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.hero-price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #ffffff;
}

.hero-price-main strong {
    font-family: var(--heading);
    font-size: 4.2rem;
    line-height: 0.92;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.hero-price-type {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.hero-installment {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin: 8px 0 4px;
}

.yellow-hl {
    color: #fff;
    font-weight: 800;
}

.hero-scarcity {
    display: block;
    color: rgba(255, 255, 255, .84);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.hero-scarcity:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(246, 99, 27, .18);
    vertical-align: 1px
}

.btn-hero-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    background: var(--accent);
    color: #fff;
    font-family: var(--heading);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 0 24px;
    border-radius: 999px;
    border: none;
    box-shadow: 0 12px 30px rgba(246, 99, 27, .34);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    margin-top: 18px;
}

.btn-hero-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(246, 99, 27, .42);
    filter: brightness(1.05);
}

.hero-micro-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    margin-top: 14px;
    text-align: center;
}

.card-hero-body {
    background: #ffffff;
    padding: 28px 24px 24px;
    border-radius: 0 0 20px 20px;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
}

.features-col {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.feature-item-ref {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.86rem;
    line-height: 1.4;
    color: #1e293b;
    font-weight: 500;
}

.check-circle-blue {
    flex-shrink: 0;
    margin-top: 2px;
    color: #2563eb;
}

.secure-badges-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 600;
}

.secure-badges-line span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.secure-svg-icon {
    width: 14px;
    height: 14px;
    color: #00a846;
    flex-shrink: 0;
}

.pricing-trust-text {
    max-width: 860px;
    margin: 32px auto 0;
    text-align: center;
}

.pricing-trust-text p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.trust-shield-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-trust-text strong {
    color: var(--dark);
    font-weight: 700;
}

.guarantee-section {
    background: #fff;
    padding-top: 70px
}

.guarantee-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 35px;
    align-items: center;
    max-width: 900px;
    padding: 40px;
    border: 1px solid rgba(55, 108, 230, .2);
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-soft), #fff);
    box-shadow: var(--shadow)
}

.guarantee-seal {
    display: block;
    width: 160px;
    height: 160px;
    object-fit: contain
}

.guarantee-card h2 {
    font-size: 2.25rem;
    margin: 9px 0
}

.guarantee-card p {
    color: var(--muted)
}

.faq-section {
    padding-top: 70px
}

.faq-container {
    max-width: 860px
}

.faq-list {
    display: grid;
    gap: 11px
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden
}

.faq-question {
    width: 100%;
    min-height: 62px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    border: 0;
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    cursor: pointer
}

.faq-question b {
    font-size: 1.4rem;
    color: var(--primary);
    transition: .2s
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--muted)
}

.faq-item.active .faq-question b {
    transform: rotate(45deg)
}

.final-cta {
    padding: 0 0 100px
}

.final-card {
    min-height: 380px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 50px;
    padding: 60px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #eef4ff, #f8f1ff);
    position: relative;
    isolation: isolate
}

.final-card h2 {
    max-width: 610px;
    margin: 12px 0 16px
}

.final-card p {
    color: var(--muted);
    margin-bottom: 26px
}

.final-copy {
    position: relative;
    z-index: 2
}

.final-art {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    min-height: 0;
    overflow: visible
}

.final-art-scene {
    position: absolute;
    inset: 0;
    clip-path: none;
    overflow: visible
}

.final-orbit {
    position: absolute;
    width: clamp(300px, 28vw, 350px);
    height: clamp(300px, 28vw, 350px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    right: -8px;
    bottom: 26px;
    box-shadow: 0 28px 70px rgba(78, 70, 229, .2)
}

.final-orbit:after {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: inherit
}

.final-student {
    position: absolute;
    z-index: 2;
    width: clamp(320px, 27vw, 340px);
    height: auto;
    right: -8px;
    bottom: -130px;
    filter: drop-shadow(0 22px 28px rgba(31, 42, 82, .18))
}

.final-step {
    --step-color: var(--primary);
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0;
    width: 235px;
    background: #fff;
    border: 1px solid rgba(55, 108, 230, .12);
    border-radius: 14px;
    padding: 13px 18px;
    font: 800 .78rem var(--heading);
    color: var(--step-color);
    box-shadow: 0 13px 35px rgba(16, 22, 43, .12);
    animation: finalStepFloat 4.8s ease-in-out infinite
}

.final-step b {
    display: none
}

.final-step-1 {
    left: -18px;
    top: 78px;
    animation-delay: 0s
}

.final-step-2 {
    left: 26px;
    top: 134px;
    animation-delay: -.55s
}

.final-step-3 {
    left: 70px;
    top: 190px;
    animation-delay: -1.1s
}

.final-step-4 {
    --step-color: var(--accent);
    left: 22px;
    top: 246px;
    animation-delay: -1.65s
}

@keyframes finalStepFloat {
    0%, 100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -7px
    }
}

.reviews-section {
    background: var(--soft);
    position: relative;
    overflow: hidden;
    padding: 85px 0
}

.reviews-stats-strip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 26px;
    padding: 16px 36px;
    background: #ffffff;
    border: 1px solid rgba(55, 108, 230, 0.16);
    border-radius: 999px;
    box-shadow: 0 12px 35px rgba(27, 48, 94, 0.08), 0 2px 6px rgba(27, 48, 94, 0.03);
}

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
}

.stat-rating-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.stat-stars {
    color: #f59e0b;
    font-size: 1.05rem;
    letter-spacing: 2px;
    white-space: nowrap;
    display: inline-block;
    line-height: 1;
}

.stat-number {
    font-family: var(--heading);
    font-weight: 800;
    font-size: 1.28rem;
    line-height: 1.1;
    color: var(--dark);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.stat-number.text-primary {
    color: var(--primary);
}

.stat-number.text-green {
    color: #059669;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 38px;
    background: linear-gradient(180deg, rgba(229, 234, 242, 0.2), rgba(55, 108, 230, 0.25), rgba(229, 234, 242, 0.2));
}

.reviews-ticker-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
    padding: 24px 0
}

.reviews-ticker-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: tickerScroll 65s linear infinite;
    will-change: transform
}

.reviews-ticker-track:hover {
    animation-play-state: paused
}

.review-card {
    flex: 0 0 310px;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(27, 48, 94, .06);
    transition: transform .28s cubic-bezier(.2, 0, .2, 1), box-shadow .28s ease, border-color .28s ease;
    cursor: pointer;
    position: relative
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(27, 48, 94, .13);
    border-color: rgba(55, 108, 230, .32)
}

.review-img-wrap {
    position: relative;
    overflow: hidden;
    background: #f0f3f9;
    width: 100%;
    height: 335px;
    display: flex;
    align-items: center;
    justify-content: center
}

.review-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.review-zoom-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(4px);
    transition: all .25s ease
}

.review-zoom-overlay span {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(6px);
    color: #1e293b;
    font-family: var(--heading);
    font-weight: 700;
    font-size: .73rem;
    padding: 6px 12px;
    border-radius: 99px;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .1)
}

.review-card:hover .review-zoom-overlay {
    opacity: 1;
    transform: translateY(0)
}

.ticker-hint {
    text-align: center;
    color: var(--muted);
    font-size: .82rem;
    margin-top: 16px
}

.upsell-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease
}

.upsell-modal.show {
    opacity: 1;
    pointer-events: auto
}

.upsell-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 17, 39, .72);
    backdrop-filter: blur(10px)
}

.upsell-modal-card {
    position: relative;
    z-index: 1;
    width: min(100%, 450px);
    max-height: calc(100vh - 32px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 38px 36px 30px;
    border: 2px dashed rgba(55, 108, 230, .38);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 35px 100px rgba(10, 17, 39, .28);
    transform: translateY(16px) scale(.98);
    transition: transform .35s cubic-bezier(.2, .8, .2, 1)
}

.upsell-modal.show .upsell-modal-card {
    transform: none
}

.upsell-modal-card:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    left: -17px;
    top: calc(50% - 15px);
    border-radius: 50%;
    background: #151d37;
    pointer-events: none
}

.upsell-modal-card:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    right: -17px;
    top: calc(50% - 15px);
    border-radius: 50%;
    background: #151d37;
    pointer-events: none
}

.upsell-modal-close {
    position: absolute;
    z-index: 2;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--muted);
    cursor: pointer
}

.upsell-kicker {
    display: block;
    color: var(--primary);
    font-family: var(--heading);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase
}

.coupon-mark {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--primary), var(--secondary));
    box-shadow: 0 14px 30px rgba(55,108,230,.22)
}

.coupon-mark img { width: 42px; height: 42px; object-fit: contain }

.upsell-modal-card h2 {
    max-width: 360px;
    margin: 10px 0 12px;
    font-size: clamp(1.8rem, 4vw, 2.55rem);
    line-height: 1.08
}

.upsell-modal-card h2 span { color: var(--primary) }

.upsell-lead {
    color: var(--muted);
    line-height: 1.65
}

.upsell-lead strong { color: var(--primary); font-family: var(--heading); font-size: 1.15rem }
.upsell-lead s { color: #98a2b3 }

.coupon-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 24px 0 18px;
    padding: 13px 16px;
    border: 1px dashed rgba(55,108,230,.38);
    border-radius: 13px;
    background: rgba(55,108,230,.055);
    color: var(--primary);
    font-family: var(--heading);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em
}

.coupon-code b { color: var(--muted); font-size: .66rem }

.upsell-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1.15fr;
    align-items: center;
    gap: 12px;
    margin: 24px 0 18px
}

.upsell-plan {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--soft)
}

.upsell-plan small { color: var(--muted); font-size: .68rem; font-weight: 700; text-transform: uppercase }
.upsell-plan strong { margin: 3px 0 8px; font-family: var(--heading); font-size: .9rem }
.upsell-plan span { font-family: var(--heading); font-size: 1.25rem; font-weight: 800 }
.upsell-plan-upgrade { border-color: rgba(55, 108, 230, .3); background: rgba(55, 108, 230, .08) }
.upsell-plan-upgrade span { color: var(--primary) }
.upsell-plan-upgrade s { margin-right: 5px; color: #98a2b3; font-size: .78rem; font-weight: 600 }
.upsell-arrow { color: var(--primary); font-family: var(--heading); font-weight: 800 }

.upsell-benefits {
    display: grid;
    gap: 9px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none
}

.upsell-benefits li {
    position: relative;
    padding-left: 25px;
    color: #344054;
    font-size: .88rem
}

.upsell-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900
}

.upsell-accept,
.upsell-decline {
    width: 100%;
    border: 0;
    font-family: var(--heading);
    font-weight: 800;
    cursor: pointer
}

.upsell-accept {
    min-height: 56px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 13px 30px rgba(246, 99, 27, .25);
    transition: transform .2s ease, box-shadow .2s ease
}

.upsell-accept:hover { transform: translateY(-2px); box-shadow: 0 17px 36px rgba(246, 99, 27, .32) }

.upsell-decline {
    padding: 14px;
    background: transparent;
    color: var(--muted);
    font-size: .8rem
}

.upsell-decline:hover { color: var(--dark) }

.upsell-footnote {
    color: #7c879a;
    font-size: .72rem;
    text-align: center
}

/* Os ícones apoiam a leitura sem parecerem botões de aplicativo. */
.confidence-svg.blue-svg,
.confidence-svg.green-svg,
.confidence-svg.orange-svg,
.confidence-svg.purple-svg { color: var(--primary) }

.bonus-icon-squircle {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: #7ea2f4 !important
}

.bonus-icon-squircle .pika-svg { width: 25px; height: 25px }

.review-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease
}

.review-modal.show {
    opacity: 1;
    pointer-events: auto
}

.review-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, .82);
    backdrop-filter: blur(8px)
}

.review-modal-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
    animation: modalZoom .3s cubic-bezier(.16, 1, .3, 1)
}

.review-modal-content img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 14px;
    object-fit: contain
}

.review-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
    font-size: 1.2rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: .2s
}

.review-modal-close:hover {
    background: var(--accent);
    transform: scale(1.1)
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes modalZoom {
    from {
        transform: scale(.92);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: #111b3d;
    color: #fff;
    padding: 44px 0 22px
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr .55fr .7fr;
    gap: clamp(40px, 7vw, 90px)
}

.footer-brand {
    color: #fff;
}

.footer-brand strong {
    color: #fff;
}

.footer-brand .brand-mark {
    background: none;
    box-shadow: none;
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 0;
}

.footer-brand .brand-mark img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.6;
    transition: opacity .2s ease, transform .2s ease;
}

.footer-social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: #fff;
}

.footer-social-link svg {
    display: block;
    width: 20px;
    height: 20px;
}

.footer-grid>div,
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

.footer-intro h2 {
    max-width: 540px;
    margin: 12px 0 4px;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -.045em
}

.footer-intro > p { max-width: 510px; line-height: 1.7 }

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 16px;
    padding: 12px 18px !important;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff !important;
    font-family: var(--heading);
    font-weight: 800;
    transition: background .25s ease, transform .25s ease
}

.footer-cta:hover { background: rgba(255,255,255,.14); transform: translateY(-2px) }

.footer-links strong {
    color: #fff;
    font-size: .76rem;
    letter-spacing: .1em;
    text-transform: uppercase
}

.footer-links a { transition: color .2s ease, transform .2s ease }
.footer-links a:hover { color: #fff; transform: translateX(4px) }

.footer-wordmark {
    position: relative;
    z-index: 1;
    margin-top: 58px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.14);
    font-family: var(--heading);
    font-size: clamp(4rem, 12vw, 9.5rem);
    font-weight: 800;
    letter-spacing: -.075em;
    line-height: .78;
    white-space: nowrap;
    user-select: none
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
    color: #aeb8d0;
    font-size: .86rem
}

.footer-grid strong {
    font-family: var(--heading);
    margin-bottom: 6px
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 30px;
    padding-top: 18px;
    color: #8994ae;
    font-size: .75rem
}

.footer-bottom p:last-child {
    text-align: right
}

.mobile-offer {
    display: none
}

.whatsapp-widget {
    position: fixed;
    z-index: 60;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px
}

.whatsapp-button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border: 4px solid #fff;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 14px 34px rgba(16,22,43,.22);
    transition: transform .25s ease, box-shadow .25s ease;
    animation: whatsappAttention 2.8s ease-in-out infinite
}

.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 42px rgba(55,108,230,.3)
}

@keyframes whatsappAttention {
    0%, 72%, 100% { box-shadow: 0 14px 34px rgba(16,22,43,.22), 0 0 0 0 rgba(55,108,230,.22) }
    84% { box-shadow: 0 14px 34px rgba(16,22,43,.22), 0 0 0 12px rgba(55,108,230,0) }
}

.whatsapp-button img { width: 36px; height: 36px; object-fit: contain }

.whatsapp-nudge {
    position: absolute;
    right: 0;
    bottom: 76px;
    width: min(245px, calc(100vw - 32px));
    min-height: 70px;
    display: block;
    padding: 15px 38px 15px 17px;
    border: 1px solid rgba(55,108,230,.16);
    border-radius: 18px 18px 4px 18px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(16,22,43,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(.96);
    transform-origin: bottom right;
    transition: opacity .25s ease, transform .35s cubic-bezier(.16,1,.3,1), visibility .25s
}

.whatsapp-nudge:after {
    content: '';
    position: absolute;
    right: 18px;
    bottom: -9px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-right: 1px solid rgba(55,108,230,.16);
    border-bottom: 1px solid rgba(55,108,230,.16);
    transform: rotate(45deg)
}

.whatsapp-widget.show-nudge .whatsapp-nudge {
    opacity: 1;
    visibility: visible;
    transform: none
}

.whatsapp-nudge-copy {
    display: flex;
    flex-direction: column;
    gap: 4px
}
.whatsapp-nudge strong { font: 800 .88rem var(--heading); color: var(--dark) }
.whatsapp-nudge span { color: var(--muted); font-size: .76rem; line-height: 1.45 }

.whatsapp-nudge-close {
    position: absolute;
    top: 7px;
    right: 9px;
    border: 0;
    background: transparent;
    color: #98a2b3;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer
}

/* Direção de arte: ícones editoriais, com uma paleta única e menos aparência de app. */
.step-icon-purple,
.step-icon-green,
.preview-sq-purple,
.preview-sq-amber,
.bonus-sq-purple,
.bonus-sq-green,
.bonus-sq-amber,
.bonus-sq-cyan {
    background: rgba(55, 108, 230, .08);
    color: var(--primary);
    border-color: rgba(55, 108, 230, .15);
    box-shadow: none
}

.step-icon-box,
.preview-icon-squircle,
.bonus-icon-squircle {
    transition: transform .3s cubic-bezier(.2, .75, .25, 1), background .3s ease
}

.step-card:hover .step-icon-box,
.preview-item:hover .preview-icon-squircle,
.bonus-card:hover .bonus-icon-squircle {
    transform: translateY(-3px)
}

.reveal {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(26px) scale(.985);
    transition: opacity .7s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms), transform .75s cubic-bezier(.2,.75,.2,1) var(--reveal-delay, 0ms), filter .6s ease var(--reveal-delay, 0ms)
}

.reveal.visible {
    opacity: 1;
    filter: blur(0);
    transform: none
}

.highlight-blue {
    color: var(--primary)
}

@media(max-width:900px) {
    .desktop-nav {
        display: none
    }

    .hero {
        min-height: auto;
        padding-top: 55px
    }

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

    .hero-grid {
        gap: 25px
    }

    .hero-copy {
        text-align: center;
        margin: auto
    }

    .hero-copy h1:after {
        margin-inline: auto
    }

    .hero-actions {
        justify-content: center
    }

    .trust-row {
        justify-content: center
    }

    .hero-media {
        min-height: 510px
    }

    .hero-orbit {
        width: 490px;
        height: 490px
    }

    .hero-orbit img {
        height: 575px;
        margin-bottom: -35px
    }

    .method-grid,
    .preview-grid {
        gap: 48px
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .confidence-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .confidence-grid div:nth-child(2) {
        border-right: 0
    }

    .confidence-grid div:nth-child(-n+2) {
        border-bottom: 1px solid var(--border)
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .reviews-stats-strip {
        gap: 20px;
        padding: 14px 24px;
    }
}

@media(max-width:700px) {
    .top-banner {
        padding: 7px 0;
    }

    .top-banner-link {
        font-size: 0.77rem;
        gap: 5px;
    }

    .timer-pill {
        font-size: 0.77rem;
        padding: 1px 6px;
    }

    .container {
        width: min(100% - 32px, var(--container))
    }

    .section {
        padding: 68px 0
    }

    .site-header {
        height: 66px
    }

    .site-header .btn {
        display: none
    }

    .brand-mark {
        width: 34px;
        height: 34px
    }

    .hero {
        padding: 45px 0 26px
    }

    .hero-copy h1 {
        font-size: 2.65rem
    }

    .hero-lead {
        font-size: 1.04rem
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px
    }

    .hero-actions .btn {
        width: 100%
    }

    .trust-row {
        font-size: .75rem
    }

    .hero-media {
        min-height: 390px
    }

    .hero-orbit {
        width: 350px;
        height: 350px
    }

    .hero-orbit img {
        height: 410px;
        margin-bottom: -25px
    }

    .float-card {
        padding: 10px 12px;
        font-size: .7rem
    }

    .float-card-top {
        right: -5px;
        top: 45px
    }

    .float-card-bottom {
        left: -5px;
        bottom: 20px
    }

    .score-pill {
        width: 48px;
        height: 36px
    }

    .confidence-grid {
        grid-template-columns: 1fr 1fr
    }

    .confidence-grid div {
        padding: 14px 10px
    }

    .confidence-grid strong {
        font-size: .8rem
    }

    .confidence-grid span {
        font-size: .68rem
    }

    .university-strip { padding: 20px 0 8px }

    .university-showcase {
        min-height: 0;
        grid-template-columns: 72px 1fr;
        gap: 18px;
        padding: 24px 20px;
        border-radius: 24px
    }

    .university-brand-stack {
        width: 66px;
        height: 66px;
        margin-left: 0
    }

    .brand-stack-card { border-radius: 18px }
    .brand-stack-front img { width: 39px; height: 39px }
    .university-copy h2 { font-size: 1.15rem }

    .university-list {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 4px
    }

    .university-group { gap: 28px; padding-right: 28px }
    .university-group span { font-size: 1.8rem }

    .section-heading {
        margin-bottom: 34px
    }

    .section-heading p {
        font-size: 1rem
    }

    .pain-grid,
    .kit-grid,
    .pricing-grid,
    .team-grid,
    .bonus-grid {
        grid-template-columns: 1fr
    }

    .pain-card {
        padding: 24px
    }

    .pain-icon {
        margin-bottom: 34px
    }

    .method-intro .btn {
        width: 100%
    }

    .step-card {
        padding: 18px;
        gap: 14px
    }

    .kit-card {
        padding: 24px
    }

    .kit-card-wide {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 25px
    }

    .week-map {
        grid-template-columns: 1fr
    }

    .preview-grid {
        gap: 35px
    }

    .team-photo-wrap {
        height: 280px;
    }

    .team-card {
        max-width: 420px;
        margin-inline: auto;
        width: 100%;
    }

    .bonus-grid {
        gap: 12px
    }

    .price-card-standard {
        padding: 8px;
    }

    .price-card-standard .price-head {
        padding: 24px 20px 22px;
        border-radius: 20px
    }

    .price-card-standard .btn {
        margin-inline: 12px
    }

    .price-card-standard .secure-badges-line {
        padding-inline: 12px
    }

    .card-hero-header {
        padding: 28px 22px 24px;
        border-radius: 19px;
    }

    .card-hero-body {
        padding: 24px 20px 28px;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-price-main strong {
        font-size: 3.5rem;
    }

    .guarantee-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 22px
    }

    .guarantee-seal {
        margin: auto
    }

    .final-cta {
        padding-bottom: 70px
    }

    .final-card {
        grid-template-columns: 1fr;
        padding: 36px 24px 0;
        gap: 22px;
        overflow: hidden
    }

    .final-card .btn {
        width: 100%
    }

    .final-art {
        position: relative;
        z-index: auto;
        top: auto;
        right: auto;
        bottom: auto;
        width: auto;
        min-height: 330px;
        margin-inline: -12px;
        overflow: hidden
    }

    .final-art-scene {
        inset: 0;
        clip-path: none;
        overflow: visible
    }

    .final-orbit {
        width: 245px;
        height: 245px;
        left: 50%;
        right: auto;
        bottom: 34px;
        transform: translateX(-50%);
        translate: none
    }

    .final-student {
        width: calc(100% - 14px);
        max-width: 410px;
        left: 50%;
        right: auto;
        bottom: 0;
        transform: translateX(-50%);
        translate: none;
        filter: drop-shadow(0 18px 24px rgba(31, 42, 82, .14))
    }

    .final-step {
        width: auto;
        min-width: 150px;
        padding: 10px 14px;
        border-radius: 999px;
        font-size: .66rem;
        box-shadow: 0 10px 26px rgba(16, 22, 43, .1)
    }

    .final-step-1 {
        left: 0;
        right: auto;
        top: 56px;
        min-width: 158px
    }

    .final-step-2 {
        left: auto;
        right: 0;
        top: 104px;
        min-width: 166px
    }

    .final-step-3 {
        left: 14px;
        right: auto;
        top: 152px;
        min-width: 154px;
        bottom: auto
    }

    .final-step-4 {
        left: auto;
        right: 8px;
        top: 200px;
        min-width: 146px;
        bottom: auto
    }

    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .footer-bottom p:last-child {
        text-align: left
    }

    .footer-wordmark {
        margin-top: 44px;
        font-size: 18vw
    }

    .whatsapp-widget {
        right: 14px;
        bottom: 94px;
        width: 54px;
        height: 54px
    }

    .whatsapp-button {
        width: 54px;
        height: 54px
    }

    .mobile-offer {
        position: fixed;
        z-index: 45;
        left: 12px;
        right: 12px;
        bottom: 12px;
        display: none;
        align-items: center;
        gap: 12px;
        padding: 10px;
        border: 1px solid rgba(55, 108, 230, .14);
        border-radius: 22px;
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        color: var(--dark);
        box-shadow: 0 18px 45px rgba(16, 22, 43, .16), 0 3px 10px rgba(55, 108, 230, .08)
    }

    .mobile-offer:before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        pointer-events: none;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85)
    }

    .mobile-offer.show {
        display: flex
    }

    .mobile-offer-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
        min-width: 0
    }

    .mobile-offer-logo {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        display: grid;
        place-items: center;
        border-radius: 16px;
        background: linear-gradient(145deg, var(--primary), var(--secondary));
        box-shadow: 0 10px 24px rgba(55, 108, 230, .28)
    }

    .mobile-offer-logo img {
        width: 25px;
        height: 25px;
        object-fit: contain
    }

    .mobile-offer-copy {
        display: flex;
        flex: 1;
        flex-direction: column;
        min-width: 0;
        gap: 1px
    }

    .mobile-offer small {
        color: var(--primary);
        font-family: var(--heading);
        font-size: .61rem;
        font-weight: 800;
        letter-spacing: .08em;
        line-height: 1.2;
        text-transform: uppercase
    }

    .mobile-offer strong {
        font-family: var(--heading);
        font-size: .82rem;
        line-height: 1.22;
        letter-spacing: -.02em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .mobile-offer-copy > span {
        color: var(--muted);
        font-size: .65rem;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .mobile-offer .btn {
        min-height: 48px;
        flex: 0 0 auto;
        padding: 0 16px;
        gap: 7px;
        border-radius: 16px;
        font-size: .76rem;
        box-shadow: 0 9px 22px rgba(246, 99, 27, .22)
    }

    .upsell-modal { padding: 10px }

    .upsell-modal-card {
        padding: 28px 24px 20px;
        border-radius: 24px
    }

    .reviews-stats-strip {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 16px 10px;
        border-radius: 20px;
        width: 100%;
        max-width: 440px;
        margin-inline: auto;
    }

    .reviews-stats-strip .stat-divider {
        display: none;
    }

    .stat-rating-header {
        flex-direction: column;
        gap: 2px;
    }

    .stat-stars {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .stat-number {
        font-size: 1.05rem;
    }

    .stat-label {
        font-size: 0.68rem;
        white-space: normal;
        line-height: 1.2;
    }

    .reviews-ticker-wrap {
        overflow: hidden;
        position: relative;
        padding: 12px 0 20px;
        margin-top: 20px
    }

    .reviews-ticker-track {
        display: flex;
        gap: 14px;
        width: max-content;
        animation: tickerScroll 50s linear infinite;
        will-change: transform
    }

    .reviews-ticker-track:active,
    .reviews-ticker-track:hover {
        animation-play-state: paused
    }

    .review-card {
        flex: 0 0 270px
    }

    .review-img-wrap {
        height: 290px
    }

    .kirvano-trust-box {
        padding: 20px 16px;
        margin-top: 25px;
    }

    .kirvano-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .kirvano-icon-badge {
        margin-inline: auto;
    }

    .kirvano-methods {
        justify-content: center;
    }

    .pay-pill {
        font-size: 0.74rem;
        padding: 5px 10px;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .btn {
        transition: none
    }

    .reviews-ticker-track {
        animation: none
    }

    .university-track {
        animation: none
    }

    .card-hero-header:before {
        animation: none
    }

    .hero-particles i {
        animation: none
    }

    .whatsapp-button {
        animation: none
    }

    .final-step {
        animation: none;
        opacity: 1
    }

    .top-banner::before {
        animation: none
    }

    .top-banner-pulse {
        animation: none
    }
}
