:root {
    --blue: #0d6efd;
    --blue-2: #0756d6;
    --soft: #eef6ff;
    --dark: #07142e;
    --muted: #65748b;
    --card: #ffffff;
    --border: #dce8f7
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: var(--dark);
    overflow-x: hidden
}

.fw-black {
    font-weight: 900
}

.bg-effects {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 20% 10%, #e7f2ff 0, transparent 28%), radial-gradient(circle at 80% 15%, #d9ebff 0, transparent 24%), #fff
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: .75
}

.orb-1 {
    width: 260px;
    height: 260px;
    background: #cfe7ff;
    left: -80px;
    top: 120px;
    animation: float 8s ease-in-out infinite
}

.orb-2 {
    width: 320px;
    height: 320px;
    background: #e8f4ff;
    right: -120px;
    top: 460px;
    animation: float 10s ease-in-out infinite reverse
}

.grid-glow {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#0d6efd10 1px, transparent 1px), linear-gradient(90deg, #0d6efd10 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, transparent, #000 15%, transparent 90%)
}

@keyframes float {
    50% {
        transform: translateY(-24px) translateX(14px)
    }
}

.site-header {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border)
}

.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain
}

.brand-title {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--blue)
}

.search-bar {
    width: min(520px, 44vw);
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 0 18px;
    background: #fff;
    box-shadow: 0 15px 35px #0d6efd12
}

.search-bar input {
    border: 0;
    outline: 0;
    width: 100%;
    padding-left: 10px;
    color: var(--dark)
}

.menu-button {
    width: 48px;
    height: 48px;
    border: 0;
    background: var(--blue);
    border-radius: 16px;
    display: grid;
    place-content: center;
    gap: 5px;
    box-shadow: 0 15px 35px #0d6efd35
}

.menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 99px
}

.menu-link {
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    padding: 14px;
    border-radius: 14px;
    background: var(--soft)
}

.hero-section {
    padding-top: 24px
}

.hero-banner {
    border: 1px solid var(--border);
    border-radius: 36px;
    padding: clamp(26px, 4vw, 58px);
    background: linear-gradient(120deg, rgba(255, 255, 255, .86), rgba(235, 246, 255, .96)), url('https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1600&q=80') center/cover;
    box-shadow: 0 30px 90px #0d6efd18
}

.min-vh-75 {
    min-height: 75vh
}

.eyebrow,
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--blue);
    font-weight: 800;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 25px #0d6efd10
}

.hero-desc,
.section-subtitle {
    font-size: 1.12rem;
    color: var(--muted);
    line-height: 1.8
}

.btn-primary {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 15px 30px #0d6efd25
}

.btn-primary:hover {
    background: var(--blue-2);
    border-color: var(--blue-2)
}

.guarantee-btn {
    color: var(--blue);
    font-weight: 800;
    border: 1px solid var(--border)
}

.hero-card {
    max-width: 560px;
    margin-left: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px #0d6efd2b;
    transform: rotate(1deg)
}

.hero-card-top {
    height: 56px;
    background: #f4f9ff;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 0 20px
}

.hero-card-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #92c5ff
}

.dashboard-preview {
    padding: 26px
}

.preview-line {
    height: 16px;
    background: linear-gradient(90deg, #cfe7ff, #f6fbff);
    border-radius: 999px;
    margin-bottom: 12px
}

.preview-chart {
    height: 170px;
    border-radius: 22px;
    background: linear-gradient(180deg, #eaf5ff, #fff), repeating-linear-gradient(90deg, #dbefff 0 4px, transparent 4px 54px);
    border: 1px solid var(--border);
    position: relative
}

.preview-chart:after {
    content: '';
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 35px;
    height: 65px;
    background: linear-gradient(135deg, #0d6efd, #7ab7ff);
    clip-path: polygon(0 70%, 20% 45%, 38% 60%, 58% 25%, 78% 45%, 100% 10%, 100% 100%, 0 100%);
    border-radius: 14px
}

.metric-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fbfdff
}

.metric-card strong {
    display: block;
    font-size: 1.5rem;
    color: var(--blue)
}

.metric-card small {
    color: var(--muted);
    font-weight: 700
}

.section-space {
    padding: 95px 0
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -.04em
}

.slider-shell {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent)
}

.testimonial-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: slideRight 28s linear infinite
}

.testimonial-card {
    width: 300px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 20px 60px #0d6efd12
}

.testimonial-card img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px
}

.testimonial-card h3 {
    font-size: 1.2rem;
    font-weight: 900
}

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

.rating {
    letter-spacing: 2px;
    color: #ffb703;
    font-weight: 900
}

