:root {
    --bg-dark: #080812;
    --bg-section: #0c0c1a;
    --bg-card: #12122a;
    --bg-card-alt: #161635;
    --orange: #e65c1a;
    --orange-light: #f07a2a;
    --orange-gradient: linear-gradient(135deg, #e65c1a, #f07a2a);
    --purple-glow: rgba(120, 60, 200, 0.15);
    --text-white: #ffffff;
    --text-light: #c8c8d8;
    --text-gray: #8888a0;
    --text-muted: #5a5a70;
    --border-color: rgba(255, 255, 255, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* NAV */
.navbar-main {
    background: rgba(8, 8, 18, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 0 20px #ffffff30;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 140px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    position: relative;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    line-height: 1;
}

.logo-text .top {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    display: block;
}

.logo-text .bottom {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 4.5px;
    color: #fff;
    display: block;
}

.logo-text .bottom .highlight {
    color: var(--orange);
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #ababad;
    font-size: 13.5px;
    font-weight: 400;
    padding: 8px 16px;
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-links li a:hover {
    color: #fff;
}

/* HERO */
.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 76px 0px 20px;
    overflow: hidden;
    flex-direction: column;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 18, 0.25) 0%, rgba(8, 8, 18, 0.55) 55%, rgba(8, 8, 18, 0.96) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 65%;
    margin: 0 auto;
    padding: 2rem;
}

.hero h1 {
    
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #fff;
}

.hero .subtitle {
    font-size: 13px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 22px;
    line-height: 1.65;
    opacity: .85;
}

.hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    font-size: 12.5px;
    color: var(--text-gray);
}

.hero-meta .item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.author-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange-gradient);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    font-weight: 600;
}

.hero-meta .bi {
    color: var(--orange);
    font-size: 12px;
}

/* INTRO */
.intro {
    background: var(--bg-section);
    padding: 50px 0 55px;
}

.intro-left p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 14px;
    opacity: .88;
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #0096A3 0%, #01636C 100%);
    color: #fff;
    border: none;
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 4px 18px #01636C;
}
.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px #004950;
    color: #fff;
}
.intro-left .btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #EF5A16 0%, #AA3500 100%);
    color: #fff;
    border: none;
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 4px 18px rgba(230, 92, 26, 0.25);
}
.intro-left .btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(230, 92, 26, 0.4);
    color: #fff;
}

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

