﻿
:root {
    --bg: #020617;
    --panel: #020617;
    --panel-soft: #050816;
    --border: rgba(148,163,184,.35);
    --text: #e5e7eb;
    --muted: #94a3b8;
    --accent: #3b82f6;
    --accent-soft: #60a5fa;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter',system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    background: #020617;
    color: var(--text);
    line-height: 1.5;
}

.page-wrap {
    max-width: 1180px;
    margin: 40px auto;
    padding: 0 18px 60px;
}

/* HEADER */
header.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 20px;
}

    .brand img {
        width: 40px;
        height: 40px;
        border-radius: 999px;
    }

nav a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 22px;
    font-size: 14px;
}

    nav a:hover {
        color: #e5e7eb;
    }

.btn-header {
    padding: 9px 18px;
    border-radius: 999px;
    border: none;
    background: var(--accent);
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* PANEL (TOP BLOCK) */
.glass-panel {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,.45);
    background: radial-gradient(circle at top,rgba(59,130,246,.18),transparent 55%), linear-gradient(to bottom right,#020617,#020617);
    box-shadow: 0 40px 80px rgba(15,23,42,.8);
    margin-bottom: 28px;
}

.hero-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 360px;
}

.hero-copy {
    padding: 32px 32px 26px;
}

    .hero-copy h1 {
        font-size: 32px;
        margin-bottom: 10px;
        letter-spacing: .01em;
    }

    .hero-copy p {
        font-size: 14px;
        color: var(--muted);
        max-width: 460px;
    }

.hero-cta-row {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.btn-primary,
.btn-ghost {
    padding: 11px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    border-color: var(--accent);
    background: linear-gradient(to right,#2563eb,#4f46e5);
    color: white;
    box-shadow: 0 10px 30px rgba(59,130,246,.6);
}

.btn-ghost {
    border-color: var(--border);
    background: rgba(15,23,42,.85);
    color: var(--muted);
}

.hero-image {
    position: relative;
    overflow: hidden;
}

    .hero-image::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left,rgba(37,99,235,.6),transparent 55%), radial-gradient(circle at bottom right,rgba(139,92,246,.6),transparent 55%);
        mix-blend-mode: screen;
        opacity: .75;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: saturate(1.15) contrast(1.05);
    }

/* STATS BAR */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid rgba(148,163,184,.45);
    background: linear-gradient(to right,#020617,#020617);
}

.stat-item {
    padding: 18px 32px;
    border-right: 1px solid rgba(148,163,184,.32);
}

    .stat-item:last-child {
        border-right: none;
    }

    .stat-item strong {
        display: block;
        font-size: 20px;
        margin-bottom: 4px;
    }

    .stat-item span {
        font-size: 12px;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .14em;
    }

/* SECOND PANEL */
.section-panel {
    border-radius: 18px;
    border: 1px solid rgba(148,163,184,.45);
    background: radial-gradient(circle at top,rgba(59,130,246,.18),transparent 55%), linear-gradient(to bottom right,#020617,#020617);
    box-shadow: 0 32px 70px rgba(15,23,42,.85);
    padding: 26px 30px 28px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    margin-bottom: 24px;
}

.kicker {
    font-size: 12px;
    color: var(--accent-soft);
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-bottom: 6px;
}

.about-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 14px;
    color: var(--muted);
    max-width: 520px;
}

.about-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,.55);
}

    .about-image::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left,rgba(59,130,246,.5),transparent 55%);
        mix-blend-mode: screen;
        opacity: .65;
    }

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* OUR SERVICES */
.services-block {
    margin-top: 8px;
}

    .services-block h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .services-block p {
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 10px;
    }

.services-tags {
    font-size: 13px;
    color: #e5e7eb;
    margin-bottom: 22px;
}

/* CONTACT CARDS */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 6px;
}

.contact-card {
    background: rgba(15,23,42,.9);
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,.45);
    padding: 16px 18px 18px;
    font-size: 13px;
    color: #e5e7eb;
}

    .contact-card h4 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .contact-card p {
        color: var(--muted);
        margin-top: 4px;
    }

footer.site-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    padding-top: 12px;
    border-top: 1px solid rgba(148,163,184,.35);
}

/* RESPONSIVE */
@media (max-width:900px) {
    .hero-row,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        min-height: 260px;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(148,163,184,.32);
    }

        .stat-item:last-child {
            border-bottom: none;
        }
}

@media (max-width:600px) {
    .page-wrap {
        margin-top: 20px;
        padding-bottom: 40px;
    }

    header.site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    nav a {
        margin-left: 0;
        margin-right: 18px;
    }

    .hero-copy h1 {
        font-size: 26px;
    }
}


