:root {
    --c1: #962019;
    --c2: #C92E20;
    --c3: #FA430A;
    --c4: #AB1F22;
    --c5: #020202;

    --bg: var(--c5);
    --text: #fff;
    --muted: rgba(255, 255, 255, .78);
    --muted2: rgba(255, 255, 255, .58);

    --card: rgba(255, 255, 255, .06);
    --card2: rgba(255, 255, 255, .09);
    --stroke: rgba(255, 255, 255, .12);

    --radius: 18px;
    --shadow: 0 18px 44px rgba(0, 0, 0, .55);
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
    color: var(--text);
    background:
        radial-gradient(1200px 800px at 12% 10%, rgba(250, 67, 10, .18), transparent 58%),
        radial-gradient(900px 700px at 92% 15%, rgba(201, 46, 32, .16), transparent 58%),
        radial-gradient(1000px 900px at 50% 100%, rgba(150, 32, 25, .16), transparent 60%),
        var(--bg);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: .92em;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Background graphics */
.bg-orb {
    position: fixed;
    inset: auto;
    pointer-events: none;
    filter: blur(70px);
    opacity: .62;
    z-index: -2;
}

.bg-orb--1 {
    width: 460px;
    height: 460px;
    left: -160px;
    top: 90px;
    background: radial-gradient(circle at 35% 35%, rgba(250, 67, 10, .95), transparent 60%);
}

.bg-orb--2 {
    width: 560px;
    height: 560px;
    right: -220px;
    top: 40px;
    background: radial-gradient(circle at 35% 35%, rgba(171, 31, 34, .92), transparent 62%);
}

.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: .14;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, .10) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, .10) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(600px 420px at 50% 18%, rgba(0, 0, 0, 1), transparent 65%);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 2, 2, .62);
    border-bottom: 1px solid var(--stroke);
    backdrop-filter: blur(10px);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(250, 67, 10, .95), rgba(201, 46, 32, .92));
    box-shadow: 0 12px 26px rgba(0, 0, 0, .45);
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand__title {
    font-weight: 900;
    letter-spacing: .2px;
}

.brand__subtitle {
    font-size: 12.5px;
    color: var(--muted2);
    margin-top: 2px;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
}

.nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    cursor: pointer;
}

.nav__toggleBars {
    display: block;
    width: 18px;
    height: 12px;
    margin: 0 auto;
    position: relative;
}

.nav__toggleBars::before,
.nav__toggleBars::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, .86);
    border-radius: 99px;
}

.nav__toggleBars::before {
    top: 0;
}

.nav__toggleBars::after {
    bottom: 0;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__link {
    font-size: 14px;
    color: rgba(255, 255, 255, .86);
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.nav__link:hover {
    background: rgba(255, 255, 255, .06);
    border-color: var(--stroke);
    transform: translateY(-1px);
}

.nav__link--cta {
    background: linear-gradient(135deg, rgba(201, 46, 32, .92), rgba(250, 67, 10, .90));
    border-color: rgba(255, 255, 255, .12);
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 800;
    font-size: 14px;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, filter .15s ease;
    user-select: none;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: linear-gradient(135deg, rgba(201, 46, 32, .95), rgba(250, 67, 10, .95));
    border-color: rgba(255, 255, 255, .10);
    color: #fff;
}

.btn--ghost {
    background: rgba(255, 255, 255, .06);
    border-color: var(--stroke);
    color: rgba(255, 255, 255, .88);
}

.btn--small {
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
}

.btn--block {
    width: 100%;
}

.btn__icon {
    opacity: .9;
}

/* Pills */
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(250, 67, 10, .22);
    background: rgba(250, 67, 10, .10);
    color: rgba(255, 255, 255, .92);
}

.pill--ghost {
    border-color: var(--stroke);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .86);
}

.pill__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(250, 67, 10, .95), rgba(171, 31, 34, .92));
}

/* Hero */
.main {
    padding-bottom: 34px;
}

.hero {
    padding: 44px 0 10px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: start;
}

.hero__title {
    margin: 0 0 10px;
    font-size: clamp(30px, 3.4vw, 52px);
    line-height: 1.03;
    letter-spacing: .2px;
}

.hero__lead {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 64ch;
}

.hero__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.stat {
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .05);
    border-radius: var(--radius);
    padding: 12px 12px;
}

.stat__num {
    font-weight: 900;
    letter-spacing: .2px;
}

