:root {
    --bg: #0b1220;
    --card: #0f1a2e;
    --muted: #9fb0c9;
    --text: #eaf0ff;
    --line: rgba(255, 255, 255, .10);
    --primary: #ffb547;
    --primary2: #ff7a3d;
    --shadow: 0 18px 40px rgba(0, 0, 0, .35);
    --radius: 18px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: radial-gradient(1200px 700px at 15% 10%, rgba(255, 181, 71, .20), transparent 60%),
        radial-gradient(900px 600px at 85% 15%, rgba(255, 122, 61, .18), transparent 60%),
        var(--bg);
    color: var(--text);
}

.container {
    width: min(1140px, 92%);
    margin: 0 auto
}

.topbar {
    background: rgba(255, 255, 255, .04);
    border-bottom: 1px solid var(--line);
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    font-size: 13px;
    color: var(--muted);
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 10px
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 181, 71, .20)
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.topbar__link {
    color: var(--text);
    text-decoration: none;
    opacity: .9
}

.topbar__link:hover {
    opacity: 1
}

.sep {
    opacity: .35
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(11, 18, 32, .60);
    border-bottom: 1px solid var(--line);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text)
}

.brand__logo {
    width: 230px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    background:#ffffffe8;
    padding: 6px
}

.brand__name {
    font-weight: 800;
    letter-spacing: .2px
}

.brand__tag {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px
}

.nav {
    display: flex;
    gap: 18px
}

.nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.nav a:hover {
    color: var(--text)
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    user-select: none;
    transition: .2s transform, .2s opacity, .2s background, .2s border;
    color: var(--text);
}

.btn:active {
    transform: translateY(1px)
}

.btn--primary {
    background: linear-gradient(90deg, var(--primary), var(--primary2));
    color: #161616;
}

.btn--secondary {
    background: rgba(255, 255, 255, .06);
    border-color: var(--line);
}

.btn--ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--text);
}

.btn--block {
    width: 100%
}

.burger {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .05);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 18px;
    height: 2px;
    background: var(--text);
    opacity: .9;
    border-radius: 10px
}

.drawer {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none
}

.drawer.is-open {
    display: block
}

.drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55)
}

.drawer__panel {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: min(380px, 88%);
    background: rgba(13, 22, 40, .95);
    border-left: 1px solid var(--line);
    padding: 18px;
    box-shadow: var(--shadow);
}

.drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px
}

.drawer__title {
    font-weight: 800
}

.drawer__close {
    background: transparent;
    border: 0;
    color: var(--text);
    font-size: 18px;
    cursor: pointer
}

.drawer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px
}

.drawer__links a {
    padding: 12px 12px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    font-weight: 700;
}

.drawer__cta {
    margin-top: 14px
}

.hero {
    position: relative;
    padding: 44px 0 22px;
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 26px;
    align-items: start;
}

.hero__content {
    padding-top: 10px
}

.badge {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

.hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(32px, 3.6vw, 52px);
    line-height: 1.08;
    letter-spacing: -.6px;
}

.hero p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 56ch;
}

.grad {
    background: linear-gradient(90deg, var(--primary), var(--primary2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__cta {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap
}

.hero__stats {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.stat {
    flex: 1;
    min-width: 150px;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
}

.stat__num {
    font-weight: 900;
    font-size: 22px
}

.stat__label {
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
    margin-top: 6px
}

.logos {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: var(--muted);
}

.logos img {
    height: 100px;
    object-fit: cover;
    opacity: .95
}

.logos__text {
    font-size: 13px;
    font-weight: 700
}

.hero__media {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.slider {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    box-shadow: var(--shadow);
}

.slider__track {
    display: flex;
    width: 200%;
    transform: translateX(0%);
    transition: .45s ease;
}

.slide {
    width: 50%;
    margin: 0
}

.slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.slider__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(0, 0, 0, .25);
}

.iconbtn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    cursor: pointer;
    font-size: 20px;
}

.dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center
}

.dotbtn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .35);
    background: transparent;
    cursor: pointer;
}