.intro-right img {
    border-radius: 14px;
    max-height: 350px;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* SECTION HEADINGS */
.sec-heading {
    text-align: center;
    padding: 65px 20px 15px;
}

.sec-heading h2 {
    
    font-size: 1.95rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.sec-heading p {
    color: var(--text-gray);
    font-size: 13px;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* OPTION BLOCKS */
.option-block {
    padding: 45px 0 30px;
}

.option-block.alt-bg {
    background: var(--bg-section);
}

.opt-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(180deg, #301082 0%, #601F9E 100%);
    border-radius: 25px 25px 0 0;
}

.opt-badge {
    text-align: center;
    min-width: 58px;
    background: #fff;
    border-radius: 25px 0 0 0;
    padding: 10px;
}

.opt-badge .lbl {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #381387;
    /* background: rgba(230, 92, 26, 0.1); */
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 2px;
}
.step-card li::marker {
    color: #5320c0;
}
.opt-badge .num {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    background: #381387;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.opt-title {
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: 7px;
    margin-top: 22px;
    line-height: 1.3;
}

.alt-bg .opt-header {
    background: linear-gradient(180deg, #EF5A16 0%, #AA3500 100%);;
}

.alt-bg .opt-badge .lbl {
    color: #EF5A16;
}
.alt-bg .step-card li::marker {
    color: var(--orange);
}
.alt-bg .opt-header .num {
    background: #EF5A16;
    -webkit-text-fill-color:none;
    -webkit-background-clip:text;
}
.opt-sub {
    color: var(--text-gray);
    font-size: 12.5px;
    margin: 15px;
    line-height: 1.5;
    text-align: center;
}
.option-block .container {
    border-radius: 25px;
    border: 1px solid #23237e;
}
.alts-bg .opt-header {
    background: linear-gradient(180deg, #0096A3 0%, #01636C 100%);
}

.alts-bg .opt-badge .lbl {
    color: #0096A3;
}

.alts-bg .step-card li::marker {
    color: #0096A3;
}
.alts-bg .opt-header .num {
    background: #0096A3;
    -webkit-text-fill-color:none;
    -webkit-background-clip:text;
}
/* STEP CARDS */
.step-card {
    background: linear-gradient(180deg, #000000 0%, #384dc433 100%);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 22px;
    height: 100%;
}



.step-card h6 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.step-card ol,
.step-card ul {
    padding-left: 16px;
    margin: 0;
}

.step-card li {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.55;
}


/* PHONE IMAGES */
.phone-area {
    text-align: center;
    padding: 32px 16px 10px;
}

.phone-area img {
    max-height: 260px;
    border-radius: 14px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

/* DOWNLOAD CTA */
.dl-cta {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.dl-cta p {
    font-size: 12.5px;
    color: var(--text-light);
    margin-bottom: 14px;
    font-weight: 500;
}

/* VIDEO SECTIONS */
.vid-section {
    text-align: center;
    padding: 45px 20px;
    background: var(--bg-section);
}

.vid-section.no-bg {
    background: var(--bg-dark);
}

.vid-wrap {
    position: relative;
    display: inline-block;
    max-width: 900px;
    width: 100%;
}

.vid-wrap img {
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(180deg, #4C75FF 0%, #1A4FFF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(230, 92, 26, 0.4);
    transition: transform .25s;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.play-btn i {
    font-size: 22px;
    color: #fff;
    margin-left: 3px;
}

.vid-caption {
    color: var(--text-gray);
    font-size: 13px;
    margin-top: 20px;
    font-style: italic;
}

/* TIPS */
.tips-sec {
    padding: 55px 0;
}

.tips-sec .head {
    text-align: center;
    margin-bottom: 35px;
}

.tips-sec .head h2 {
    
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tips-sec .head p {
    color: var(--text-gray);
    font-size: 12.5px;
    max-width: 530px;
    margin: 0 auto;
    line-height: 1.6;
}

.tip-card {
    background: linear-gradient(180deg, #00020F 0%, #3200d728 100%);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 24px;
    height: 100%;
}

.tip-card .title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.tip-num {
    width: 24px;
    height: 24px;
    background: #00A1FF;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.tip-card .title-row h6 {
    font-size: 13.5px;
    font-weight: 600;
    margin: 0;
}

.tip-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.tip-card .sub-label {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin: 10px 0 6px;
}

.tip-card ul {
    padding-left: 15px;
    margin: 0;
}

.tip-card li {
    font-size: 11.5px;
    color: var(--text-light);
    margin-bottom: 4px;
    line-height: 1.5;
}

.tip-card .note {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* GREAT FOR */
.great-for {
    padding: 1rem;
    text-align: center;
}

.great-for h2 {
    
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-decoration: none;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
}

.pills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    padding: 9px 18px;
    border-radius: 28px;
    font-size: 12px;
    color: var(--text-light);
}

.pill .bi-check-circle-fill {
    color: #017B8E;
    font-size: 13px;
}

/* FEATURE CARDS */
.feat-grid {
    padding: 0 0 55px;
}

.feat-card {
    background: linear-gradient(180deg, #00020F 0%, #3200d728 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: all .25s;
}

.feat-card:hover {
    background: var(--bg-card-alt);
    border-color: rgba(230, 92, 26, 0.15);
    transform: translateY(-3px);
}

.feat-card h6 {
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.feat-card p {
    font-size: 11.5px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* 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: #00041F;
    border-top: 1px solid var(--border-color);
    padding: 32px 0 16px;
}

.foot-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.foot-links a {
    color: var(--text-gray);
    font-size: 12.5px;
    margin: 0 10px;
    transition: color .2s;
}

.foot-links a:hover {
    color: #fff;
}

.foot-social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.foot-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 13px;
    transition: all .2s;
}

.foot-social a:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.foot-bottom {
    text-align: center;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    font-size: 11px;
    color: var(--text-muted);
}

.get-touch {
    font-size: 16px;
    color: #ffffff;
    margin-right: 8px;
    margin-bottom: 15px;
}
.mail{
    background: linear-gradient(180deg, #EF5A16 0%, #AA3500 100%);
}
.facebook{
    background: linear-gradient(180deg, #601F9E 0%, #341F90 100%);
}
.linkedin{
    background: linear-gradient(180deg, #01636C 0%, #017B8E 100%);
}
ul.dropdown-menu {
    background: #000000;
}
.nav-links li a:hover {
    color: #ffffff;
    background: #00264c;
}
.intro-right video {
    width: 100%;
    border-radius: 10px;
}
    
.phone-area video {
    width: 75%;
    border-radius: 20px;
}

.vid-wrap video {
    width: 100%;
    border-radius: 10px;
}
@media(max-width:991px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .nav-links {
        gap: 0;
    }

    .opt-title {
        font-size: 1.15rem;
    }
}

@media(max-width:767px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .hero {
        min-height: 380px;
        padding-top: 80px;
    }
    .hero-inner {
        max-width: 100%;
        padding: 1rem;
    }
    .opt-badge {
    padding: 10px 28px 10px 5px;
    }
    .sec-heading h2 {
        font-size: 1.4rem;
    }

    .tips-sec .head h2 {
        font-size: 1.3rem;
    }

    .great-for h2 {
        font-size: 1.4rem;
    }

    .opt-title {
        font-size: 1.05rem;
    }

    .nav-desktop {
        display: none !important;
    }
}