﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2d5bdf;
    --primary-dark: #173d9c;
    --secondary: #1ea7ff;
    --navy: #081f4d;
    --navy-deep: #06173a;
    --text: #16264d;
    --text-soft: #66718f;
    --bg: #eef1f8;
    --white: #ffffff;
    --border: #dce3f2;
    --shadow: 0 18px 45px rgba(13, 39, 97, 0.08);
    --card-shadow: 0 10px 30px rgba(16, 40, 92, 0.06);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --gradient: linear-gradient(90deg, #4a49ea 0%, #10afe4 100%);
    --dark-gradient: linear-gradient(90deg, #0a163c 0%, #2951d3 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    background: url('images/best_day_trading_software.jpg') no-repeat center center fixed;
    background-size: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.section-space {
    padding: 42px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    padding: 16px 28px;
    box-shadow: 0 10px 24px rgba(53, 87, 223, 0.24);
}

    .btn-primary:hover {
        transform: translateY(-2px);
    }

.btn-light {
    background: var(--white);
    color: #111827;
    padding: 15px 26px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--card-shadow);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f2f4fb;
    border: 1px solid #d6def3;
    border-radius: 999px;
    color: #263559;
    font-size: 14px;
    font-weight: 600;
}

.badge-mini {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2b60ff;
    margin-bottom: 10px;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

    .section-heading h2 {
        font-size: clamp(34px, 5vw, 56px);
        line-height: 1.08;
        font-weight: 800;
        margin-bottom: 14px;
        color: #223561;
        font-family: "DM Serif Display", serif;
    }

    .section-heading p {
        max-width: 730px;
        margin: 0 auto;
        color: var(--text-soft);
        font-size: 18px;
    }

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e7ebf5;
}

.navbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #24375d;
}