.dotbtn.is-active {
    background: linear-gradient(90deg, var(--primary), var(--primary2));
    border-color: transparent;
}

.card {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    padding: 18px;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 18px
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6
}

.quick__title {
    font-weight: 900;
    margin-bottom: 10px
}

.quick__row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.quick__row:last-child {
    border-bottom: 0
}

.quick__row span {
    color: var(--muted);
    font-weight: 700
}

.quick__row a {
    color: var(--text);
    text-decoration: none;
    font-weight: 900
}

.section {
    padding: 48px 0
}

.section--alt {
    background: rgba(255, 255, 255, .03);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section__head {
    margin-bottom: 18px
}

.section__head h2 {
    margin: 0 0 8px;
    font-size: 28px
}

.section__head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6
}

.grid {
    display: grid;
    gap: 14px
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr)
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr)
}

.list {
    margin: 12px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7
}

.list li {
    margin: 3px 0
}

.split {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 14px;
    align-items: start;
}

.checks {
    display: grid;
    gap: 10px;
    margin-top: 14px
}

.check {
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    font-weight: 800;
    color: var(--text);
}

.ctaStrip {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius);
    background: linear-gradient(90deg, rgba(255, 181, 71, .18), rgba(255, 122, 61, .12));
    border: 1px solid rgba(255, 255, 255, .10);
}

.ctaStrip__title {
    font-weight: 900
}

.ctaStrip__text {
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
    margin-top: 4px
}

.info__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px
}

.chip {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .05);
    font-weight: 800;
    font-size: 12px;
    color: var(--text);
}

.contactList {
    display: grid;
    gap: 10px;
    margin-top: 10px
}

.contactItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px;
    border-radius: 14px;
    text-decoration: none;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    color: var(--text);
}

.contactItem__label {
    color: var(--muted);
    font-weight: 800
}

.contactItem__value {
    font-weight: 900
}

.note {
    margin-top: 10px;
    padding: 12px;
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, .25);
    color: var(--muted);
    line-height: 1.6;
}

.form {
    margin-top: 10px;
    display: grid;
    gap: 12px
}

.form__row {
    display: grid;
    gap: 8px
}

label {
    font-weight: 800;
    color: var(--muted);
    font-size: 13px
}

input,
textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, .20);
    color: var(--text);
    outline: none;
}

input:focus,
textarea:focus {
    border-color: rgba(255, 181, 71, .55)
}

.form__hint {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5
}

.footer {
    padding: 26px 0;
    border-top: 1px solid var(--line);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.footer__left {
    display: flex;
    align-items: center;
    gap: 12px
}

.footer__logo {
    width: 230px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    background:#ffffffe8;
    padding: 6px
}

.footer__name {
    font-weight: 900
}

.footer__sub {
    color: var(--muted);
    font-weight: 700;
    font-size: 12px;
    margin-top: 2px
}

.footer__right {
    color: var(--muted);
    font-weight: 700;
    font-size: 13px
}

.fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--primary), var(--primary2));
    color: #161616;
    text-decoration: none;
    font-size: 22px;
    box-shadow: var(--shadow);
}

.hero__bg {
    position: absolute;
    inset: -200px -200px auto -200px;
    height: 420px;
    background: radial-gradient(closest-side, rgba(255, 181, 71, .20), transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

/* Responsive */
@media (max-width: 980px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .slide img {
        height: 320px
    }

    .grid--3 {
        grid-template-columns: 1fr
    }

    .grid--2 {
        grid-template-columns: 1fr
    }

    .split {
        grid-template-columns: 1fr
    }

    .nav {
        display: none
    }

    .burger {
        display: flex
    }
        .brand__logo {
            width: 52px;
            height: 52px;
            object-fit: cover;
            border-radius: 10px;
            padding: 6px
        }
}