:root {
    --main: #1e88e5;
    --main2: #64b5f6;
    --dark: #0b1220;
    --light: #f8fbff;
    --green: #22c55e;

    /* FIX HEADER HEIGHT */
    --header-h: 72px;
    /* PC */
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, Segoe UI, system-ui;
    background: var(--light);
    color: #334155;
    overflow-x: hidden;
}

/* ================= HERO ULTRA (FIXED) ================= */
.hero {
    min-height: calc(100vh - var(--header-h));
    background:
        radial-gradient(circle at 15% 20%, #4fc3f7, transparent 40%),
        radial-gradient(circle at 85% 30%, #1e88e5, transparent 45%),
        linear-gradient(135deg, #0d47a1, #1e88e5);
    color: #fff !important;
    display: flex;
    align-items: center;
    padding: var(--header-h) 16px 48px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: .05;
}

.hero-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 50px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff !important;
    font-family: Inter, Segoe UI, system-ui;
}

.hero h1 span {
    color: #e3f2fd !important;
}

.hero p {
    font-size: 19px;
    opacity: .95;
    max-width: 520px;
}

.hero-cta {
    margin-top: 34px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* ================= BUTTON ================= */
.btn {
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s;
}

.btn-primary {
    background: #fff;
    color: var(--main);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .3);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, .6);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .15);
}

/* ================= DASHBOARD MOCKUP ================= */
.dashboard {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .35);
}

.db-inner {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
}

.db-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 14px;
}

.db-row strong {
    color: var(--main);
}

.db-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.db-bar span {
    display: block;
    height: 100%;
    width: 70%;
    background: linear-gradient(90deg, var(--main), var(--main2));
}

.db-kpi{
  margin-bottom:22px;
}

.db-title{
  font-size:13px;
  font-weight:700;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:#64748b;
  margin-bottom:6px;
}

/* ================= SECTION ================= */
.subhero {
    padding: 40px 16px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 70px;
    color: #334155;
    font-family: Inter, Segoe UI, system-ui;
}

.title span {
    color: #01b0ef !important;
}

/* ================= GRID ================= */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--main), transparent);
    opacity: 0;
    transition: .35s;
}

.card:hover::after {
    opacity: .08;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(30, 136, 229, .2);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #01b0ef;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.card li::before {
    content: "\2714";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 700;
}

/* ================= HIGHLIGHT ================= */
.card.highlight {
    background: linear-gradient(135deg, var(--main), var(--main2));
    color: #fff;
}

.card.highlight h3,
.card.highlight li::before {
    color: #fff;
}

/* ================= CTA ================= */
.cta {
    background:
        radial-gradient(circle at 20% 30%, #64b5f6, transparent 40%),
        linear-gradient(135deg, #0d47a1, #1e88e5);
    color: #fff;
    text-align: center;
    padding: 120px 16px;
}

.cta h2 {
    font-size: 42px;
}

/* ================= REASON ================= */
.reason {
    margin-top: 30px;
    margin-bottom: 45px;
    text-align: center;
}

.reason h3 {
    font-size: 30px;
    margin-bottom: 25px;
    font-family: Inter, Segoe UI, system-ui;
}

.reason-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.reason-list span {
    background: #e3f2fd;
    color: #01b0ef;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
}

/* ================= SCROLL FIX ================= */
section {
    scroll-margin-top: var(--header-h);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

    :root {
        --header-h: 78px;
        /* Mobile header */
    }

    .hero {
        min-height: calc(100svh - var(--header-h));
        align-items: flex-start;
        padding-top: calc(var(--header-h) + 40px);
    }

    .hero-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

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

    .hero-cta {
        justify-content: center;
    }

    .btn {
        width: 85%;
        text-align: center;
    }

    .grid,
    .flow {
        grid-template-columns: 1fr;
    }

    .reason {
    margin-top: -15px;
}
}