.logo-mark {
    width: 102px;
    height: 36px;
    border: 2px solid #8bb2ff;
    border-left-width: 0;
    border-right-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .logo-mark::before,
    .logo-mark::after {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        border: 2px solid #8bb2ff;
    }

    .logo-mark::before {
        left: 0;
        top: -2px;
        border-right: 0;
        border-bottom: 0;
    }

    .logo-mark::after {
        right: 0;
        bottom: -2px;
        border-left: 0;
        border-top: 0;
    }

    .logo-mark span:first-child {
        font-size: 34px;
        font-weight: 900;
        color: #1656c8;
        line-height: 1;
        margin-right: 4px;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

    .nav-links a {
        padding: 12px 16px;
        border-radius: 999px;
        font-weight: 600;
        color: #344261;
        transition: 0.25s ease;
    }

        .nav-links a.active,
        .nav-links a:hover {
            color: var(--primary);
            background: #eff4ff;
            box-shadow: inset 0 0 0 1px #b9cdfd;
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.phone-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #eef2fb;
    border: 1px solid #d9e1f4;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 800;
    color: #56627c;
}

/* Hero */
.hero {
    padding: 24px 0 24px;
    background: linear-gradient(180deg, #f7f9fe 0%, #edf1f8 100%);
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 36px;
    min-height: 420px;
}

.hero-content h1 {
    font-size: clamp(42px, 5vw, 28px);
    line-height: 1.06;
    font-weight: 800;
    max-width: 660px;
    letter-spacing: -1.4px;
    color: #28365f;
    margin-bottom: 24px;
    font-family: "DM Serif Display", serif;
}

.hero-content p {
    max-width: 600px;
    font-size: 20px;
    color: #69758f;
    margin-bottom: 20px;
}

.pill-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero-visual {
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 540px;
    min-height: 480px;
}

.desk {
    position: absolute;
    bottom: 66px;
    right: 20px;
    width: 420px;
    height: 12px;
    background: #c9d0e6;
    border-radius: 999px;
    box-shadow: 0 130px 0 0 #c9d0e6;
}

    .desk::before,
    .desk::after {
        content: "";
        position: absolute;
        width: 8px;
        height: 142px;
        background: #c9d0e6;
        bottom: -142px;
        border-radius: 8px;
    }

    .desk::before {
        left: 18px;
    }

    .desk::after {
        right: 24px;
    }

.drawer {
    position: absolute;
    left: 30px;
    bottom: 74px;
    width: 78px;
    height: 170px;
    background: linear-gradient(180deg, #5064ef 0%, #8393fb 100%);
    border-radius: 10px 10px 0 0;
    box-shadow: inset -12px 0 0 rgba(255,255,255,0.16);
}

    .drawer::before,
    .drawer::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background: rgba(255,255,255,0.75);
        border-radius: 3px;
    }

    .drawer::before {
        top: 54px;
    }

    .drawer::after {
        top: 116px;
    }

.monitor {
    position: absolute;
    right: 104px;
    top: 72px;
    width: 220px;
    height: 154px;
    background: #475ee9;
    border-radius: 10px;
    padding: 10px;
    box-shadow: var(--card-shadow);
}

.monitor-screen {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: #f8f9fd;
    position: relative;
    overflow: hidden;
}

.monitor-bars {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 18px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

    .monitor-bars span {
        flex: 1;
        border-radius: 6px 6px 0 0;
        background: linear-gradient(180deg, #7cc9ff 0%, #4db2ff 100%);
    }

        .monitor-bars span:nth-child(1) {
            height: 46px;
        }

        .monitor-bars span:nth-child(2) {
            height: 90px;
            background: linear-gradient(180deg, #b7d95a 0%, #8abb33 100%);
        }

        .monitor-bars span:nth-child(3) {
            height: 72px;
            background: linear-gradient(180deg, #ffd07c 0%, #f5b63c 100%);
        }

        .monitor-bars span:nth-child(4) {
            height: 102px;
            background: linear-gradient(180deg, #ffa9a9 0%, #f47a7a 100%);
        }

.chart-line {
    position: absolute;
    width: 140px;
    height: 3px;
    background: #b9bb45;
    top: 52px;
    left: 48px;
    transform: rotate(24deg);
    transform-origin: left center;
    border-radius: 999px;
}

    .chart-line::after {
        content: "";
        position: absolute;
        right: -2px;
        top: -5px;
        width: 12px;
        height: 12px;
        border-top: 3px solid #b9bb45;
        border-right: 3px solid #b9bb45;
        transform: rotate(45deg);
    }

.monitor-stand {
    position: absolute;
    right: 188px;
    top: 226px;
    width: 54px;
    height: 20px;
    background: #475ee9;
    border-radius: 0 0 8px 8px;
}

    .monitor-stand::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 18px;
        height: 26px;
        top: -12px;
        background: #475ee9;
        border-radius: 4px;
    }

.laptop {
    position: absolute;
    right: 28px;
    top: 170px;
    width: 130px;
    height: 82px;
    border: 4px solid #6672ef;
    background: #f8f9fd;
    border-radius: 6px;
    transform: perspective(400px) rotateY(-12deg);
}

    .laptop::after {
        content: "";
        position: absolute;
        width: 136px;
        height: 8px;
        background: #6672ef;
        bottom: -12px;
        left: -7px;
        border-radius: 0 0 10px 10px;
    }

    .laptop .mini-bars {
        position: absolute;
        bottom: 14px;
        left: 14px;
        right: 14px;
        display: flex;
        gap: 8px;
        align-items: flex-end;
    }

        .laptop .mini-bars span {
            flex: 1;
            background: #5e8cff;
            border-radius: 4px 4px 0 0;
        }

            .laptop .mini-bars span:nth-child(1) {
                height: 20px;
            }

            .laptop .mini-bars span:nth-child(2) {
                height: 32px;
                background: #f7b949;
            }

            .laptop .mini-bars span:nth-child(3) {
                height: 42px;
                background: #43b0ff;
            }

.person-head {
    position: absolute;
    left: 170px;
    top: 82px;
    width: 72px;
    height: 74px;
    background: #f1b88e;
    border-radius: 46% 54% 46% 54%;
    z-index: 3;
}

.person-hair {
    position: absolute;
    left: 160px;
    top: 68px;
    width: 86px;
    height: 82px;
    background: #07155f;
    border-radius: 40% 60% 45% 55%;
    z-index: 4;
    clip-path: polygon(17% 14%, 81% 5%, 96% 43%, 76% 100%, 35% 97%, 5% 48%);
}

.person-body {
    position: absolute;
    left: 114px;
    top: 146px;
    width: 162px;
    height: 196px;
    background: #5564f1;
    border-radius: 48px 48px 26px 26px;
    z-index: 2;
}

.person-arm {
    position: absolute;
    left: 224px;
    top: 226px;
    width: 118px;
    height: 20px;
    background: #efb48a;
    border-radius: 999px;
    z-index: 1;
    transform: rotate(10deg);
}

.chair-back {
    position: absolute;
    left: 92px;
    top: 218px;
    width: 160px;
    height: 140px;
    background: linear-gradient(180deg, #6376ff 0%, #87a0ff 100%);
    border-radius: 80px 80px 40px 40px;
    z-index: 0;
}

.chair-seat {
    position: absolute;
    left: 140px;
    top: 322px;
    width: 110px;
    height: 34px;
    background: #788cff;
    border-radius: 0 0 50px 50px;
    z-index: 0;
    transform: rotate(-8deg);
}

.leg-dark {
    position: absolute;
    width: 34px;
    height: 174px;
    background: #1d2a68;
    border-radius: 20px;
    top: 302px;
    left: 230px;
    transform: rotate(-5deg);
    z-index: 1;
}

    .leg-dark.second {
        left: 204px;
        top: 298px;
        transform: rotate(14deg);
    }

.chair-legs,
.chair-legs::before,
.chair-legs::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 150px;
    background: #b6bfd9;
    border-radius: 10px;
    top: 334px;
    left: 166px;
    transform: rotate(8deg);
    z-index: 0;
}

    .chair-legs::before {
        left: 44px;
        top: 0;
        transform: rotate(-6deg);
    }

    .chair-legs::after {
        left: 92px;
        top: 0;
        transform: rotate(-10deg);
    }

.thought {
    position: absolute;
    top: 82px;
    left: 72px;
    width: 108px;
    height: 76px;
    background: #fff;
    border: 4px solid #9aa19a;
    border-radius: 44px;
    z-index: 1;
}

    .thought::before,
    .thought::after {
        content: "";
        position: absolute;
        border: 4px solid #9aa19a;
        background: #fff;
        border-radius: 50%;
    }

    .thought::before {
        width: 18px;
        height: 18px;
        right: -18px;
        bottom: 12px;
    }

    .thought::after {
        width: 12px;
        height: 12px;
        right: -30px;
        bottom: -8px;
    }

.thought-icons {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 24px;
}

.basket {
    position: absolute;
    right: 82px;
    bottom: 82px;
    width: 52px;
    height: 58px;
    border: 3px solid #7e8cff;
    border-top: 0;
    border-radius: 0 0 12px 12px;
    background: repeating-linear-gradient( 90deg, transparent, transparent 8px, rgba(126, 140, 255, 0.55) 8px, rgba(126, 140, 255, 0.55) 10px );
}

    .basket::before {
        content: "";
        position: absolute;
        left: 6px;
        right: 6px;
        top: 10px;
        height: 2px;
        background: rgba(126, 140, 255, 0.7);
        box-shadow: 0 10px 0 rgba(126, 140, 255, 0.7), 0 20px 0 rgba(126, 140, 255, 0.7), 0 30px 0 rgba(126, 140, 255, 0.7);
    }

/* Intro cards */
.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 34px;
}

.card {
    background: rgba(255,255,255,0.8);
    border: 1px solid #e0e7f3;
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--card-shadow);
}

    .card h3 {
        font-size: 24px;
        line-height: 1.2;
        margin: 8px 0 12px;
        color: #162a58;
    }

    .card p {
        color: var(--text-soft);
        font-size: 18px;
    }

.feature-strip {
    margin-top: 40px;
    background: var(--dark-gradient);
    border-radius: 28px;
    padding: 26px 24px;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    box-shadow: 0 18px 40px rgba(8, 26, 71, 0.22);
}

.strip-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.strip-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.12);
    font-size: 20px;
}

.strip-item h4 {
    font-size: 24px;
    margin-bottom: 6px;
    line-height: 1.2;
}

.strip-item p {
    color: rgba(255,255,255,0.82);
    font-size: 17px;
}

/* Why choose */
.panel {
    background: rgba(255,255,255,0.65);
    border: 1px solid #e0e7f1;
    border-radius: 34px;
    padding: 46px 22px 34px;
    box-shadow: var(--card-shadow);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 28px;
}

.feature-card {
    background: #fff;
    border: 1px solid #e3e8f5;
    border-radius: 24px;
    padding: 34px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.feature-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    font-size: 28px;
    color: var(--primary);
    background: #ecf3ff;
    border: 1px solid #cfe1ff;
}

.feature-card h3 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 14px;
    color: #25355d;
}

.feature-card p {
    font-size: 17px;
    color: #647089;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: rgba(255,255,255,0.86);
    border: 1px solid #e1e8f6;
    border-radius: 28px;
    padding: 28px 28px 30px;
    box-shadow: var(--card-shadow);
    position: relative;
}

    .pricing-card.featured {
        border-color: #c7d8ff;
        box-shadow: 0 16px 40px rgba(58, 93, 224, 0.12);
    }

.plan-name {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2b60ff;
    margin-bottom: 6px;
}

.pricing-card h3 {
    font-size: 24px;
    line-height: 1.2;
    color: #22335f;
    margin-bottom: 14px;
}

.price {
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1;
    font-weight: 800;
    color: #0f244f;
    margin-bottom: 12px;
}

.duration {
    color: #315fff;
    font-weight: 800;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.plan-features {
    list-style: none;
    margin-bottom: 26px;
}

    .plan-features li {
        padding: 12px 0;
        border-bottom: 1px dashed #d7deee;
        color: #5d6983;
        font-size: 16px;
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

        .plan-features li::before {
            content: "✓";
            color: #3767ff;
            font-weight: 900;
            margin-top: 1px;
        }

.pricing-help {
    margin-top: 28px;
    background: linear-gradient(90deg, #224bc2 0%, #2e66ee 100%);
    color: #fff;
    border-radius: 28px;
    padding: 28px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 18px 40px rgba(18, 51, 140, 0.18);
}

    .pricing-help h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .pricing-help p {
        color: rgba(255,255,255,0.86);
    }

/* About */
.about-box {
    background: rgba(255,255,255,0.7);
    border: 1px solid #e0e8f2;
    border-radius: 34px;
    padding: 40px 34px;
    box-shadow: var(--card-shadow);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 26px;
    align-items: center;
}

.about-text h3 {
    font-size: clamp(34px, 4vw, 44px);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #20335d;
    font-family: "DM Serif Display", serif;
}

.about-points {
    list-style: none;
    display: grid;
    gap: 18px;
    margin-bottom: 28px;
}

    .about-points li {
        position: relative;
        padding-left: 28px;
        color: #4c5874;
        font-size: 18px;
    }

        .about-points li::before {
            content: "●";
            position: absolute;
            left: 0;
            top: 1px;
            color: #071845;
            font-size: 16px;
        }

.mini-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.mini-card {
    background: rgba(255,255,255,0.9);
    border: 1px solid #dbe4f5;
    border-radius: 20px;
    padding: 20px 18px;
}

    .mini-card h4 {
        font-size: 18px;
        line-height: 1.2;
        color: #172958;
        margin-bottom: 8px;
    }

    .mini-card p {
        font-size: 15px;
        color: #68748d;
    }

.about-visual {
    position: relative;
}

.illustration-card {
    background: linear-gradient(145deg, #ffffff 0%, #edf4ff 100%);
    border: 1px solid #dbe6fb;
    border-radius: 30px;
    padding: 26px;
    box-shadow: 0 20px 45px rgba(32, 58, 125, 0.1);
    min-height: 460px;
    position: relative;
    overflow: hidden;
}

.illus-title {
    position: absolute;
    left: 28px;
    top: 26px;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    color: #125ccf;
}

.trader-stage {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    height: 320px;
    border-radius: 26px;
    background: radial-gradient(circle at 50% 0%, #ffffff 0%, #eef4ff 48%, #d9e7ff 100%);
}

.avatar-head {
    position: absolute;
    right: 180px;
    bottom: 170px;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #f1bd9a;
    z-index: 3;
}

.avatar-hair {
    position: absolute;
    right: 172px;
    bottom: 200px;
    width: 88px;
    height: 56px;
    background: #503526;
    border-radius: 50px 50px 20px 20px;
    z-index: 4;
}

.avatar-body {
    position: absolute;
    right: 132px;
    bottom: 70px;
    width: 164px;
    height: 170px;
    border-radius: 36px;
    background: linear-gradient(180deg, #3ea8ff 0%, #1554c8 100%);
    z-index: 2;
}

.laptop-illus {
    position: absolute;
    right: 210px;
    bottom: 104px;
    width: 124px;
    height: 76px;
    background: #c4d4ff;
    border: 4px solid #7aa1ff;
    border-radius: 10px;
    transform: rotate(-8deg);
    z-index: 5;
}

.robot {
    position: absolute;
    left: 52px;
    bottom: 118px;
    width: 140px;
    height: 160px;
    border-radius: 32px;
    background: linear-gradient(180deg, #dff6ff 0%, #70d2ff 100%);
    border: 4px solid #9ccfff;
    z-index: 2;
}

    .robot::before {
        content: "";
        position: absolute;
        width: 86px;
        height: 62px;
        background: #fff;
        border-radius: 22px;
        left: 50%;
        transform: translateX(-50%);
        top: 20px;
    }

    .robot::after {
        content: "AI";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 36px;
        font-size: 28px;
        font-weight: 900;
        color: #2f63ff;
        z-index: 2;
    }

.chart-card {
    position: absolute;
    right: 22px;
    bottom: 118px;
    width: 180px;
    height: 150px;
    background: #0c3a7a;
    border-radius: 18px;
    padding: 16px;
    z-index: 2;
    box-shadow: 0 18px 35px rgba(9, 49, 114, 0.2);
}

    .chart-card::before,
    .chart-card::after {
        content: "BUY";
        position: absolute;
        right: 12px;
        top: 18px;
        background: #7ce86c;
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        padding: 6px 10px;
        border-radius: 999px;
    }

    .chart-card::after {
        content: "SELL";
        top: 60px;
        background: #ff745f;
    }

    .chart-card .candles {
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 16px;
        top: 20px;
        display: flex;
        align-items: flex-end;
        gap: 8px;
    }

        .chart-card .candles span {
            flex: 1;
            background: linear-gradient(180deg, #55e1ff 0%, #0ea4ff 100%);
            border-radius: 6px 6px 0 0;
        }

            .chart-card .candles span:nth-child(1) {
                height: 46px;
            }

            .chart-card .candles span:nth-child(2) {
                height: 90px;
            }

            .chart-card .candles span:nth-child(3) {
                height: 62px;
            }

            .chart-card .candles span:nth-child(4) {
                height: 110px;
            }

.tag-cloud {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    z-index: 4;
}

    .tag-cloud span {
        background: #fff;
        border: 1px solid #dae7ff;
        border-radius: 999px;
        padding: 8px 12px;
        font-size: 13px;
        font-weight: 700;
        color: #1c4fc3;
        box-shadow: 0 6px 16px rgba(17, 65, 158, 0.08);
    }

/* Reviews */
.reviews {
    background: linear-gradient(180deg, #062756 0%, #06214b 100%);
    color: #fff;
    padding: 56px 0 0;
    margin-top: 24px;
}

    .reviews .section-heading h2,
    .reviews .section-heading p,
    .reviews .badge-mini {
        color: #fff;
    }

    .reviews .badge-mini {
        background: rgba(255,255,255,0.08);
        padding: 8px 16px;
        border-radius: 999px;
        display: inline-block;
        margin-bottom: 16px;
        letter-spacing: 1px;
    }

.review-wrap {
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    gap: 18px;
    align-items: center;
    margin-top: 18px;
}

.review-nav {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    display: grid;
    place-items: center;
    font-size: 28px;
    color: #fff;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 28px;
    min-height: 280px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.stars {
    color: #ffc84d;
    letter-spacing: 2px;
    font-size: 20px;
    margin-bottom: 18px;
}

.review-card p {
    color: rgba(255,255,255,0.86);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.review-card h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.review-card span {
    color: #76b6ff;
    font-size: 15px;
}

/* Footer */
.footer {
    background: #061b43;
    color: #fff;
    padding: 58px 0 26px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.footer-brand p {
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    max-width: 300px;
    margin: 18px 0 22px;
}

.footer-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

    .footer-btns .btn {
        padding: 12px 18px;
        font-size: 14px;
    }

.socials {
    display: flex;
    gap: 10px;
}

    .socials a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
        color: #fff;
        font-size: 16px;
    }

.footer h4 {
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 12px;
}

    .footer-links a {
        color: rgba(255,255,255,0.84);
        font-size: 15px;
        transition: 0.25s ease;
    }

        .footer-links a:hover {
            color: #8fc0ff;
        }

.contact-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 16px;
}

    .contact-box .label {
        display: block;
        color: #8fc0ff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .contact-box a {
        font-size: 28px;
        font-weight: 800;
        line-height: 1.2;
        display: inline-block;
        margin-bottom: 10px;
    }

    .contact-box p {
        color: rgba(255,255,255,0.76);
        font-size: 15px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 34px;
    padding-top: 22px;
    text-align: center;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-wrap,
    .about-grid,
    .footer-grid,
    .intro-grid,
    .feature-grid,
    .pricing-grid,
    .review-grid,
    .feature-strip {
        grid-template-columns: 1fr 1fr;
    }

        .footer-grid > :first-child {
            grid-column: 1 / -1;
        }
}

@media (max-width: 860px) {
    .navbar {
        flex-direction: column;
        padding: 14px 0;
    }

    .hero-wrap,
    .intro-grid,
    .feature-grid,
    .pricing-grid,
    .about-grid,
    .review-grid,
    .feature-strip,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .review-wrap {
        grid-template-columns: 1fr;
    }

    .review-nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .pricing-help {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-visual {
        order: -1;
    }

    .hero-illustration {
        transform: scale(0.88);
        transform-origin: center top;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1200px);
    }

    .card,
    .pricing-card,
    .feature-card,
    .about-box,
    .panel,
    .review-card {
        padding: 22px;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .header-actions,
    .nav-links {
        justify-content: center;
    }

    .phone-chip,
    .btn-primary,
    .btn-light {
        width: 100%;
    }

    .desk {
        transform: scale(0.78);
        transform-origin: right bottom;
    }


}


