*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #050505;
    color: #f5f5f5;
    line-height: 1.6;
}

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

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */

.site-header {
    background: #000;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo {
    height: 48px;
    width: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-phone span {
    font-size: 0.8rem;
    color: #bbb;
    margin-right: 0.4rem;
}

.header-phone a {
    font-weight: 600;
}

.main-nav {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.main-nav a {
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    border-color: #ff9b32;
}

/* Hero */

.hero {
    background: radial-gradient(circle at top left, #222 0, #050505 55%);
    padding: 4rem 0 3rem;
}

.hero-inner {
    display: flex;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.hero-subtitle {
    max-width: 40rem;
    color: #d0d0d0;
    margin-bottom: 1rem;
}

.hero-badge {
    display: inline-block;
    background: #1b1b1b;
    border-left: 4px solid #ff9b32;
    padding: 0.6rem 0.9rem;
    border-radius: 0.4rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.hero-note {
    max-width: 34rem;
    color: #b5b5b5;
    font-size: 0.95rem;
}

/* Sections */

.section {
    padding: 3rem 0;
}

.section-alt {
    background: #0c0c0c;
}

.section h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

/* Services */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.3rem;
}

.service-card {
    background: #101010;
    border-radius: 0.8rem;
    padding: 1.3rem;
    border: 1px solid #181818;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: #ffffff;
}

.service-card p {
    font-size: 0.92rem;
    color: #cccccc;
}

/* Contacts */

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: #101010;
    border-radius: 0.8rem;
    padding: 1.4rem;
    border: 1px solid #181818;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: #d0d0d0;
}

/* Footer */

.site-footer {
    background: #000;
    border-top: 1px solid #222;
    padding: 1rem 0 1.5rem;
    font-size: 0.85rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
    color: #9c9c9c;
}

.footer-note {
    color: #c0c0c0;
}

/* Responsive */

@media (max-width: 720px) {
    .header-inner {
        f
