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

/* BODY */
body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #0f172a, #020617);
    color: #e2e8f0;
    line-height: 1.6;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* SECTION */
.section {
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GRID SYSTEM */
.card-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* WORKFLOW GRID */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.card {
    background: rgba(30, 41, 59, 0.7);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

/* CARD HOVER */
.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid #3b82f6;
}

/* METRICS */
.metrics {
    text-align: center;
    padding: 60px 20px;
}

.metric-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* COUNTER TEXT */
.counter {
    font-size: 32px;
    font-weight: bold;
    color: #38bdf8;
}

/* METRIC ICON */
.metric-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

/* DASHBOARD SECTION */
.dashboard {
    padding: 60px 20px;
    text-align: center;
}

/* BIG IMAGE */
.big-image {
    width: 70%;
    margin: 40px auto;
}

.big-image img {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s;
}

.big-image img:hover {
    transform: scale(1.02);
}

/* SMALL IMAGES */
.small-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.small-images img {
    width: 100%;
    border-radius: 10px;
}

/* IMAGE TEXT */
.card p {
    margin-top: 10px;
    font-size: 14px;
    color: #cbd5f5;
}

/* LINKS */
.links {
    padding: 60px 20px;
    text-align: center;
}

.link-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.link-box a {
    padding: 15px 25px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.link-box a:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(59,130,246,0.5);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #020617;
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .big-image {
        width: 90%;
    }

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