.stat__label {
    font-size: 12.5px;
    color: var(--muted2);
    margin-top: 4px;
}

/* Cards */
.card {
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .04));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card--glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .05));
    border-color: rgba(250, 67, 10, .18);
    box-shadow:
        0 18px 44px rgba(0, 0, 0, .55),
        0 0 0 1px rgba(250, 67, 10, .12);
}

.card__head {
    padding: 16px 16px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
}

.card__sub {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--muted2);
}

.muted {
    color: var(--muted2);
}

.form {
    padding: 14px 16px 16px;
}

.form--pad {
    padding: 16px;
}

.field {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
}

.field__label {
    font-size: 13px;
    color: rgba(255, 255, 255, .86);
}

.input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: rgba(2, 2, 2, .35);
    color: #fff;
    outline: none;
}

.input:focus {
    border-color: rgba(250, 67, 10, .35);
    box-shadow: 0 0 0 4px rgba(250, 67, 10, .12);
}

.input--textarea {
    min-height: 110px;
    resize: vertical;
}

.form__hint {
    font-size: 12.5px;
    margin: 10px 0 0;
}

.link {
    color: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(250, 67, 10, .40);
}

.link:hover {
    border-bottom-color: rgba(250, 67, 10, .72);
}

.link--arrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
    border-bottom: none;
}

.link--arrow span {
    opacity: .9;
}

/* mini trust */
.mini-trust {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 12px 16px 16px;
    display: grid;
    gap: 8px;
}

.mini-trust__item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
}

.mini-trust__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(250, 67, 10, .14);
    border: 1px solid rgba(250, 67, 10, .22);
}

/* Trust bar */
.trust {
    padding: 18px 0 6px;
}

.trust__row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.trust__item {
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .05);
    padding: 12px 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.trust__icon {
    font-size: 18px;
}

.trust__title {
    font-weight: 900;
}

.trust__sub {
    font-size: 12.5px;
    color: var(--muted2);
    margin-top: 2px;
}

/* Sections */
.section {
    padding: 34px 0;
}

.section--alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0));
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 16px;
}

.section__title {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .2px;
}

.section__desc {
    margin: 8px 0 0;
    color: var(--muted2);
    font-size: 14px;
    max-width: 70ch;
}

/* Cards grid */
.cards {
    display: grid;
    gap: 14px;
}

.cards--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card--service {
    padding: 16px;
}

.card__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 46, 32, .18), rgba(250, 67, 10, .12));
    border: 1px solid rgba(250, 67, 10, .20);
    margin-bottom: 12px;
}

.card__icon svg {
    width: 22px;
    height: 22px;
    color: rgba(255, 255, 255, .92);
}

.bullets {
    margin: 12px 0 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, .86);
}

.bullets li {
    margin: 6px 0;
}

/* CTA strip */
.cta-strip {
    margin-top: 14px;
    border: 1px solid rgba(250, 67, 10, .20);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(150, 32, 25, .22), rgba(250, 67, 10, .10));
    padding: 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.cta-strip__title {
    font-weight: 900;
}

.cta-strip__sub {
    color: var(--muted2);
    font-size: 13.5px;
    margin-top: 4px;
}

/* Split / why us */
.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 16px;
    align-items: start;
}

.feature-list {
    margin: 14px 0;
    display: grid;
    gap: 10px;
}

.feature {
    display: flex;
    gap: 12px;
    padding: 12px 12px;
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .05);
}

.feature__badge {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(250, 67, 10, .12);
    border: 1px solid rgba(250, 67, 10, .22);
    font-weight: 900;
}

.feature__title {
    font-weight: 900;
    margin-bottom: 4px;
}

.showcase {
    padding: 16px;
}

.showcase__chip {
    display: inline-flex;
    font-size: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .88);
}

.showcase__title {
    margin-top: 10px;
    font-weight: 900;
    font-size: 16px;
}

.showcase__list {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.showcase__item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .88);
}

.check {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(250, 67, 10, .14);
    border: 1px solid rgba(250, 67, 10, .22);
}

