:root {
    --bg: #020507;
    --bg-2: #071018;
    --panel: rgba(8, 17, 24, .82);
    --panel-2: rgba(3, 8, 12, .9);
    --line: rgba(255, 106, 0, .38);
    --line-2: rgba(255, 106, 0, .18);
    --orange: #ff6a00;
    --orange-2: #ff9d33;
    --green: #33d17a;
    --cyan: #35d4ff;
    --text: #f6f8fb;
    --muted: #a8b3bf;
    --dim: #667481;
    --radius: 8px;
    --shadow: 0 0 28px rgba(255, 106, 0, .3);
    --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0;
}
body::before {
    background:
        radial-gradient(circle at 78% 9%, rgba(255, 106, 0, .16), transparent 26%),
        radial-gradient(circle at 13% 42%, rgba(53, 212, 255, .07), transparent 24%),
        linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
    background-size: auto, auto, 64px 64px, 64px 64px;
    content: "";
    inset: 0;
    pointer-events: none;
    position: fixed;
    z-index: -2;
}
body::after {
    background: linear-gradient(180deg, rgba(2, 5, 7, .1), #020507 86%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: fixed;
    z-index: -1;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
svg { fill: currentColor; }
.container { margin: 0 auto; width: var(--container); }
.sr-only {
    border: 0; clip: rect(1px, 1px, 1px, 1px); height: 1px; margin: -1px;
    overflow: hidden; padding: 0; position: absolute; width: 1px;
}

.site-header {
    backdrop-filter: blur(18px);
    background: rgba(2, 5, 7, .9);
    border-bottom: 1px solid rgba(255,255,255,.07);
    left: 0;
    position: sticky;
    right: 0;
    top: 0;
    z-index: 100;
}
.header-shell {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: auto 1fr auto;
    margin: 0 auto;
    min-height: 76px;
    width: var(--container);
}
.brand { align-items: center; display: inline-flex; min-width: max-content; }
.site-header .brand img {
    display: block;
    filter: drop-shadow(0 0 12px rgba(255, 106, 0, .18));
    height: auto;
    width: clamp(240px, 24vw, 320px);
}
.primary-nav { justify-self: center; }
.primary-nav ul {
    align-items: center;
    display: flex;
    gap: clamp(12px, 1.55vw, 22px);
    list-style: none;
    margin: 0;
    padding: 0;
}
.primary-nav li { position: relative; }
.primary-nav a {
    color: #d7dee6;
    display: block;
    font-size: .9rem;
    font-weight: 700;
    padding: 30px 0 27px;
    position: relative;
    white-space: nowrap;
}
.primary-nav > ul > li > a.active,
.primary-nav > ul > li > a:hover { color: #fff; }
.primary-nav > ul > li > a.active::after,
.primary-nav > ul > li > a:hover::after {
    background: var(--orange);
    box-shadow: 0 0 12px rgba(255,106,0,.8);
    content: "";
    height: 2px;
    inset: auto 0 -1px;
    position: absolute;
}
.has-menu > a::before {
    border-color: currentColor transparent transparent;
    border-style: solid;
    border-width: 4px 4px 0;
    content: "";
    position: absolute;
    right: -13px;
    top: 50%;
}
.has-menu ul {
    background: rgba(3, 8, 12, .98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(0,0,0,.55), var(--shadow);
    display: grid;
    left: 50%;
    min-width: 210px;
    opacity: 0;
    padding: 10px;
    pointer-events: none;
    position: absolute;
    top: calc(100% - 8px);
    transform: translate(-50%, 10px);
    transition: opacity .16s ease, transform .16s ease;
}
.has-menu:hover ul,
.has-menu:focus-within ul { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.has-menu ul a { border-radius: 6px; font-size: .82rem; padding: 10px 12px; }
.has-menu ul a:hover { background: rgba(255,106,0,.12); }
.header-cta, .btn, .newsletter button {
    align-items: center;
    background: linear-gradient(135deg, #ff6a00, #ff8f28);
    border: 1px solid rgba(255,210,168,.36);
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(255,106,0,.25);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-weight: 900;
    gap: 10px;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.header-cta:hover, .btn:hover, .newsletter button:hover { box-shadow: 0 0 30px rgba(255,106,0,.55); transform: translateY(-2px); }
.btn.ghost {
    background: rgba(8, 17, 24, .72);
    border-color: rgba(255,106,0,.34);
}
.nav-toggle {
    background: transparent;
    border: 0;
    color: #fff;
    display: none;
    height: 42px;
    padding: 8px;
    width: 42px;
}
.nav-toggle span { background: currentColor; display: block; height: 2px; margin: 6px 0; width: 24px; }
.nav-toggle b { display: none; }

.hero {
    background:
        radial-gradient(circle at 64% 48%, rgba(255,106,0,.22), transparent 24%),
        linear-gradient(180deg, rgba(3,8,12,.1), rgba(3,8,12,.94));
    overflow: hidden;
    padding: clamp(34px, 5vw, 62px) 0 clamp(26px, 4vw, 44px);
    position: relative;
}
.particle-field {
    background:
        radial-gradient(circle, rgba(255,106,0,.9) 0 2px, transparent 3px),
        linear-gradient(115deg, transparent 0 48%, rgba(255,106,0,.14) 49% 51%, transparent 52%);
    background-size: 82px 82px, 100% 100%;
    inset: 0;
    opacity: .32;
    position: absolute;
}
.particle-field i {
    animation: dot-drift 6s ease-in-out infinite;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(255,106,0,.82);
    height: 3px;
    position: absolute;
    width: 3px;
}
.hero-grid {
    align-items: center;
    display: grid;
    gap: clamp(28px, 5vw, 64px);
    grid-template-columns: minmax(410px, .9fr) minmax(460px, 1.1fr);
    position: relative;
    z-index: 1;
}
.kicker {
    color: var(--orange);
    font-size: .76rem;
    font-weight: 1000;
    letter-spacing: 2.4px;
    margin: 0 0 12px;
    text-transform: uppercase;
}
.hero h1, .section h2, .trust h2, .contact-section h2, .inner-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.7rem);
    letter-spacing: 0;
    line-height: .98;
    margin: 0;
}
.hero h1 span, .contact-section h2 span {
    color: var(--orange);
    display: block;
    text-shadow: 0 0 22px rgba(255,106,0,.32);
}
.hero-copy > p:not(.kicker), .section-head > p, .product-copy p, .trust p, .contact-list, .site-footer p {
    color: var(--muted);
    line-height: 1.72;
}
.hero-copy > p:not(.kicker) { max-width: 610px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.trust-row {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 36px;
}
.trust-row span {
    align-items: center;
    color: #dce3ea;
    display: flex;
    font-size: .84rem;
    font-weight: 800;
    gap: 9px;
}
.trust-row svg {
    background: rgba(255,106,0,.12);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--orange);
    flex: 0 0 auto;
    height: 32px;
    padding: 7px;
    width: 32px;
}
.hero-visual img {
    filter: drop-shadow(0 0 34px rgba(255,106,0,.24));
    height: auto;
    max-width: 100%;
    width: min(100%, 690px);
}

.section { padding: clamp(38px, 5vw, 70px) 0; }
.section-head {
    align-items: end;
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr minmax(280px, .62fr);
    margin-bottom: 34px;
}
.section h2, .center-head h2, .trust h2, .contact-section h2, .process h2 { font-size: clamp(2rem, 3.5vw, 3.1rem); line-height: 1.07; }
.service-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.service-card, .product-block, .stats-grid article, .contact-form, .process-line article {
    background: linear-gradient(145deg, rgba(10,20,28,.86), rgba(4,9,13,.8));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 0 0 rgba(255,106,0,0);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover, .product-block:hover, .stats-grid article:hover {
    border-color: rgba(255,130,36,.8);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}
.service-card { min-height: 220px; padding: 22px; position: relative; }
.card-icon { color: var(--orange); height: 52px; margin-bottom: 18px; width: 52px; }
.service-card h3 { font-size: 1.08rem; line-height: 1.2; margin: 0 0 12px; }
.service-card p { color: var(--muted); font-size: .91rem; line-height: 1.58; margin: 0 0 28px; }
.service-card > a { bottom: 18px; color: var(--orange); font-size: 1.45rem; font-weight: 1000; position: absolute; right: 20px; }
.center-head { margin-bottom: 26px; text-align: center; }

.product-block {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(300px, .78fr) minmax(420px, 1fr);
    margin-top: 24px;
    overflow: hidden;
    padding: clamp(24px, 3vw, 34px);
    position: relative;
}
.product-block::before {
    background: linear-gradient(90deg, transparent, rgba(255,106,0,.68), transparent);
    content: "";
    height: 1px;
    left: 22px;
    position: absolute;
    right: 22px;
    top: 0;
}
.product-block.reverse { grid-template-columns: minmax(420px, 1fr) minmax(300px, .78fr); }
.product-block.reverse .product-copy { order: 2; }
.product-copy h3 { font-size: clamp(1.65rem, 2.6vw, 2.45rem); line-height: 1.08; margin: 0 0 12px; }
.product-copy h3 small { color: #f7f9fb; font-size: .6em; font-weight: 700; }
.product-subtitle { color: var(--orange-2) !important; font-size: 1.08rem; font-weight: 900; margin: 0 0 8px; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 24px; }
.pill-grid span {
    align-items: center;
    background: rgba(255,106,0,.07);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: #e8eef5;
    display: inline-flex;
    font-size: .82rem;
    font-weight: 800;
    gap: 7px;
    min-height: 34px;
    padding: 7px 10px;
}
.pill-grid svg { color: var(--orange); height: 16px; width: 16px; }
.product-media {
    align-items: center;
    background: rgba(3,8,12,.6);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    display: flex;
    margin: 0;
    overflow: hidden;
}
.product-media img { height: auto; width: 100%; }

.trust-grid { align-items: center; display: grid; gap: 36px; grid-template-columns: minmax(280px, .6fr) 1fr; }
.stats-grid { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.stats-grid article { min-height: 160px; padding: 24px; text-align: center; }
.stats-grid svg { color: var(--orange); height: 46px; margin: 0 auto 14px; width: 46px; }
.stats-grid strong { display: block; font-size: 2rem; }
.stats-grid span { color: var(--muted); font-size: .88rem; line-height: 1.4; }

.process { padding: 20px 0 70px; }
.process h2 { margin: 0 0 26px; text-align: center; }
.process-line { display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-line::before {
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    content: "";
    height: 1px;
    left: 8%;
    position: absolute;
    right: 8%;
    top: 38px;
}
.process-line article { padding: 22px; position: relative; text-align: center; z-index: 1; }
.process-line strong {
    align-items: center;
    background: linear-gradient(135deg, #4f2108, #ff6a00);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    width: 48px;
}
.process-line h3 { font-size: 1rem; margin: 14px 0 8px; }
.process-line p { color: var(--muted); font-size: .88rem; line-height: 1.55; margin: 0; }

.contact-section { padding: 30px 0 64px; position: relative; }
.contact-section::after {
    background: linear-gradient(90deg, transparent, rgba(255,106,0,.95));
    bottom: 30px;
    content: "";
    height: 2px;
    position: absolute;
    right: 0;
    width: 34%;
}
.contact-section.standalone { padding-top: 70px; }
.contact-grid { align-items: start; display: grid; gap: 34px; grid-template-columns: minmax(260px, .55fr) 1fr; }
.contact-list { list-style: none; margin: 26px 0 0; padding: 0; }
.contact-list li { margin: 12px 0; padding-left: 26px; position: relative; }
.contact-list li::before {
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255,106,0,.6);
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    top: .65em;
    width: 10px;
}
.contact-form { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; padding: 20px; }
.contact-form label { display: grid; gap: 7px; }
.contact-form span { color: var(--muted); font-size: .78rem; font-weight: 800; }
.contact-form input, .contact-form textarea, .newsletter input {
    background: rgba(2,7,11,.72);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    color: #fff;
    font: inherit;
    outline: none;
    padding: 13px 14px;
    transition: border-color .18s ease, box-shadow .18s ease;
    width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus, .newsletter input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,106,0,.16);
}
.wide, .contact-form button, .form-message { grid-column: 1 / -1; }
.contact-form button { justify-self: center; min-width: 190px; }
.form-message {
    border-radius: var(--radius);
    font-weight: 800;
    padding: 12px 14px;
}
.form-message.success { background: rgba(51,209,122,.12); border: 1px solid rgba(51,209,122,.4); color: #aaf0ca; }
.form-message.error { background: rgba(255,80,80,.12); border: 1px solid rgba(255,80,80,.4); color: #ffd0d0; }

.inner-hero {
    background:
        radial-gradient(circle at 70% 20%, rgba(255,106,0,.18), transparent 28%),
        linear-gradient(180deg, rgba(3,8,12,.4), rgba(3,8,12,.96));
    padding: 86px 0 58px;
}
.inner-hero h1 { max-width: 820px; }
.inner-hero p:not(.kicker) { color: var(--muted); max-width: 680px; }

.site-footer {
    background: linear-gradient(180deg, rgba(5,12,18,.98), #020507);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 42px 0;
}
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1.35fr .7fr .85fr 1fr; margin: 0 auto; width: var(--container); }
.footer-brand {
    margin-bottom: 20px;
    max-width: 320px;
}
.footer-brand img {
    display: block;
    filter: drop-shadow(0 0 18px rgba(255, 106, 0, .2));
    height: auto;
    max-width: 100%;
    width: 320px;
}
.site-footer h2 { font-size: 1rem; margin: 0 0 15px; }
.site-footer a, .site-footer p { color: var(--muted); display: block; font-size: .92rem; line-height: 1.65; }
.site-footer a:hover { color: var(--orange); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
    align-items: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    display: inline-flex;
    font-size: .78rem;
    height: 32px;
    justify-content: center;
    width: 32px;
}
.newsletter { display: flex; gap: 9px; margin-top: 14px; }
.newsletter button { border-radius: var(--radius); min-height: 43px; padding-inline: 16px; }

@media (max-width: 1180px) {
    .header-shell { grid-template-columns: auto auto 1fr; }
    .nav-toggle { display: block; justify-self: end; }
    .primary-nav {
        background: rgba(4,9,13,.97);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        display: none;
        grid-column: 1 / -1;
        justify-self: stretch;
        padding: 14px;
    }
    .primary-nav.open { display: block; }
    .primary-nav ul { align-items: stretch; flex-direction: column; gap: 0; }
    .primary-nav a { padding: 13px 8px; }
    .has-menu ul {
        background: rgba(255,106,0,.05);
        border-color: rgba(255,106,0,.18);
        box-shadow: none;
        left: auto;
        min-width: 0;
        opacity: 1;
        padding: 4px 0 8px 14px;
        pointer-events: auto;
        position: static;
        transform: none;
    }
    .header-cta { justify-self: end; }
    .product-block, .product-block.reverse, .trust-grid, .contact-grid { grid-template-columns: 1fr; }
    .product-block.reverse .product-copy { order: 0; }
    .hero-grid { grid-template-columns: minmax(0, .85fr) minmax(340px, 1fr); }
    .service-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    :root { --container: min(100vw - 28px, 640px); }
    .header-shell { gap: 12px; grid-template-columns: 1fr auto; min-height: 64px; }
    .site-header .brand img { width: 220px; }
    .header-cta { display: none; }
    .hero { padding: 24px 0 22px; }
    .hero-grid { gap: 18px; grid-template-columns: 1fr; }
    .hero h1 { font-size: clamp(2.05rem, 11.5vw, 3.05rem); line-height: .9; }
    .hero-copy > p:not(.kicker) { font-size: .86rem; line-height: 1.5; margin-top: 14px; }
    .hero-actions, .trust-row { margin-top: 20px; }
    .hero-visual { margin: 0 auto; width: min(100%, 310px); }
    .hero-visual img { width: 100%; }
    .trust-row, .section-head, .service-grid, .process-line, .footer-grid, .contact-form { grid-template-columns: 1fr; }
    .trust-row span { font-size: .78rem; }
    .trust-row svg { height: 28px; padding: 6px; width: 28px; }
    .section { padding: 34px 0; }
    .section h2, .center-head h2, .trust h2, .contact-section h2, .process h2 { font-size: 1.85rem; }
    .service-card { min-height: 0; }
    .product-block { padding: 18px; }
    .product-copy h3 { font-size: 1.55rem; }
    .product-copy h3 small { display: block; margin-top: 4px; }
    .product-subtitle { font-size: .98rem; }
    .product-media img { min-height: 190px; object-fit: cover; }
    .process-line::before { display: none; }
    .newsletter { flex-direction: column; }
}

@media (max-width: 460px) {
    .hero-actions, .btn { width: 100%; }
    .hero-visual { width: min(100%, 278px); }
    .stats-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}

@keyframes dot-drift {
    0%, 100% { opacity: .18; transform: translateY(0); }
    50% { opacity: .95; transform: translateY(-18px); }
}
