* {
    box-sizing: border-box;
}

:root {
    --bg: #f7f9fc;
    --surface: #ffffff;
    --text: #162033;
    --muted: #667085;
    --primary: #2457e6;
    --primary-dark: #173cad;
    --border: #e4e8f0;
    --soft: #eef3ff;
    --success: #159455;
    --warning: #b66a00;
    --shadow: 0 20px 50px rgba(20, 35, 70, .12);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

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

.container {
    width: min(1160px, calc(100% - 36px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(228, 232, 240, .85);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 800;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--primary), #6b8cff);
    box-shadow: 0 8px 20px rgba(36, 87, 230, .25);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #3c465b;
    font-weight: 600;
    font-size: .96rem;
}

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

.nav-login {
    margin-left: 10px;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.6rem;
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 800;
    transition: .2s ease;
}

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

.btn-small {
    min-height: 42px;
    padding: 0 17px;
    color: #fff !important;
    background: var(--primary);
}

.btn-primary {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 12px 28px rgba(36, 87, 230, .24);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: #fff;
    border: 1px solid var(--border);
}

.hero {
    padding: 92px 0 76px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 15%, rgba(75, 118, 255, .18), transparent 28%),
        linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.hero h1 span {
    color: var(--primary);
}

.hero-copy > p {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
    color: #44506a;
    font-size: .94rem;
    font-weight: 700;
}

.dashboard-card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 28px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow);
    transform: rotate(1deg);
}

.window-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 4px 16px;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 700;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d5dae4;
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mini-stat {
    padding: 18px 12px;
    border-radius: 18px;
    background: #f6f8fc;
}

.mini-stat strong,
.mini-stat span {
    display: block;
}

.mini-stat strong {
    font-size: 1.55rem;
}

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

.order-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.order-row {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 17px;
}

.order-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--soft);
    font-size: 1.35rem;
}

.order-row strong,
.order-row small {
    display: block;
}

.order-row small {
    color: var(--muted);
}

.status {
    padding: 6px 9px;
    border-radius: 999px;
    background: #e8f8ef;
    color: var(--success);
    font-size: .72rem;
    font-weight: 900;
}

.status.pending {
    background: #fff3de;
    color: var(--warning);
}

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

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

.trust-grid div {
    text-align: center;
    border-right: 1px solid var(--border);
}

.trust-grid div:last-child {
    border-right: 0;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    font-size: 1.08rem;
}

.trust-grid span {
    color: var(--muted);
    font-size: .85rem;
}

.section {
    padding: 92px 0;
}

.section-soft {
    background: #eef3fb;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.section-heading p {
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 1.05rem;
}

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

.feature-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 8px 25px rgba(22, 32, 51, .04);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--soft);
    font-size: 1.5rem;
}

.feature-card h3 {
    margin: 18px 0 8px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
}

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

.step {
    position: relative;
    padding: 30px;
    border-radius: 24px;
    background: white;
}

.step > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: white;
    background: var(--primary);
    font-size: 1.15rem;
    font-weight: 900;
}

.step h3 {
    margin: 20px 0 8px;
}

.step p {
    margin: 0;
    color: var(--muted);
}

.price-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 35px;
    max-width: 900px;
    margin: 0 auto;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.price-badge {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--primary);
    font-size: .75rem;
    font-weight: 900;
}

.price-card h3 {
    margin: 18px 0 4px;
    font-size: 2rem;
}

.price-card p {
    margin: 0;
    color: var(--muted);
}

.price-box {
    min-width: 260px;
    text-align: center;
}

.price-box strong {
    display: block;
    color: var(--primary);
    font-size: 4rem;
    line-height: 1;
}

.price-box span {
    display: block;
    margin: 7px 0 18px;
    color: var(--muted);
    font-weight: 700;
}

.cta-section {
    padding: 20px 0 92px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px;
    border-radius: 28px;
    color: white;
    background: linear-gradient(135deg, #1639a4, #2f66f2);
    box-shadow: var(--shadow);
}

.eyebrow.light {
    color: #cdd9ff;
}

.cta-box h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.cta-box p {
    margin: 14px 0 0;
    color: #d9e2ff;
}

.btn-white {
    flex: 0 0 auto;
    background: white;
    color: var(--primary);
}

.footer {
    padding: 50px 0 24px;
    color: #c6d0e4;
    background: #111a2b;
}

.footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand {
    color: white;
}

.footer p {
    color: #8f9bb2;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    margin-top: 35px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #78859c;
    font-size: .85rem;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 18px;
        right: 18px;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: white;
        box-shadow: var(--shadow);
    }

    .menu-open .main-nav {
        display: flex;
    }

    .main-nav a {
        padding: 10px;
    }

    .nav-login {
        margin-left: 0;
    }

    .hero {
        padding-top: 60px;
    }

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

    .dashboard-card {
        transform: none;
    }

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

    .steps {
        grid-template-columns: 1fr;
    }

    .price-card {
        grid-template-columns: 1fr;
    }

    .price-box {
        min-width: 0;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, 1160px);
    }

    .nav {
        min-height: 68px;
    }

    .main-nav {
        top: 68px;
        left: 12px;
        right: 12px;
    }

    .hero {
        padding: 48px 0 46px;
    }

    .hero h1 {
        font-size: 2.55rem;
    }

    .hero-copy > p {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
    }

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

    .hero-points {
        display: grid;
        gap: 7px;
    }

    .mini-stats {
        grid-template-columns: 1fr;
    }

    .order-row {
        grid-template-columns: 42px 1fr;
    }

    .status {
        grid-column: 2;
        justify-self: start;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .trust-grid div {
        padding: 14px 6px;
        border-bottom: 1px solid var(--border);
    }

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

    .trust-grid div:nth-child(3),
    .trust-grid div:nth-child(4) {
        border-bottom: 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 68px 0;
    }

    .price-card,
    .cta-box {
        padding: 26px;
    }

    .cta-box,
    .footer-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-white {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}
