:root {
    --ink: #08090b;
    --ink-2: #0e1014;
    --panel: #13161c;
    --panel-2: #1a1e26;
    --line: rgba(197, 205, 214, 0.12);
    --red: #c8102e;
    --red-hot: #e31c3d;
    --red-dim: rgba(200, 16, 46, 0.16);
    --silver: #c5cdd6;
    --muted: #8b93a0;
    --white: #f4f6f8;
    --radius: 14px;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --header-h: 82px;
    --topbar-h: 36px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: Inter, system-ui, sans-serif;
    background: var(--ink);
    color: var(--white);
    line-height: 1.65;
    min-height: 100vh;
    font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }
svg { display: block; }

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.topbar {
    background: #050608;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--muted);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar a:hover { color: var(--white); }
.dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--red); display: inline-block;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8, 9, 11, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    height: var(--header-h);
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.brand img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--line);
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-text strong {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.1em;
}
.brand-text em {
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.32em;
    color: var(--red);
    margin-top: 5px;
    font-weight: 600;
}
.nav {
    display: flex;
    gap: 22px;
    margin-left: auto;
    font-size: 14px;
    font-weight: 500;
}
.nav a { color: var(--silver); position: relative; padding: 6px 0; }
.nav a:hover, .nav a.active { color: var(--white); }
.nav a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--red);
}
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: 12px; }
.menu-toggle {
    display: none;
    width: 42px; height: 42px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span {
    display: block; width: 16px; height: 2px; background: var(--white);
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--white);
    display: inline-grid;
    place-items: center;
    transition: 0.2s ease;
    flex-shrink: 0;
    cursor: pointer;
    appearance: none;
}
.icon-btn:hover {
    border-color: var(--red);
    color: #fff;
    transform: translateY(-1px);
    background: var(--panel-2);
}
.icon-btn-wa { background: #1f8f46; border-color: #1f8f46; color: #fff; }
.icon-btn-wa:hover { background: #25d366; border-color: #25d366; }
.icon-btn-red { background: var(--red); border-color: var(--red); color: #fff; }
.icon-btn-red:hover { background: var(--red-hot); border-color: var(--red-hot); }

.icon-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 22px;
    align-items: center;
}
.icon-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--silver);
}
.icon-action:hover { color: var(--white); }
.icon-action .icon-btn { width: 52px; height: 52px; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--silver);
}
.text-link:hover { color: var(--white); }
.text-link svg { display: inline-block; }

.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h) - var(--topbar-h));
    display: grid;
    place-items: end start;
    overflow: hidden;
}
.hero img.hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero::after {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(8,9,11,0.92) 0%, rgba(8,9,11,0.55) 48%, rgba(8,9,11,0.25) 100%),
        linear-gradient(180deg, transparent 50%, rgba(8,9,11,0.85) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 0 72px;
    max-width: 720px;
}
.kicker {
    color: var(--red);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 16px;
}
h1, h2, h3, h4 {
    font-family: Inter, sans-serif;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
}
h1 { font-size: clamp(36px, 5.6vw, 68px); }
h2 { font-size: clamp(28px, 3.4vw, 42px); }
h3 { font-size: 20px; letter-spacing: -0.02em; }
h4 { font-size: 15px; letter-spacing: 0; font-weight: 700; }
.lead {
    color: var(--silver);
    font-size: 17px;
    max-width: 54ch;
    margin: 16px 0 28px;
    font-weight: 400;
}
.hero-meta {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    color: var(--silver);
    font-size: 12px;
    font-weight: 500;
}
.hero-meta strong {
    display: block;
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section { padding: 88px 0; }
.section-alt { background: var(--ink-2); }
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 40px;
}
.section-head p { color: var(--muted); max-width: 46ch; }
.muted { color: var(--muted); }

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--ink-2);
}
.stat {
    padding: 28px 24px;
    border-right: 1px solid var(--line);
    text-align: center;
}
.stat:last-child { border-right: 0; }
.stat b {
    display: block;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--white);
}
.stat span { color: var(--muted); font-size: 12px; font-weight: 500; }

.services-grid, .cards, .gallery-grid, .why-grid, .process-grid, .blog-grid, .faq-grid, .feature-grid {
    display: grid;
    gap: 18px;
}
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.25s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 16, 46, 0.45);
    box-shadow: var(--shadow);
}
.service-card img { height: 210px; width: 100%; object-fit: cover; }
.service-card .body { padding: 22px; }
.service-card h3 { margin: 10px 0 8px; }
.service-card p { color: var(--muted); font-size: 15px; }
.service-card ul { margin-top: 14px; color: var(--silver); font-size: 14px; }
.service-card li { padding: 4px 0 4px 14px; position: relative; }
.service-card li::before {
    content: "";
    position: absolute; left: 0; top: 12px;
    width: 6px; height: 6px; background: var(--red);
}
.card-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--red-dim);
    color: var(--red-hot);
    display: grid;
    place-items: center;
    margin-bottom: 4px;
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse img { order: 2; }
.split img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.check-list { margin: 8px 0 22px; }
.check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--silver);
    padding: 7px 0;
    font-size: 15px;
}
.check-list svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }

.why-grid { grid-template-columns: repeat(3, 1fr); }
.feature-grid { grid-template-columns: repeat(4, 1fr); }
.why-card, .feature-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
}
.why-card p, .feature-card p { color: var(--muted); margin-top: 8px; font-size: 14px; }