.big {
    font-size: 1.2rem
}

@keyframes slideRight {
    from {
        transform: translateX(0)
    }

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

.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center
}

.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b8d9ff
}

.slider-dots .active {
    width: 28px;
    background: var(--blue)
}

.delivery-card,
.plan-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: 0 25px 70px #0d6efd12
}

.delivery-card {
    padding: 28px
}

.delivery-main {
    display: flex;
    gap: 24px;
    align-items: center
}

.client-photo {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 24px
}

.delivery-main h3,
.worker-box h4 {
    font-weight: 900
}

.delivery-main blockquote {
    margin: 18px 0 0;
    padding-left: 18px;
    border-left: 4px solid var(--blue);
    color: var(--muted)
}

.worker-box {
    display: flex;
    gap: 18px;
    align-items: center;
    background: var(--soft);
    border-radius: 24px;
    padding: 22px
}

.worker-box img {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    object-fit: cover
}

.worker-box small {
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase
}

.plan-card {
    height: 100%;
    padding: 24px;
    transition: .25s
}

.plan-card:hover {
    transform: translateY(-8px)
}

.plan-card.featured {
    border: 2px solid var(--blue);
    box-shadow: 0 25px 80px #0d6efd25
}

.discount {
    display: inline-block;
    background: var(--soft);
    color: var(--blue);
    font-weight: 900;
    border-radius: 999px;
    padding: 7px 12px;
    margin-bottom: 18px
}

.plan-card h3 {
    font-weight: 900;
    font-size: 1.7rem
}

.plan-card p,
.plan-card small {
    color: var(--muted)
}

.old-price {
    text-decoration: line-through;
    color: #9badc2;
    font-weight: 800
}

.new-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 18px
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    gap: 12px
}

.plan-card li {
    font-weight: 700
}

.ok {
    color: #18a058
}

.no {
    color: #dc3545
}

.cta-strip {
    margin-bottom: 85px;
    background: linear-gradient(135deg, var(--blue), #66adff);
    border-radius: 34px;
    padding: 38px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    box-shadow: 0 25px 70px #0d6efd30
}

.cta-strip h2 {
    font-weight: 900
}

.cta-strip p {
    margin: 0;
    opacity: .92
}

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

.footer-logo {
    width: 44px
}

.payments {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-weight: 900;
    font-size: 1.2rem
}

.social {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-content: center;
    border-radius: 50%;
    background: var(--soft);
    color: var(--blue);
    margin-left: 8px;
    text-decoration: none;
    font-size: 1.2rem
}


.apk-hero-btn {
    background: #18a058;
    border-color: #18a058;
    box-shadow: 0 15px 30px #18a05825;
    color: #fff
}

.apk-hero-btn:hover {
    background: #128044;
    border-color: #128044;
    color: #fff
}

.apk-download-card {
    background: linear-gradient(135deg, #fff, #eef6ff);
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: clamp(24px, 4vw, 46px);
    box-shadow: 0 25px 75px #0d6efd14;
    position: relative;
    overflow: hidden
}

.apk-download-card:before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #d9ebff;
    right: -90px;
    top: -90px;
    opacity: .8
}

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

.apk-note {
    color: var(--muted);
    font-weight: 600
}

.phone-mockup {
    max-width: 330px;
    margin-left: auto;
    border: 10px solid var(--dark);
    border-radius: 38px;
    background: #fff;
    min-height: 430px;
    padding: 34px 24px;
    text-align: center;
    box-shadow: 0 30px 80px #07142e25
}

.phone-speaker {
    width: 88px;
    height: 8px;
    border-radius: 99px;
    background: #dce8f7;
    margin: 0 auto 58px
}

.app-icon {
    width: 92px;
    height: 92px;
    display: grid;
    place-content: center;
    margin: 0 auto 20px;
    border-radius: 26px;
    background: var(--soft);
    box-shadow: inset 0 0 0 1px var(--border)
}

.app-icon img {
    width: 62px;
    height: 62px;
    object-fit: contain
}

.phone-mockup h3 {
    font-weight: 900
}

.phone-mockup p {
    color: var(--muted);
    font-weight: 700
}

.apk-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eaf8f0;
    color: #128044;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 900
}

@media (max-width: 991px) {
    .phone-mockup {
        margin: 18px auto 0
    }

    .cta-strip {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 575px) {
    .hero-actions .btn,
    .apk-download-card .btn {
        width: 100%
    }

    .phone-mockup {
        min-height: 370px;
        border-width: 8px
    }

    .phone-speaker {
        margin-bottom: 36px
    }
}
