
:root{
    --bg: #0b0d10;
    --surface: #0f1217;
    --surface-2: #121723;
    --text: #f5f7ff;
    --muted: rgba(245,247,255,0.72);
    --border: rgba(245,247,255,0.10);
    --border-2: rgba(245,247,255,0.16);
    --link: #f5f7ff;
    --shadow: 0 10px 30px rgba(0,0,0,0.35);
}



html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    background: var(--bg);
    color: var(--text);
}


.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 72px 0;
}

.section-head {
    margin-bottom: 24px;
}

.section-title {
    margin: 0 0 10px 0;
    font-size: 34px;
    line-height: 1.15;
}

.section-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    max-width: 760px;
}

.grid {
    display: grid;
    gap: 16px;
}

.value-grid,
.proof-grid,
.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
}


.card-title {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.card-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.card-link {
    display: inline-block;
    margin-top: 12px;
    text-decoration: none;
}

.hero-kicker {
    margin: 0 0 10px 0;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
}

.hero-title {
    margin: 0 0 14px 0;
    font-size: 44px;
    line-height: 1.05;
    max-width: 920px;
}

.hero-subtitle {
    margin: 0 0 18px 0;
    font-size: 16px;
    line-height: 1.7;
    max-width: 760px;
    opacity: 0.9;
}

.hero-actions,
.section-actions,
.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-2);
    text-decoration: none;
    color: var(--text);
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
}


.btn:hover {
    opacity: 0.85;
}

.btn-ghost {
    border-color: var(--border);
    color: var(--text);
    opacity: 0.9;
}


.btn-small {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
}

.cta-inner {
    border: 1px solid #e7e7e7;
    border-radius: 18px;
    padding: 22px;
    background: #ffffff;
}

.cta-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    line-height: 1.15;
}

.cta-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    max-width: 760px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 13, 16, 0.72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111111;
    font-weight: 700;
}

.logo-mark {
    width: 14px;
    height: 14px;
    border-radius: 5px;
    border: 1px solid var(--border-2);
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
}


.logo-text {
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.site-nav .menu {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav .menu a {
    text-decoration: none;
    color: #111111;
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 10px;
}

.site-nav .menu a:hover {
    background: rgba(255,255,255,0.06);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 18px 0;
    background: rgba(15, 18, 23, 0.6);
}


.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (max-width: 900px) {
    .value-grid,
    .proof-grid,
    .services-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .hero-title {
        font-size: 36px;
    }

    .header-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px 0;
    }

    .site-nav .menu {
        flex-wrap: wrap;
        gap: 8px;
    }

    .site-nav .menu a {
        padding: 8px 10px;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}








/* Services pages */

.services-archive .section-head {
    margin-bottom: 32px;
}

.service-card h2 {
    font-size: 20px;
}

.service-single .service-header {
    margin-bottom: 24px;
}

.service-title {
    font-size: 42px;
    line-height: 1.1;
    margin: 0 0 12px 0;
}

.service-intro {
    font-size: 16px;
    line-height: 1.6;
    max-width: 760px;
    opacity: 0.9;
}

.service-single .content {
    max-width: 760px;
}

.service-single .content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-cta {
    margin-top: 48px;
}
.section-text,
.hero-subtitle,
.card-text,
.cta-text,
.service-intro {
    color: var(--muted);
}

