* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f8fb;
    color: #172033;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    height: 70px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 25px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

    nav a {
        text-decoration: none;
        color: #4b5563;
        font-size: 15px;
    }

        nav a:hover {
            color: #2563eb;
        }

.dashboard-link {
    background: #2563eb;
    color: white !important;
    padding: 10px 16px;
    border-radius: 8px;
}

main {
    min-height: calc(100vh - 140px);
}

.hero {
    max-width: 1200px;
    margin: auto;
    padding: 110px 25px;
}

.hero-content {
    max-width: 700px;
}

.badge {
    display: inline-block;
    background: #e8f0ff;
    color: #2563eb;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.1;
    margin: 20px 0;
}

    .hero h1 span {
        color: #2563eb;
    }

.hero p {
    color: #64748b;
    font-size: 19px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    padding: 13px 20px;
    border-radius: 8px;
    text-decoration: none;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-secondary {
    background: white;
    color: #2563eb;
    border: 1px solid #dbe3ef;
}

.features {
    max-width: 1200px;
    margin: auto;
    padding: 0 25px 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card,
.contact-box,
.webhook-card,
.stat-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.feature-card {
    padding: 25px;
}

    .feature-card p {
        color: #64748b;
    }

.page-container {
    max-width: 1000px;
    margin: auto;
    padding: 60px 25px;
}

    .page-container h1 {
        font-size: 38px;
    }

    .page-container h2 {
        margin-top: 35px;
    }

    .page-container p {
        color: #64748b;
        line-height: 1.7;
    }

.contact-box {
    padding: 25px;
    margin-top: 30px;
}



.site-footer {
    min-height: 70px;
    padding: 20px 25px;
    border-top: 1px solid #e5e7eb;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 14px;
}

    .site-footer a {
        color: #64748b;
        text-decoration: none;
        margin-left: 20px;
    }

@media (max-width: 768px) {

    .navbar {
        height: auto;
        padding: 18px 20px;
        flex-direction: column;
        gap: 15px;
    }

    nav {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .features,
    .stats {
        grid-template-columns: 1fr;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .site-footer {
        flex-direction: column;
        gap: 15px;
    }
}
