        :root {
            --bg: #190930;
            --bg-alt: #241042;
            --accent: #ff7a00;
            --accent-soft: rgba(255, 122, 0, 0.15);
            --text: #f5f0ff;
            --muted: #c9bce9;
            --danger: #ff4b4b;
            --radius-lg: 18px;
            --radius-pill: 999px;
            --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
            --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: var(--font-body);
            background: radial-gradient(circle at top, #2a1350, var(--bg));
            color: var(--text);
            line-height: 1.5;
        }
        img { max-width: 100%; display: block; }
        a { color: inherit; text-decoration: none; }

        .page { min-height: 100vh; display: flex; flex-direction: column; }
        .container {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 20;
            backdrop-filter: blur(16px);
            background: linear-gradient(to bottom, rgba(9, 3, 20, 0.96), rgba(9, 3, 20, 0.7));
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 0;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .nav-logo-wrap {
            width: 46px;
            height: 46px;
            border-radius: 16px;
            background: radial-gradient(circle at 30% 20%, #ffb15b, #ff7a00);
            padding: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-soft);
        }

        .nav-logo-inner {
            width: 100%;
            height: 100%;
            border-radius: 13px;
            background: #190930;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .nav-logo-inner img { width: 135%; }

        .nav-title { display: flex; flex-direction: column; }

        .nav-title span:first-child {
            font-weight: 700;
            letter-spacing: 0.08em;
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        .nav-title span:last-child {
            font-size: 0.8rem;
            color: var(--muted);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.3rem;
            font-size: 0.95rem;
        }

        .nav-links a {
            position: relative;
            padding-bottom: 2px;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            width: 0;
            background: var(--accent);
            border-radius: 99px;
            transition: width 160ms ease-out;
        }

        .nav-links a:hover::after { width: 100%; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.65rem 1.4rem;
            border-radius: var(--radius-pill);
            border: 1px solid transparent;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            background: var(--accent);
            color: #1a0724;
            box-shadow: var(--shadow-soft);
            transition: transform 120ms ease-out, box-shadow 120ms ease-out, background 120ms ease-out;
        }

        .btn:hover {
            transform: translateY(-1px);
            background: #ff9740;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
        }

        .btn-outline {
            background: transparent;
            color: var(--text);
            border-color: rgba(255, 122, 0, 0.7);
            box-shadow: none;
        }

        .btn-outline:hover {
            background: var(--accent-soft);
            box-shadow: var(--shadow-soft);
        }

        .hero { padding: 4rem 0 3rem; }

        .hero-inner {
            display: grid;
            grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
            gap: 3rem;
            align-items: center;
        }

        .hero-kicker {
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-size: 0.75rem;
            color: var(--muted);
            margin-bottom: 0.8rem;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(2.1rem, 4vw, 2.7rem);
            line-height: 1.1;
            margin-bottom: 1.1rem;
        }

        .hero-title span { color: var(--accent); }

        .hero-subtitle {
            max-width: 33rem;
            color: var(--muted);
            margin-bottom: 1.5rem;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-bottom: 1.8rem;
        }

        .badge {
            padding: 0.5rem 0.9rem;
            border-radius: var(--radius-pill);
            font-size: 0.75rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(9, 3, 20, 0.6);
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
        }

        .badge-dot {
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: var(--accent);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .hero-right { display: flex; align-items: center; justify-content: center; }

        .hero-card {
            position: relative;
            padding: 1.8rem 1.9rem 1.5rem;
            border-radius: 26px;
            background: radial-gradient(circle at top left, #302064, #15071f 55%, #0c0217 100%);
            box-shadow: var(--shadow-soft);
            max-width: 360px;
            width: 100%;
        }

        .hero-card-logo { display: flex; justify-content: center; margin-bottom: 1.2rem; }

        .hero-tagline {
            text-align: center;
            font-size: 0.85rem;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 1.2rem;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.8rem;
            font-size: 0.78rem;
        }

        .hero-grid-item {
            border-radius: 14px;
            padding: 0.7rem 0.75rem;
            background: rgba(15, 3, 30, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        .hero-grid-label {
            text-transform: uppercase;
            letter-spacing: 0.11em;
            font-size: 0.7rem;
            color: var(--muted);
            margin-bottom: 0.2rem;
        }

        .hero-grid-value { font-weight: 600; }

        main { flex: 1; }
        section { padding: 3.5rem 0; }

        .section-header { max-width: none; margin-bottom: 2rem; }

        .section-kicker {
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-size: 0.78rem;
            color: var(--muted);
            margin-bottom: 0.4rem;
        }

        .section-title { font-size: 1.6rem; margin-bottom: 0.6rem; }

        .section-description { color: var(--muted); font-size: 0.95rem; }

        .services { background: linear-gradient(to bottom, #140625, #0d0319); }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.4rem;
        }

        .service-card {
            border-radius: var(--radius-lg);
            padding: 1.5rem 1.4rem 1.4rem;
            background: radial-gradient(circle at top left, #261339, #12051f);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
            position: relative;
            overflow: hidden;
        }

        .service-pill {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.17em;
            color: var(--muted);
            margin-bottom: 0.5rem;
        }

        .service-title { font-size: 1.1rem; margin-bottom: 0.55rem; }

        .service-body {
            font-size: 0.9rem;
            color: var(--muted);
            margin-bottom: 0.9rem;
        }

        .service-list { list-style: none; font-size: 0.85rem; color: var(--text); }

        .service-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.4rem;
            margin-bottom: 0.35rem;
        }

        .service-dot {
            margin-top: 0.28rem;
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: var(--accent);
        }

        .strip {
            border-radius: var(--radius-lg);
            padding: 1.2rem 1.3rem;
            background: rgba(255, 122, 0, 0.08);
            border: 1px solid rgba(255, 122, 0, 0.45);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem;
            margin-top: 2rem;
        }

        .strip strong { color: var(--accent); }

        .strip span { font-size: 0.9rem; color: var(--muted); }

        .av-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 1.7rem;
        }

        .av-card {
            border-radius: var(--radius-lg);
            padding: 1.4rem 1.5rem;
            background: radial-gradient(circle at top, #261b4f, #0d0418);
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        .av-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

        .av-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.9rem; }

        .av-grid-list {
            list-style: none;
            columns: 2;
            column-gap: 1.7rem;
            font-size: 0.85rem;
        }

        .av-grid-list li {
            margin-bottom: 0.35rem;
            position: relative;
            padding-left: 0.8rem;
        }

        .av-grid-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.55em;
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: var(--accent);
        }

        .contact {
            background: radial-gradient(circle at top, #2a1350, #0b0215);
        }

        .contact-inner {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 1.6rem;
        }

        .contact-panel {
            border-radius: var(--radius-lg);
            padding: 1.6rem 1.7rem;
            background: rgba(10, 2, 22, 0.92);
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: var(--shadow-soft);
        }

        .contact-panel h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }

        .contact-panel p { font-size: 0.92rem; color: var(--muted); margin-bottom: 1rem; }

        form { display: grid; gap: 0.75rem; }

        label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--muted);
        }

        input,
        textarea {
            width: 100%;
            margin-top: 0.25rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            padding: 0.55rem 0.7rem;
            background: rgba(7, 0, 16, 0.85);
            color: var(--text);
            font-size: 0.9rem;
            font-family: var(--font-body);
        }

        textarea { min-height: 130px; resize: vertical; }

        input:focus,
        textarea:focus {
            outline: 2px solid var(--accent-soft);
            border-color: rgba(255, 122, 0, 0.8);
        }

        .contact-details { font-size: 0.9rem; color: var(--muted); }

        .contact-details a { font-weight: 600; color: var(--text); }

        .contact-details-row { margin-bottom: 2.0rem; }

        footer {
            padding: 1.6rem 0 1.9rem;
            font-size: 0.8rem;
            color: var(--muted);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 1rem;
        }

        footer .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            row-gap: 0.4rem;
            column-gap: 1rem;
            justify-content: space-between;
        }

        footer small span { opacity: 0.7; }

        @media (max-width: 900px) {
            .hero-inner,
            .av-grid,
            .contact-inner {
                grid-template-columns: minmax(0, 1fr);
            }
            .hero { padding-top: 3.25rem; }
            .hero-right { order: -1; }
            .nav-links { display: none; }
        }

        @media (max-width: 768px) {
            .service-grid { grid-template-columns: minmax(0, 1fr); }
            .av-grid-list { columns: 1; }
            section { padding: 2.6rem 0; }
            .hero-card { max-width: 100%; }
        }

        .center-man {
            text-align: center;
	}
