/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #0f172a;
    background: #ffffff;
    line-height: 1.6;
}

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

button {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #e5e7eb;
}

.nav-container {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}


.logo-text {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text small {
    display: block;
    font-size: 8px;
    letter-spacing: 2px;
    color: #64748b;
}
.logo-image {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}



.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu > a:not(.nav-button) {
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    transition: .25s;
}

.nav-menu > a:not(.nav-button):hover {
    color: #2563eb;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0f172a;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 760px;
    padding-top: 150px;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.hero-background {
    position: absolute;
    width: 650px;
    height: 650px;
    right: -250px;
    top: 50px;
    background: #dbeafe;
    filter: blur(100px);
    border-radius: 50%;
    opacity: .7;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.eyebrow span {
    width: 24px;
    height: 2px;
    background: #2563eb;
}

.hero h1 {
    font-size: clamp(45px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -3px;
    max-width: 650px;
    margin-bottom: 28px;
}

.hero h1 span {
    display: block;
    color: #2563eb;
}

.hero p {
    max-width: 560px;
    color: #64748b;
    font-size: 18px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: .25s;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

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

.btn-secondary {
    border: 1px solid #cbd5e1;
    background: white;
}

.btn-secondary:hover {
    border-color: #2563eb;
}

.hero-trust {
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dbeafe;
    color: #2563eb;
}

.hero-trust strong,
.hero-trust small {
    display: block;
}

.hero-trust strong {
    font-size: 13px;
}

.hero-trust small {
    color: #64748b;
    font-size: 11px;
}


/* =========================
   DASHBOARD
========================= */

.hero-visual {
    perspective: 1000px;
}

.dashboard-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 30px 70px rgba(15,23,42,.14);
    transform: rotateY(-7deg) rotateX(3deg);
    transition: .5s;
}

.dashboard-card:hover {
    transform: rotateY(0) rotateX(0);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.dashboard-header small {
    color: #64748b;
    font-size: 9px;
    letter-spacing: 1px;
}

.dashboard-header h3 {
    font-size: 17px;
}

.status {
    color: #16a34a;
    font-size: 11px;
}

.status span {
    width: 7px;
    height: 7px;
    display: inline-block;
    background: #22c55e;
    border-radius: 50%;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dashboard-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
}

.dashboard-stat small,
.dashboard-stat strong {
    display: block;
}

.dashboard-stat small {
    color: #64748b;
    font-size: 10px;
}

.dashboard-stat strong {
    font-size: 20px;
}

.stat-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
}

.stat-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.stat-icon.purple {
    background: #ede9fe;
    color: #7c3aed;
}

.chart-container {
    margin-top: 20px;
}

.chart-title {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
}

.chart-title span {
    color: #94a3b8;
    font-weight: 400;
}

.fake-chart {
    height: 150px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 29px,
        #f1f5f9 30px
    );
}

.chart-line {
    position: absolute;
    height: 3px;
    border-radius: 5px;
    background: #2563eb;
    transform: rotate(-8deg);
}

.line-1 {
    width: 70%;
    left: 8%;
    top: 70%;
}

.line-2 {
    width: 45%;
    left: 48%;
    top: 50%;
    transform: rotate(15deg);
}

.line-3 {
    width: 40%;
    right: -2%;
    top: 28%;
    transform: rotate(-18deg);
}

.dashboard-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    color: #64748b;
    font-size: 10px;
}

.dashboard-footer i {
    color: #22c55e;
}


/* =========================
   STATS
========================= */

.stats-section {
    border-bottom: 1px solid #e2e8f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-box {
    text-align: center;
    padding: 35px 10px;
    border-right: 1px solid #e2e8f0;
}

.stat-box:last-child {
    border-right: none;
}

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

.stat-box strong {
    font-size: 30px;
}

.stat-box span {
    color: #64748b;
    font-size: 12px;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 55px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading.center .eyebrow {
    justify-content: center;
}

.section-heading h2,
.why-content h2,
.about-content h2 {
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -2px;
}

.section-heading h2 span,
.why-content h2 span,
.about-content h2 span {
    color: #2563eb;
}

.section-heading p,
.why-content p,
.about-content p {
    margin-top: 20px;
    color: #64748b;
}


/* =========================
   SOLUTIONS
========================= */

.solutions {
    background: #f8fafc;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.solution-card {
    padding: 42px;
    min-height: 390px;
    border-radius: 24px;
    background: white;
    border: 1px solid #e2e8f0;
    transition: .3s;
}

.solution-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 50px rgba(15,23,42,.08);
}

.solution-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #dbeafe;
    color: #2563eb;
    font-size: 21px;
    margin-bottom: 35px;
}

.solution-label {
    font-size: 10px;
    color: #64748b;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.solution-card h3 {
    max-width: 420px;
    font-size: 28px;
    line-height: 1.2;
    margin: 10px 0 15px;
}

.solution-card p {
    color: #64748b;
    font-size: 14px;
    max-width: 470px;
}

.solution-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 28px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
}