.showcase__bottom {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.quote {
    margin-top: 12px;
    padding: 16px;
    position: relative;
}

.quote__mark {
    position: absolute;
    top: 6px;
    left: 12px;
    font-size: 44px;
    opacity: .22;
}

.quote__text {
    font-weight: 900;
    font-size: 15px;
    margin-top: 12px;
}

.quote__author {
    margin-top: 10px;
    font-size: 13px;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.step {
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.step__num {
    font-weight: 900;
    color: rgba(250, 67, 10, .95);
    letter-spacing: .6px;
}

.step__title {
    font-weight: 900;
    margin-bottom: 6px;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 18px 0;
}

/* Metrics */
.metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.metric__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.metric__label {
    color: rgba(255, 255, 255, .88);
    font-weight: 800;
}

.metric__value {
    color: rgba(255, 255, 255, .88);
    font-weight: 900;
}

.bar {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    border-radius: 999px;
    overflow: hidden;
    height: 12px;
}

.bar__fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(135deg, rgba(201, 46, 32, .95), rgba(250, 67, 10, .95));
    border-radius: 999px;
    transition: width 900ms ease;
}

/* Testimonials */
.testimonial {
    padding: 16px;
}

.testimonial__top {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    font-weight: 900;
}

.testimonial__name {
    font-weight: 900;
}

.testimonial__text {
    color: rgba(255, 255, 255, .88);
    line-height: 1.55;
}

.stars {
    margin-top: 10px;
    color: rgba(250, 67, 10, .95);
    letter-spacing: 1px;
}

/* Accordion */
.accordion {
    display: grid;
    gap: 10px;
}

.acc-item {
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .05);
    overflow: hidden;
}

.acc-btn {
    width: 100%;
    text-align: left;
    padding: 14px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .92);
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 900;
}

.acc-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .04);
}

.acc-panel {
    padding: 0 14px 14px;
    display: none;
}

.acc-item.is-open .acc-panel {
    display: block;
}

.acc-item.is-open .acc-icon {
    border-color: rgba(250, 67, 10, .28);
    background: rgba(250, 67, 10, .10);
}

/* Lead magnet */
.lead {
    padding: 18px 0 34px;
}

.lead__inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 16px;
    padding: 18px;
}

.lead__badge {
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(250, 67, 10, .12);
    border: 1px solid rgba(250, 67, 10, .22);
}

.lead__title {
    margin: 10px 0 8px;
    font-size: 20px;
    font-weight: 900;
}

.lead__desc {
    margin: 0;
}

.lead__bullets {
    margin: 12px 0 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, .86);
}

.lead__bullets li {
    margin: 6px 0;
}

.lead__form {
    padding: 0;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 14px;
    align-items: start;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.info {
    padding: 16px;
}

.info__title {
    margin: 0 0 10px;
    font-weight: 900;
}

.info__items {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.info__item {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    border-radius: var(--radius);
    padding: 12px;
}

.info__k {
    font-size: 12px;
    color: var(--muted2);
}

.info__v {
    margin-top: 4px;
    font-weight: 900;
}

.info__cta {
    margin-top: 14px;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, .10);
    background: rgba(2, 2, 2, .72);
    padding: 22px 0 14px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr .4fr .4fr;
    gap: 14px;
    align-items: start;
}

.footer__brand {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer__title {
    font-weight: 900;
}

.footer__note {
    margin-top: 10px;
    max-width: 60ch;
}

.footer__col {
    display: grid;
    gap: 10px;
}

.footer__h {
    font-weight: 900;
}

.footer__link {
    color: rgba(255, 255, 255, .82);
    padding: 6px 0;
}

.footer__link:hover {
    color: rgba(250, 67, 10, .95);
}

.footer__bottom {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.to-top {
    color: rgba(255, 255, 255, .86);
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
}

.to-top:hover {
    border-color: rgba(250, 67, 10, .24);
    background: rgba(250, 67, 10, .10);
}

/* Toast */
.toast {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: min(360px, calc(100% - 32px));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(2, 2, 2, .78);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .55);
    padding: 12px 12px;
    display: none;
    z-index: 80;
}

.toast.is-show {
    display: block;
}

.toast__title {
    font-weight: 900;
}

.toast__msg {
    margin-top: 4px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 980px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__stats {
        grid-template-columns: 1fr;
    }

    .trust__row {
        grid-template-columns: 1fr 1fr;
    }

    .cards--3 {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .metrics {
        grid-template-columns: 1fr;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .lead__inner {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nav__toggle {
        display: inline-flex;
    }

    .nav__menu {
        position: fixed;
        top: 64px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 12px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, .14);
        background: rgba(2, 2, 2, .92);
        backdrop-filter: blur(10px);
        box-shadow: 0 18px 44px rgba(0, 0, 0, .6);
    }

    .nav__menu.is-open {
        display: flex;
    }

    .nav__link {
        padding: 12px 12px;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }
}