/* HERO */
.hero {
    padding: 128px 56px 0;
    display: flex;
    flex-direction: column;
    align-items: center
}

.hero-text {
    text-align: center;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeUp .6s ease both
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 61, 255, .09);
    border: 1px solid rgba(26, 61, 255, .18);
    border-radius: 50px;
    padding: 5px 16px;
    font-family: var(--ff);
    font-size: .72rem;
    color: var(--blue);
    margin-bottom: 22px;
    letter-spacing: .4px
}

.pulse {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
    animation: blink 2s infinite
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .35;
        transform: scale(1.5)
    }
}

.hero-title {
    font-size: clamp(3rem, 5.5vw, 4.8rem);
    letter-spacing: -2.5px;
    animation: fadeUp .65s .08s ease both
}

.hero-sub {
    margin-top: 20px;
    max-width: 520px;
    animation: fadeUp .65s .16s ease both
}

.hero-cta {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp .65s .24s ease both
}

.btn-sec {
    display: inline-block;
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(0, 0, 0, .15);
    border-radius: 50px;
    padding: 14px 28px;
    font-family: var(--fs);
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    text-decoration: none
}

.btn-sec:hover {
    border-color: var(--blue);
    background: rgba(26, 61, 255, .03)
}

.hero-checks {
    margin-top: 24px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp .65s .32s ease both
}

.hero-checks span {
    font-size: .82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px
}

.hero-checks span::before {
    content: '✓';
    background: var(--blue);
    color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .58rem;
    font-weight: 800;
    flex-shrink: 0
}

.hero-screen {
    margin-top: 52px;
    width: 100%;
    max-width: 1060px;
    animation: fadeUp .8s .3s ease both;
    position: relative
}

.browser-chrome {
    background: #1c1f2e;
    border-radius: 14px 14px 0 0;
    padding: 14px 18px 0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .06) inset, 0 -2px 48px rgba(26, 61, 255, .12), 0 32px 80px rgba(0, 0, 0, .28)
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px
}

.bdot {
    width: 11px;
    height: 11px;
    border-radius: 50%
}

.bdot.r {
    background: #ff5f57
}

.bdot.y {
    background: #febc2e
}

.bdot.g {
    background: #28c840
}

.browser-url {
    flex: 1;
    background: rgba(255, 255, 255, .07);
    border-radius: 7px;
    height: 24px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: .67rem;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .2px
}

.browser-chrome img {
    width: 100%;
    display: block;
    border-radius: 6px 6px 0 0
}

.screen-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none
}

/* HONEST BAR */
.honest-bar {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap
}

.honest-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    font-weight: 500;
    color: var(--text-muted)
}

.pip {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0
}

/* SECTIONS */
.section {
    padding: 110px 56px
}

.section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto
}

.section-tag {
    margin-bottom: 14px
}

.section-title {
    font-family: var(--ff);
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1
}

.section-sub {
    margin-top: 12px;
    font-size: .98rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.72
}

/* FEATURES */
.features-layout {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.feat {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border)
}

.feat:last-child {
    border-bottom: none
}

.feat-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center
}

.feat-check svg {
    display: block
}

.feat-name {
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: 3px;
    color: var(--text)
}

.feat-desc {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.65
}

.features-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

.feat-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(26, 61, 255, .08) 0%, transparent 70%);
    pointer-events: none
}

.feat-phone {
    width: 260px;
    border-radius: 40px;
    border: 7px solid #1a1a2e;
    box-shadow: 0 36px 80px rgba(0, 0, 0, .15);
    overflow: hidden;
    position: relative
}

.feat-phone::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    z-index: 2
}

.feat-phone img {
    width: 100%;
    display: block
}

/* HOW IT WORKS */
.how-section {
    background: var(--bg-dark);
    color: #fff
}

.how-section .section-tag {
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .5)
}

.how-section .section-sub {
    color: rgba(255, 255, 255, .42)
}

.steps-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px
}

.step {
    position: relative
}

.step-num {
    font-family: var(--ff);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .05);
    line-height: 1;
    margin-bottom: -18px
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(26, 61, 255, .42);
    border: 1px solid rgba(26, 61, 255, .32);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px
}

.step-title {
    font-family: var(--ff);
    font-weight: 900;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #fff
}

.step-desc {
    font-size: .85rem;
    color: rgba(255, 255, 255, .42);
    line-height: 1.68
}

.step-arr {
    position: absolute;
    top: 94px;
    right: -38px;
    font-size: 1.4rem;
    opacity: .16
}

