:root {
    --bg: #0b0c10;
    --bg2: #0f1117;
    --card: #121522;
    --acc: #ff1e00;
    --acc2: #ff6033;
    --text: #e9edf1;
    --muted: #a4adb8;
    --border: rgba(255, 255, 255, .08);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    background:
        radial-gradient(900px 500px at 85% -10%, rgba(255, 30, 0, .12), transparent 60%),
        radial-gradient(900px 500px at 10% -15%, rgba(80, 110, 255, .10), transparent 55%),
        var(--bg);
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(180deg, rgba(11, 12, 16, .9), rgba(11, 12, 16, .6));
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(6px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .4px;
}

.brand img {
    width: 32px;
    height: 32px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: .92;
    border: 1px solid transparent;
}

.menu a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, .06);
    border-color: var(--border);
}

.btn-acc {
    background: linear-gradient(180deg, var(--acc), var(--acc2));
    border-radius: 12px;
    padding: 9px 14px;
    font-weight: 800;
}

.burger {
    display: none;
    cursor: pointer;
    user-select: none;
    font-size: 24px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
}

.drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: 86vw;
    max-width: 380px;
    background: #0f1117;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform .22s ease;
    z-index: 40;
    display: flex;
    flex-direction: column;
}

.drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.drawer-menu {
    display: flex;
    flex-direction: column;
    padding: 8px;
}

.drawer-menu a {
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
}

.drawer-menu a:hover {
    background: rgba(255, 255, 255, .06);
}

/* Hero */
.srv-list {
    display: grid;
    gap: 12px;
}

.srv-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
}

.srv-item .left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.srv-item .right {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ef4444;
}

.dot.ok {
    background: #22c55e;
}

.nums {
    font-weight: 800;
}

.bar {
    position: relative;
    height: 8px;
    background: #101420;
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
}

.bar i {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--acc), var(--acc2));
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center;
    padding: clamp(22px, 6vw, 64px) 0;
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .menu {
        display: none;
    }

    .burger {
        display: block;
    }
}

h1 {
    font-size: clamp(28px, 5.6vw, 48px);
    line-height: 1.08;
    margin: 8px 0 10px;
    font-weight: 800;
}

.subtitle {
    color: var(--muted);
    font-weight: 600;
    margin: 0 0 18px;
}

.kicker {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    font-weight: 700;
}

.row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.pill {
    padding: 10px 14px;
    background: #171a25;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}

.card h3 {
    margin: 0 0 8px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

@media (max-width: 900px) {
    .features {
        grid-template-columns: 1fr;
    }
}

.feature {
    background: #171a25;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
}

.feature b {
    display: block;
    margin-bottom: 4px;
}

.feature p {
    margin: 0;
    color: var(--muted);
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 900px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

.step {
    background: #171a25;
    border: 1px dashed var(--border);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.step small {
    color: var(--muted);
    display: block;
    margin-top: 3px;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 900px) {
    .gallery {
        grid-template-columns: 1fr 1fr;
    }
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #111;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    padding: 16px 0 36px;
    margin-top: 28px;
}

.hide {
    display: none !important;
}