:root {
    --bg: #0f1115;
    --bg-soft: #171a21;
    --card: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.12);
    --text: #f4f6f8;
    --muted: #b8c0cc;
    --accent: #d7a34d;
    --accent-2: #7d8797;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius: 22px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(215, 163, 77, 0.10), transparent 35%),
        linear-gradient(180deg, #0c0e12 0%, #11151b 100%);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 40px, var(--max));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 17, 21, 0.7);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
}

.logo {
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.nav nav {
    display: flex;
    gap: 26px;
}

.nav nav a {
    color: var(--muted);
    font-size: 0.96rem;
    transition: 0.25s ease;
}

.nav nav a:hover {
    color: var(--white);
}

.hero {
    padding: 90px 0 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 14px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 0.82rem;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1.02;
    max-width: 12ch;
}

.lead {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 62ch;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--accent);
    color: #111;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(215, 163, 77, 0.28);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    inset: auto -60px -60px auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(215, 163, 77, 0.35), transparent 70%);
    pointer-events: none;
}

.hero-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.35rem;
}

.hero-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.hero-card li+li {
    margin-top: 10px;
}

.section {
    padding: 80px 0;
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading h2,
.about-grid h2,
.contact-box h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3.3vw, 3rem);
    line-height: 1.1;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(215, 163, 77, 0.35);
}

.icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.section-dark {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: start;
}

.about-grid p {
    color: var(--muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-box {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.stat-box span {
    color: var(--muted);
}

.contact-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}

.contact-box p {
    color: var(--muted);
}

.contact-details {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px;
}

.contact-details p {
    margin: 0 0 12px;
}

.site-footer {
    padding: 26px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    font-size: 0.92rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
}

@media (max-width: 980px) {

    .hero-grid,
    .about-grid,
    .contact-box,
    .cards,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        max-width: 100%;
    }
}

@media (max-width: 680px) {
    .nav {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding: 14px 0;
    }

    .nav nav {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding-top: 60px;
    }

    .section {
        padding: 64px 0;
    }

    .footer-content {
        flex-direction: column;
    }
}