:root {
    --bg: #070A12;
    --bg2: #0B1021;
    --card: rgba(255,255,255,.06);
    --text: rgba(255,255,255,.92);
    --muted: rgba(255,255,255,.70);
    --muted2: rgba(255,255,255,.55);
    --border: rgba(255,255,255,.12);
    --accent: #7C5CFF;
    --accent2: #2DE2E6;
    --shadow: 0 12px 40px rgba(0,0,0,.35);
    --radius: 18px;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    background: radial-gradient(1200px 600px at 15% 0%, rgba(124,92,255,.25), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(45,226,230,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
    color: var(--text);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: .92;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(7,10,18,.55);
    border-bottom: 1px solid var(--border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

/* Top-left action button */
.header__left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 250px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06);
    color: var(--text);
    font-weight: 850;
}

.action-btn:hover {
    transform: translateY(-1px);
}

.action-btn:active {
    transform: translateY(0px);
}

.action-btn__icon {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.05);
    font-weight: 900;
}

/* Brand logo only (no container, no box) */
.brand {
    display: flex;
    align-items: center;
}

.brand__logo {
    display: block;
    width: 200px;

    /* larger, intentional */
    height: auto;
}

/* Mobile tuning */
@media (max-width: 980px) {
    .brand__logo {
        width: 15-px;

        /* still bold, not massive */
    }
}

@media (max-width: 980px){
    .hide_mobile {
        display: none !important;
    }
}

/* Logo container: remove box + background */
.brand__mark {
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand__name {
    font-weight: 900;
    letter-spacing: .2px;
}

.brand__tag {
    font-size: 12px;
    color: var(--muted2);
    margin-top: 4px;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.05);
    color: var(--text);
}

.nav__burger {
    width: 18px;
    height: 2px;
    background: var(--text);
    display: block;
    margin: 0 auto;
    position: relative;
}

.nav__burger::before,
.nav__burger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--text);
}

.nav__burger::before {
    top: -6px;
}

.nav__burger::after {
    top: 6px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav__menu a {
    color: var(--muted);
    font-weight: 650;
    font-size: 14px;
}

.nav__menu a:hover {
    color: var(--text);
}

.nav__menu a.is-active {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 6px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.15);
    background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(45,226,230,.70));
    color: #0A0B10;
    font-weight: 900;
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0px);
}

.btn--ghost {
    background: rgba(255,255,255,.06);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: none;
}

.btn--small {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 12px;
}

/* Hero */
.hero {
    position: relative;
    padding: 72px 0 30px;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: start;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.05);
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 750;
    font-size: 13px;
}

.hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(34px, 3.4vw, 54px);
    line-height: 1.06;
    letter-spacing: -.8px;
}

.accent {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__sub {
    color: var(--muted);
    font-size: 16px;
    max-width: 58ch;
}

.hero__cta {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.hero__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.meta-card {
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
}

.meta-card__label {
    display: block;
    font-size: 12px;
    color: var(--muted2);
    font-weight: 750;
}

.meta-card__value {
    display: block;
    margin-top: 6px;
    font-weight: 900;
    color: var(--text);
}

.hero__panel .panel {
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.05);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.panel__header {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.04);
}

.panel__title {
    font-weight: 950;
    color: var(--text);
    letter-spacing: .2px;
}

.panel__body {
    padding: 16px;
}

.panel__actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.value-list li {
    padding: 10px 12px;
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 14px;
    color: var(--muted);
}

.value-list strong {
    color: var(--text);
    font-weight: 900;
}

.hero__glow {
    position: absolute;
    inset: -120px -160px auto -160px;
    height: 420px;
    background: radial-gradient(closest-side at 20% 60%, rgba(124,92,255,.35), transparent 65%),
    radial-gradient(closest-side at 80% 40%, rgba(45,226,230,.22), transparent 65%);
    filter: blur(30px);
    pointer-events: none;
}

/* Strip */
.strip {
    padding: 16px 0 34px;
}

.strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 14px 16px;
    background: rgba(255,255,255,.04);
}

.strip__text {
    margin: 0;
    color: var(--muted2);
    font-weight: 900;
    font-size: 13px;
}

.strip__logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
    color: var(--muted);
    font-weight: 750;
    font-size: 12px;
}

/* Sections */
.section {
    padding: 64px 0;
}

.section--alt {
    background: rgba(255,255,255,.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section__head {
    margin-bottom: 22px;
}

.section__head h2 {
    margin: 0 0 8px;
    font-size: 30px;
    letter-spacing: -.3px;
}

.section__head p {
    margin: 0;
    color: var(--muted);
    max-width: 70ch;
}

.grid {
    display: grid;
    gap: 14px;
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255,255,255,.05);
    padding: 18px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    letter-spacing: -.2px;
}

.card p {
    margin: 0 0 12px;
    color: var(--muted);
}

.list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.list li {
    margin: 6px 0;
}

/* Timeline */
.timeline {
    display: grid;
    gap: 12px;
}

.step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,.04);
}

.step__num {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    font-weight: 950;
}

.step__body h3 {
    margin: 0 0 6px;
}

.step__body p {
    margin: 0;
    color: var(--muted);
}

/* FAQ */
.faq {
    display: grid;
    gap: 10px;
}

.faq__item {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255,255,255,.04);
    padding: 14px 14px;
}

.faq__item summary {
    cursor: pointer;
    font-weight: 900;
    color: var(--text);
}

.faq__item p {
    margin: 10px 0 0;
    color: var(--muted);
}

/* Contact */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.contact__bullets {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
    color: var(--muted);
    font-weight: 700;
}

.bullet__icon {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.05);
    color: var(--text);
    font-weight: 950;
}

.contact__note {
    margin-top: 14px;
    color: var(--muted2);
}

.contact__note a {
    text-decoration: underline;
}

.form label {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

input,
textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(0,0,0,.25);
    color: var(--text);
    outline: none;
}

input:focus,
textarea:focus {
    border-color: rgba(124,92,255,.6);
}

.form__note {
    margin: 10px 0 0;
    color: var(--muted2);
    font-size: 12px;
}

/* Simple page header (non-home) */
.page-hero {
    padding: 54px 0 18px;
}

.page-hero h1 {
    margin: 10px 0 8px;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
}

.page-hero p {
    margin: 0;
    color: var(--muted);
    max-width: 70ch;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 26px 0;
    background: rgba(0,0,0,.16);
}

.footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.brand--footer .brand__mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
}

.footer__small {
    margin: 10px 0 0;
    color: var(--muted2);
    font-size: 12px;
}

.footer__right {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__right a {
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

.footer__right a:hover {
    color: var(--text);
}

/* Responsive */
@media (max-width: 980px){
    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__meta {
        grid-template-columns: 1fr;
    }

    .grid--3 {
        grid-template-columns: 1fr;
    }

    .grid--2 {
        grid-template-columns: 1fr;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .nav__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav__menu {
        display: none;
        position: absolute;
        right: 20px;
        top: 70px;
        flex-direction: column;
        gap: 12px;
        padding: 14px;
        border-radius: 18px;
        border: 1px solid var(--border);
        background: rgba(7,10,18,.92);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow);
        min-width: 220px;
    }

    .nav__menu.is-open {
        display: flex;
    }

    .strip__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .strip__logos {
        justify-content: flex-start;
    }

    .header__left {
        min-width: unset;
    }

    .action-btn__label {
        display: none;
    }

    /* Hide Call Us button on desktop */
    @media (min-width: 981px) {
        .call-only {
            display: none !important;
        }
    }

    /* keeps it compact on mobile */
}
