:root {
    --bg-dark: #06060e;
    --bg-sec: #0a0a18;
    --bg-card: #0f0f24;
    --bg-card-alt: #111130;
    --orange: #e6601a;
    --orange-lt: #f07a2a;
    --orange-grad: linear-gradient(180deg, #EF5A16, #AA3500);
    --purple-grad: linear-gradient(180deg, #301082, #601F9E);
    --lightblu-grad: linear-gradient(180deg, #0096A3, #01636C);
    --blue-line: #2a2aff;
    --purple-line: #8030e0;
    --text-w: #ffffff;
    --text-lt: #c0c0d4;
    --text-gr: #8585a0;
    --text-mt: #555568;
    --bdr: rgba(255, 255, 255, 0.06);
    --bdr-blue: rgba(60, 60, 255, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-w);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* NAVBAR */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(6, 6, 14, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--bdr);
    padding: 10px 0;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-ico {
    width: 36px;
    height: 36px;
}

.logo-ico svg {
    width: 100%;
    height: 100%;
}

.logo-t .t1 {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #fff;
}

.logo-t .t2 {
    display: block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #fff;
}

.logo-t .hi {
    color: var(--orange);
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-r li a {
    color: var(--text-gr);
    font-size: 13px;
    font-weight: 400;
    padding: 8px 15px;
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-r li a:hover {
    color: #fff;
}

/* HERO */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    overflow: hidden;
    flex-direction: column;
    gap: 15px;
}

.hero-bg {
    background:url("../../images/image/Hero%20Image_6_steps.png") center center/cover no-repeat;
    width: 100%;
    min-height: 520px;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
}

.hero-in {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-in h1 {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}

.hero-in h1 .em {
    color: var(--orange);
}

.hero-sub {
    font-size: 14px;
    color: var(--text-lt);
    margin-bottom: 14px;
    opacity: .9;
}

.hero-body {
    font-size: 11.5px;
    color: var(--text-gr);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 18px;
    opacity: .85;
}

.btn-or {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-grad);
    color: #fff;
    border: none;
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 4px 16px rgba(230, 96, 26, 0.25);
}

.btn-or1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple-grad);
    color: #fff;
    border: none;
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 4px 16px rgba(230, 96, 26, 0.25);
}

.btn-or2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lightblu-grad);
    color: #fff;
    border: none;
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 4px 16px rgba(230, 96, 26, 0.25);
}

.btn-or:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(230, 96, 26, 0.4);
    color: #fff;
}

.btn-or1:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(63, 26, 230, 0.4);
    color: #fff;
}

.btn-or2:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(26, 223, 230, 0.4);
    color: #fff;
}

.store-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 11px;
    color: var(--text-lt);
    cursor: pointer;
    transition: background .2s;
}

.store-badge:hover {
    background: rgba(255, 255, 255, 0.14);
}

.store-badge i {
    font-size: 16px;
}

/* FEATURE SECTIONS */
.feat-sec {
    padding: 55px 0 50px;
    position: relative;
    border-bottom: 1px solid var(--bdr);
}

.feat-sec.alt {
    background: var(--bg-sec);
}

.feat-sec .glow-line {
    position: absolute;
    bottom: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bdr-blue), var(--purple-line), var(--bdr-blue), transparent);
    opacity: .5;
}

.feat-num {
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feat-p {
    font-size: 12px;
    color: var(--text-lt);
    line-height: 1.75;
    margin-bottom: 10px;
}

.feat-ul {
    padding-left: 16px;
    margin: 8px 0 14px;
}

.feat-ul li {
    font-size: 11.5px;
    color: var(--text-lt);
    line-height: 1.6;
    margin-bottom: 5px;
}

.feat-ul li::marker {
    color: var(--orange);
}

.feat-cap {
    font-size: 10.5px;
    color: var(--text-mt);
    margin-top: 8px;
    line-height: 1.5;
}

.btn-or-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange-grad);
    color: #fff;
    border: none;
    padding: 9px 18px;
    border-radius: 25px;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 3px 12px rgba(230, 96, 26, 0.2);
}

.btn-or-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 22px rgba(230, 96, 26, 0.35);
    color: #fff;
}

.feat-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.feat-img-wrap img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 300px;
}

.play-o {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--orange-grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(230, 96, 26, 0.35);
    transition: transform .2s;
}

.play-o1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--purple-grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(230, 96, 26, 0.35);
    transition: transform .2s;
}

.play-o2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--lightblu-grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(230, 96, 26, 0.35);
    transition: transform .2s;
}

.play-op {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgb(10, 126, 235);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(230, 96, 26, 0.35);
    transition: transform .2s;
}

.play-o:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.play-o i {
    font-size: 18px;
    color: #fff;
    margin-left: 2px;
}

a.small {
    font-size: 0.8rem;
    padding: 30px;
}

ul.dropdown-menu {
    background: #000000;
}

.nav-r li a:hover {
    color: #ffffff;
    background: #00264c;
}

/* Sub-feature pills inside Section 1 */
.mode-pill {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.mode-pill .ico {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: var(--orange);
}

.mode-pill .txt {
    font-size: 11.5px;
    color: var(--text-lt);
    line-height: 1.5;
}

.mode-pill .txt strong {
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    display: block;
    margin-bottom: 1px;
}

/* Double image stack */
.img-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.img-stack .feat-img-wrap {
    flex: 1;
}

/* CTA BANNER */
.cta-banner {
    padding: 50px;
    text-align: center;
    background: url('./banner_bottom.png') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
}

.cta-banner h2 {
    font-size: 1.85rem;
    font-weight: 700;
    max-width: 600px;
    margin: 0 auto 12px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.cta-banner p {
    font-size: 12px;
    color: var(--text-lt);
    max-width: 500px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.cta-banner .btn-or {
    position: relative;
    z-index: 1;
}

/* FAQ */
.faq-sec {
    padding: 55px 0;
    background: var(--bg-dark);
}

.faq-sec h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-decoration: underline;
    text-decoration-color: var(--orange);
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--bdr);
    border-radius: 10px;
    padding: 16px 18px;
    cursor: pointer;
    transition: border-color .2s;
}

.faq-item:hover {
    border-color: rgba(230, 96, 26, 0.2);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    font-weight: 600;
    gap: 10px;
}

.faq-q i {
    color: var(--orange);
    font-size: 14px;
    flex-shrink: 0;
}

.faq-a {
    font-size: 11px;
    color: var(--text-gr);
    line-height: 1.6;
    margin-top: 10px;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

/* FOOTER */
footer {
    background: var(--bg-sec);
    border-top: 1px solid var(--bdr);
    padding: 30px 0 14px;
}

.ft-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ft-links a {
    color: var(--text-gr);
    font-size: 12px;
    margin: 0 10px;
    transition: color .2s;
}

.ft-links a:hover {
    color: #fff;
}

.ft-social {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ft-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--bdr);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gr);
    font-size: 12px;
    transition: all .2s;
}

.ft-social a:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.ft-bot {
    text-align: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--bdr);
    font-size: 10px;
    color: var(--text-mt);
}

.gt {
    font-size: 11px;
    color: var(--text-gr);
    margin-right: 6px;
}
.feat-img-wrap video{
width: 100%;
border-radius:10px;
}
@media(max-width:991px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:767px) {
    .hero-in h1 {
        font-size: 1.5rem;
    }

    .feat-num {
        font-size: 1.25rem;
    }

    .nav-desktop {
        display: none !important;
    }

    .cta-banner h2 {
        font-size: 1.4rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
    a.small {
    padding: 18px;
    display: block;
}
}