/* =========================
   WHY US
========================= */

.why-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature {
    padding: 25px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 11px;
    margin-bottom: 18px;
}

.feature h3 {
    font-size: 16px;
}

.feature p {
    font-size: 12px;
    margin-top: 7px;
}


/* =========================
   INTEGRATIONS
========================= */

.integrations {
    background: #0f172a;
    color: white;
}

.integrations .section-heading p {
    color: #94a3b8;
}

.integration-wrapper {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    gap: 15px;
}

.integration-item {
    text-align: center;
    padding: 20px 10px;
    border: 1px solid #334155;
    border-radius: 14px;
}

.integration-item i {
    display: block;
    margin-bottom: 8px;
    color: #60a5fa;
}

.integration-item span {
    font-size: 10px;
    color: #cbd5e1;
}

.integration-core {
    text-align: center;
    background: #2563eb;
    padding: 22px 10px;
    border-radius: 16px;
}

.integration-core span,
.integration-core strong {
    display: block;
}

.integration-core span {
    font-size: 8px;
    letter-spacing: 2px;
}

.integration-core strong {
    font-size: 20px;
}


/* =========================
   ABOUT
========================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    height: 450px;
    display: grid;
    place-items: center;
    background: #f1f5f9;
    border-radius: 25px;
}

.about-card {
    width: 250px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #0f172a;
    color: white;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(15,23,42,.2);
}

.about-logo {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: #2563eb;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-card strong {
    font-size: 25px;
}

.about-card span {
    font-size: 8px;
    letter-spacing: 2px;
    color: #94a3b8;
}

.about-content p {
    margin-bottom: 15px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    color: #2563eb;
    font-weight: 700;
    font-size: 13px;
}


/* =========================
   CTA
========================= */

.cta-section {
    padding: 110px 0;
    background: #2563eb;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
}

.eyebrow.light {
    justify-content: center;
    color: #bfdbfe;
}

.eyebrow.light span {
    background: #bfdbfe;
}

.cta-section h2 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.cta-section p {
    color: #dbeafe;
    margin: 18px 0 30px;
}

.btn-white {
    background: white;
    color: #0f172a;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #020617;
    color: white;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-brand p {
    max-width: 300px;
    margin-top: 20px;
    color: #94a3b8;
    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-column a {
    color: #94a3b8;
    font-size: 12px;
}

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

.socials {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.socials a {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid #334155;
    border-radius: 9px;
    color: #94a3b8;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 22px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    color: #64748b;
    font-size: 10px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .nav-menu {
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        background: white;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > a {
        padding: 15px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container,
    .why-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-visual {
        margin-top: 30px;
    }

    .dashboard-card {
        transform: none;
    }

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

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

    .integration-core {
        grid-column: span 2;
        grid-row: 1;
    }

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

    .stat-box:nth-child(2) {
        border-right: none;
    }

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


@media (max-width: 600px) {

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .stat-box {
        padding: 25px 5px;
    }

    .solution-card {
        padding: 28px;
    }

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

    .about-image {
        height: 350px;
    }

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

    .footer-bottom .container {
        flex-direction: column;
        gap: 8px;
    }

}
/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}