/* REVIEW */
.review-section {
    background: #fff
}

.review-wrap {
    max-width: 660px;
    margin: 56px auto 0
}

.review-card {
    background: linear-gradient(135deg, #f0f4ff, #fafafa);
    border: 1.5px solid rgba(26, 61, 255, .1);
    border-radius: 24px;
    padding: 48px 52px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -16px;
    left: 24px;
    font-size: 10rem;
    color: rgba(26, 61, 255, .05);
    font-family: Georgia, serif;
    line-height: 1
}

.rev-stars {
    color: #fbbf24;
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin-bottom: 20px
}

.rev-quote {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 26px
}

.rev-person {
    display: inline-flex;
    align-items: center;
    gap: 12px
}

.rev-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .82rem;
    color: #fff
}

.rev-name {
    font-weight: 700;
    font-size: .88rem;
    text-align: left
}

.rev-place {
    font-size: .78rem;
    color: var(--text-muted)
}

.rev-note {
    margin-top: 24px;
    font-size: .76rem;
    color: var(--text-muted);
    padding-top: 18px;
    border-top: 1px solid var(--border)
}

/* PRICING */
.pricing-section {
    background: var(--bg)
}

.pricing-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px;
    margin-top: 56px;
    max-width: 800px
}

.price-card {
    border-radius: var(--radius);
    padding: 40px 36px;
    border: 1.5px solid var(--border);
    background: #fff;
    transition: transform .25s, box-shadow .25s;
    position: relative
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .07)
}

.price-card.early {
    border-color: rgba(0, 0, 0, .1)
}

.early-ribbon {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(90deg, #0b0f1a, #1a3dff);
    border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.early-ribbon span {
    font-family: var(--ff);
    font-size: .68rem;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .5px;
    text-transform: uppercase
}

.early-ribbon .timer {
    font-size: .68rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 500
}

.early-body {
    margin-top: 40px
}

.price-card.feat-p {
    background: var(--blue);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(26, 61, 255, .3)
}

.price-badge-label {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 13px;
    border-radius: 50px;
    white-space: nowrap
}

.price-tier {
    font-family: var(--ff);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .5;
    margin-bottom: 6px
}

.price-amt {
    font-family: var(--ff);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1
}

.price-amt small {
    font-size: .88rem;
    font-weight: 400;
    opacity: .5
}

.price-desc {
    font-size: .83rem;
    opacity: .55;
    margin: 8px 0 6px;
    line-height: 1.55
}

.price-expiry {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 165, 0, .1);
    border: 1px solid rgba(255, 165, 0, .25);
    border-radius: 50px;
    padding: 3px 10px;
    font-size: .7rem;
    font-weight: 600;
    color: #b45309;
    margin-bottom: 20px
}

.price-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px
}

.price-feats li {
    font-size: .84rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45
}

.pcheck {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

.feat-p .pcheck {
    background: rgba(255, 255, 255, .25)
}

.pcheck svg {
    display: block
}

.price-feats li.locked {
    opacity: .35
}

.plock {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .7rem;
    margin-top: 1px
}

.price-note {
    font-size: .72rem;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.5;
    font-style: italic
}

.btn-price {
    width: 100%;
    padding: 13px;
    border-radius: 50px;
    font-family: var(--fs);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text);
    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box
}

.btn-price:hover {
    border-color: var(--blue);
    color: var(--blue)
}

.feat-p .btn-price {
    background: #fff;
    color: var(--blue);
    border-color: transparent
}

.btn-price.btn-dark {
    background: var(--bg-dark);
    color: #fff;
    border-color: transparent
}

.btn-price.btn-dark:hover {
    background: #1a2040
}

/* FAQ */
.faq-section {
    background: #fff
}

.faq-grid {
    max-width: 700px;
    margin: 56px auto 0
}

/* CTA overrides */
.cta-title {
    font-size: clamp(2rem, 3.8vw, 3.4rem)
}

.cta-sub {
    margin: 0 auto 34px
}

.cta-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    position: relative;
    flex-wrap: wrap
}

.cta-fine {
    margin-top: 18px
}

@media (max-width: 1024px) {
    .hero {
        padding: 96px 22px 0
    }

    .section {
        padding: 72px 22px
    }

    .honest-bar {
        padding: 16px 22px;
        gap: 18px
    }

    .features-layout {
        grid-template-columns:1fr;
        gap: 44px
    }

    .steps-grid, .pricing-grid {
        grid-template-columns:1fr
    }

    .step-arr {
        display: none
    }

    .review-card {
        padding: 32px 24px
    }
}
