* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --dark: #0f172a;
    --text: #475569;
    --muted: #64748b;
    --light: #f8fafc;
    --border: #e2e8f0;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--dark);
    background: white;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    height: 76px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226,232,240,.7);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: white;
    font-weight: 800;
}

.logo-highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.login-link {
    font-size: 14px;
    font-weight: 600;
}

.mobile-login {
    display: none;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 9px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    transition: .2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid #cbd5e1;
    color: var(--dark);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 15px 25px;
}

.btn-white {
    background: white;
    color: var(--primary);
}

.nav-btn {
    padding: 10px 18px;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    overflow: hidden;
    padding: 95px 0 100px;
    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
}

.hero-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(37,99,235,.08);
    filter: blur(80px);
    right: -200px;
    top: -200px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 30px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 22px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    max-width: 650px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-description {
    margin-top: 25px;
    max-width: 570px;
    color: var(--text);
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 13px;
    margin-top: 32px;
}

.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 12px;
}

.hero-note span {
    color: #16a34a;
    font-weight: 700;
}


/* =========================
   DASHBOARD MOCKUP
========================= */

.hero-dashboard {
    position: relative;
}

.dashboard-window {
    background: white;
    border: 1px solid #dbe3ef;
    border-radius: 18px;
    box-shadow:
        0 30px 80px rgba(15,23,42,.14);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-4deg);
}

.window-header {
    height: 46px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.window-title {
    margin: auto;
    font-size: 11px;
    color: var(--muted);
}

.dashboard-content {
    padding: 22px;
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-top small {
    display: block;
    color: var(--muted);
    font-size: 11px;
}

.dashboard-top strong {
    display: inline-block;
    margin-top: 3px;
    font-size: 26px;
}

.growth {
    margin-left: 8px;
    font-size: 10px;
    color: #16a34a;
}

.dashboard-date {
    font-size: 10px;
    color: var(--muted);
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.mini-card {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 9px;
}

.mini-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #dbeafe;
    display: grid;
    place-items: center;
    font-size: 12px;
}

.mini-card small {
    display: block;
    color: var(--muted);
    font-size: 9px;
}

.mini-card strong {
    font-size: 12px;
}

.chart-area {
    margin-top: 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 15px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.chart-header span {
    color: var(--muted);
}

.chart {
    position: relative;
    height: 150px;
    margin-top: 10px;
}

.chart svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--primary);
}

.chart-line {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px dashed #e2e8f0;
}

.line-one {
    top: 25%;
}

.line-two {
    top: 50%;
}

.line-three {
    top: 75%;
}


/* =========================
   TRUST
========================= */

.trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 25px 0;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.trust-container > span {
    color: var(--muted);
    font-size: 13px;
}

.trust-items {
    display: flex;
    gap: 30px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light);
}

.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 55px;
}

.section-label {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.section-heading p {
    margin-top: 15px;
    color: var(--muted);
}


/* =========================
   FEATURES
========================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: 14px;
    background: white;
    transition: .25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15,23,42,.08);
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    background: #eff6ff;
    border-radius: 10px;
    font-size: 21px;
}

.feature-card h3 {
    margin-top: 18px;
    font-size: 17px;
}

.feature-card p {
    color: var(--muted);
    font-size: 13px;
    margin-top: 9px;
}

.feature-card a {
    display: inline-block;
    margin-top: 18px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}


/* =========================
   STEPS
========================= */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.step {
    position: relative;
}

.step-number {
    font-size: 40px;
    color: #bfdbfe;
    font-weight: 800;
}

.step h3 {
    margin-top: 8px;
}

.step p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}


/* =========================
   BENEFITS
========================= */

.benefits {
    padding: 100px 0;
    background: #0f172a;
    color: white;
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-content h2 {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.benefits-content > p {
    color: #94a3b8;
    margin-top: 20px;
    max-width: 550px;
}

.benefit-list {
    margin-top: 28px;
    display: grid;
    gap: 13px;
    font-size: 14px;
}

.benefit-list span {
    color: #60a5fa;
    margin-right: 10px;
}

.benefits-card {
    height: 400px;
    border-radius: 20px;
    background: linear-gradient(
        145deg,
        #172554,
        #1e293b
    );
    position: relative;
    display: grid;
    place-items: center;
}

.benefits-center {
    text-align: center;
}

.big-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.benefits-center strong {
    font-size: 23px;
}

.floating-card {
    position: absolute;
    padding: 16px 18px;
    background: white;
    color: var(--dark);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.floating-card span,
.floating-card small {
    display: block;
    font-size: 10px;
    color: var(--muted);
}

.floating-card strong {
    display: block;
    margin: 3px 0;
    font-size: 17px;
}

.card-one {
    top: 35px;
    left: 25px;
}

.card-two {
    right: 25px;
    bottom: 35px;
}


/* =========================
   PRICING
========================= */

.pricing-placeholder {
    max-width: 650px;
    margin: auto;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 50px 30px;
    background: #f8fafc;
}

.pricing-placeholder-icon {
    font-size: 40px;
}

.pricing-placeholder h3 {
    margin-top: 15px;
}

.pricing-placeholder p {
    color: var(--muted);
    margin: 10px auto 25px;
    max-width: 500px;
    font-size: 14px;
}


/* =========================
   CTA
========================= */

.cta {
    padding: 70px 0;
    background: var(--primary);
    color: white;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta h2 {
    font-size: 34px;
    line-height: 1.2;
}

.cta p {
    margin-top: 8px;
    color: #dbeafe;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #020617;
    color: white;
}

.footer-container {
    padding: 65px 0;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.footer-brand p {
    color: #64748b;
    max-width: 280px;
    margin-top: 15px;
    font-size: 13px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links h4 {
    font-size: 13px;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: #64748b;
    font-size: 12px;
    margin-top: 9px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 20px 0;
    color: #475569;
    font-size: 11px;
}


/* =========================
   MOBILE
========================= */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    margin: 5px;
}


@media (max-width: 900px) {

    .hero-container,
    .benefits-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 65px;
    }

    .hero-dashboard {
        max-width: 650px;
        margin: auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-container {
        gap: 50px;
    }

    .trust-container {
        flex-direction: column;
    }

}


@media (max-width: 700px) {

    .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-login {
        display: block;
    }

    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .dashboard-window {
        transform: none;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
    }

    .trust-items {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading h2 {
        font-size: 31px;
    }

    .features-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .benefits-content h2 {
        font-size: 32px;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

}