.process-grid { grid-template-columns: repeat(4, 1fr); }
.process-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
}
.process-card .step {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 14px;
}

.brands {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.brand-chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--silver);
    background: var(--panel);
}

.reviews {
    background:
        radial-gradient(circle at 10% 20%, var(--red-dim), transparent 40%),
        var(--ink-2);
}
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
}
.stars { color: var(--red); letter-spacing: 2px; margin-bottom: 12px; display: flex; gap: 4px; }
.review p { color: var(--silver); }
.review cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
}

.faq-grid { grid-template-columns: 1fr 1fr; }
details.faq {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 20px;
}
details.faq summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq p { color: var(--muted); margin-top: 12px; font-size: 14px; }
details.faq[open] summary { color: var(--white); }

.cta-band {
    background: linear-gradient(120deg, #1a050a, #111318 45%, #0e1014);
    border-block: 1px solid var(--line);
}
.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.page-hero {
    padding: 72px 0 48px;
    background:
        linear-gradient(180deg, rgba(200,16,46,0.12), transparent 70%),
        var(--ink-2);
    border-bottom: 1px solid var(--line);
}

.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.gallery-grid .wide { grid-column: span 2; height: 320px; }
.gallery-grid .tall { height: 320px; }

.blog-grid { grid-template-columns: repeat(3, 1fr); }
.blog-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.25s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 16, 46, 0.4);
}
.blog-card img { height: 200px; width: 100%; object-fit: cover; }
.blog-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-meta {
    display: flex;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 10px;
}
.blog-card p { color: var(--muted); font-size: 14px; margin: 10px 0 18px; flex: 1; }
.blog-featured {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 22px;
}
.blog-featured img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.blog-featured .body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.article {
    width: min(760px, calc(100% - 40px));
    margin: 0 auto;
    padding: 48px 0 80px;
}
.article img.cover {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 24px 0 32px;
    border: 1px solid var(--line);
}
.article p { color: var(--silver); margin: 0 0 18px; font-size: 17px; }
.article-meta { display: flex; gap: 16px; color: var(--muted); font-size: 13px; font-weight: 600; }

.timeline { display: grid; gap: 0; }
.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.timeline-item b { color: var(--red); font-size: 13px; }

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 32px;
}
.contact-card, .form {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}
.contact-row {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .icon-btn { width: 38px; height: 38px; }
.contact-row b { display: block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin: 0 0 8px; }
input, select, textarea {
    width: 100%;
    background: var(--ink);
    border: 1px solid var(--line);
    color: var(--white);
    border-radius: 8px;
    padding: 13px 14px;
    margin-bottom: 16px;
    outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--red); }
textarea { min-height: 140px; resize: vertical; }
.alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
}
.alert-ok { background: rgba(34, 197, 94, 0.12); color: #86efac; }
.alert-err { background: var(--red-dim); color: #fecaca; }
.map-wrap {
    margin-top: 28px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 360px;
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; filter: grayscale(0.3) contrast(1.05); }
.form-submit { display: flex; align-items: center; gap: 12px; }
.form-submit span { font-size: 13px; font-weight: 600; color: var(--silver); }

.site-footer {
    background: #050608;
    border-top: 1px solid var(--line);
    padding: 56px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
}
.footer-brand { margin-bottom: 16px; }
.footer-about, .site-footer p { color: var(--muted); }
.site-footer h4 { margin-bottom: 14px; }
.site-footer li { margin: 8px 0; color: var(--silver); }
.site-footer a:hover { color: var(--white); }
.socials { display: flex; gap: 8px; margin-top: 18px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    z-index: 60;
}
.wa-float:hover { transform: scale(1.06); }

.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pill {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    color: var(--silver);
}
.more-row { margin-top: 28px; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 14px; font-weight: 600; }

@media (max-width: 980px) {
    .nav {
        display: none;
        position: absolute;
        top: calc(var(--header-h) + var(--topbar-h));
        left: 0; right: 0;
        background: #0b0d12;
        flex-direction: column;
        padding: 20px 24px 28px;
        border-bottom: 1px solid var(--line);
        gap: 16px;
    }
    .nav.open { display: flex; }
    .menu-toggle { display: flex; }
    .header-actions .icon-btn:nth-child(n+3) { display: none; }
    .menu-toggle { display: flex; }
    .services-grid, .why-grid, .review-grid, .gallery-grid, .stats, .split, .contact-grid, .footer-grid, .form-row, .service-list, .process-grid, .blog-grid, .faq-grid, .feature-grid, .blog-featured, .timeline-item {
        grid-template-columns: 1fr;
    }
    .split.reverse img { order: 0; }
    .gallery-grid .wide { grid-column: auto; height: 220px; }
    .stats .stat { border-right: 0; border-bottom: 1px solid var(--line); }
    .cta-inner, .section-head, .topbar-inner, .footer-bottom { flex-direction: column; align-items: flex-start; }
    .hero { min-height: 78vh; }
    .hero-content { padding: 56px 0 48px; max-width: 100%; }
    h1 { font-size: clamp(32px, 10vw, 46px); }
    .split img, .article img.cover, .blog-featured img { height: 280px; min-height: 0; }
    .topbar { display: none; }
    .brand-text strong { font-size: 16px; }
    .brand img { width: 48px; height: 48px; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
}
