:root {
    --brand: #0B5ED7;
    --brand-hover: #0A53BE;
    --brand-light: #2563EB;
    --hero-from: #020F2B;
    --hero-mid: #06224f;
    --hero-to: #0B5ED7;
    --blue-50: #EFF6FF;
    --blue-100: #DBEAFE;
    --gray-950: #030712;
    --gray-900: #101828;
    --gray-800: #1E2939;
    --gray-700: #364153;
    --gray-600: #4A5565;
    --gray-500: #6A7282;
    --gray-400: #99A1AF;
    --gray-300: #CBD5E1;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --card-dark: #0A1B3D;
    --container: 1200px;
    --gutter: 24px;
    --radius-card: 14px;
    --radius-input: 10px;
    --shadow-card: 0 1px 2px rgba(16, 24, 40, .04), 0 1px 3px rgba(16, 24, 40, .06);
}

body {
    font-family: 'outfit', sans-serif;
}

img,
svg {
    display: block;
    max-width: 100%
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none
}

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

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--brand);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-input);
    height: 42px;
    padding: 0 18px;
    transition: background .2s, transform .1s
}

.btn:hover {
    background: var(--brand-hover)
}

.btn:active {
    transform: translateY(1px)
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    background: linear-gradient(120deg, var(--hero-from) 0%, var(--hero-mid) 55%, var(--hero-to) 100%);
    color: #fff;
    overflow: hidden
}

.hero-top {
    padding: 26px 0 50px
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 34px;
    flex-wrap: wrap
}

.breadcrumb a {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, .82);
    transition: color .2s
}

.breadcrumb a:hover {
    color: #fff
}

.breadcrumb .crumb-sep svg {
    width: 13px;
    height: 13px;
    stroke: rgba(255, 255, 255, .55);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.breadcrumb .current {
    color: #fff;
    font-weight: 500
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center
}

.hero-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 30px 32px
}

.hero h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.015em;
    margin-bottom: 16px
}

.hero p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.85
}

.video-thumb {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(2, 15, 43, .3);
    aspect-ratio: 16/9
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(2, 15, 43, .4)
}

.play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform .2s
}

.play-btn:hover {
    transform: scale(1.08)
}

.play-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--brand);
    margin-left: 3px
}

/* Stats strip */
.stats {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(2, 15, 43, .35);
    padding: 22px 0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px
}

.stat .si {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px
}

.stat .si svg {
    width: 18px;
    height: 18px;
    stroke: #7FB3FF;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.stat .num {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1
}

.stat .lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .7)
}

/* ===================== FIRM INFO CARDS ===================== */
.firm {
    padding: 50px 0 40px
}

.firm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px
}

.firm-card {
    background: rgba(239, 246, 255, 1);
    border: 1px solid var(--blue-100);
    border-radius: var(--radius-card);
    padding: 24px 24px;
    position: relative;
    border-top:4cpx solid var(--brand);
}



.firm-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px
}

.firm-card .fi {
    margin-bottom: 13px
}

.firm-card .fi .k {
    font-size: 11px;
    color: var(--gray-500);
    margin-bottom: 2px
}

.firm-card .fi .v {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.5
}

.firm-card p {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 12px
}

.firm-card p:last-child {
    margin-bottom: 0
}

/* ===================== TRIAL (dark band) ===================== */
.trial {
    padding: 10px 0 50px
}

.trial-card {
    background: linear-gradient(120deg, var(--hero-from) 0%, var(--hero-mid) 55%, var(--hero-to) 100%);
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    color: #fff
}

.trial-card .ti {
    height: 100%;
    min-height: 300px
}

.trial-card .ti img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.trial-copy {
    padding: 36px 40px
}

.trial-copy h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 16px;
    line-height: 1.35
}

.trial-copy p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    margin-bottom: 22px
}

.trial-copy .btn-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-input);
    height: 44px;
    padding: 0 22px;
    transition: background .2s
}

.trial-copy .btn-light:hover {
    background: rgba(255, 255, 255, .22)
}

/* ===================== FAQ ===================== */
.faq {
    padding: 40px 0 50px
}

.faq h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -.01em;
    margin-bottom: 24px
}

.faq-item {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-card);
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .2s
}

.faq-item.open {
    box-shadow: var(--shadow-card)
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    background: var(--blue-50)
}

.faq-q .qi {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center
}

.faq-q .qi svg {
    width: 15px;
    height: 15px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round
}

.faq-q .qt {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900)
}

.faq-q .chev {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s
}

.faq-q .chev svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.faq-item.open .chev {
    transform: rotate(180deg)
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-item.open .faq-body {
    max-height: 500px
}

.faq-inner {
    padding: 20px
}

.faq-inner p {
    font-size: 12.5px;
    color: var(--gray-600);
    line-height: 1.8
}

/* ===================== RECOGNIZED ===================== */
.recognized {
    padding: 20px 0 50px;
    text-align: center
}

.recognized .rec-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--gray-400);
    text-transform: uppercase;
    margin-bottom: 24px
}

.rec-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px 48px
}

.rec-logos span {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-300);
    transition: color .2s
}

.rec-logos span:hover {
    color: var(--gray-500)
}

/* ===================== LONG-FORM ===================== */
.longform {
    padding: 30px 20px;
    display: flex;

    gap: 28px;
    max-width: 1200px;
    margin: auto;
}

.longform h2 {
    font-size: 23px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -.01em;
    margin-bottom: 18px;
}

.longform p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.85;
    margin-bottom: 16px;
    max-width: 900px;
}

.lf-list {
    list-style: none;
    margin: 22px 0;
}

.lf-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-700);
    margin-bottom: 11px;
}

.lf-list li svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.image-container {
    height: 100% !important;
    flex: 0 0 400px;
    width: 100%;
    /* Image container ko full width dene ke liye */
}

/* ===================== RESPONSIVE FIX ===================== */
@media (max-width: 992px) {
    .longform {
        flex-direction: column;
        /* Mobile par content aur image stack ho jayenge */
    }

    .image-container {
        flex: 0 0 auto;
        order: -1;
        /* Agar aap chahte hain image upar aaye */
        height: auto !important;
        margin-bottom: 20px;
    }

    .image-container img {
        width: 100%;
        height: auto;
    }
}

/* ===================== SLIDER NAV ===================== */
.slider-nav {
    padding: 20px 0 50px
}

.slider-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: var(--blue-50);
    border-radius: var(--radius-input);
    padding: 10px 12px
}

.slider-bar .nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
}

.slider-bar .nav-btn:hover {
    background: var(--brand-hover)
}

.slider-bar .nav-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.slider-bar .slide-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700)
}

/* ===================== CTA ===================== */
.cta-section {
    padding: 10px 0 80px
}

.cta-card {
    background: linear-gradient(120deg, var(--hero-from) 0%, var(--hero-mid) 55%, var(--hero-to) 100%);
    border-radius: 18px;
    padding: 46px 40px;
    color: #fff;
    text-align: center
}

.cta-card .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 16px
}

.cta-card .eyebrow svg {
    width: 13px;
    height: 13px;
    stroke: #7FB3FF;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cta-card h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.35;
    margin-bottom: 12px
}

.cta-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 26px;
    max-width: 620px;
    margin-inline: auto
}

.cta-card .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: var(--brand);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-input);
    height: 48px;
    padding: 0 26px;
    transition: transform .15s, box-shadow .2s
}

.cta-card .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25)
}

.cta-card .btn-white svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .hero h1 {
        font-size: 26px
    }

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

    .firm-grid {
        grid-template-columns: 1fr
    }

    .trial-card {
        grid-template-columns: 1fr
    }

    .trial-card .ti {
        min-height: 220px
    }
}

@media (max-width:680px) {
    .hero-top {
        padding: 22px 0 40px
    }

    .hero h1 {
        font-size: 23px
    }

    .firm h2,
    .trial-copy h2,
    .faq h2,
    .longform h2,
    .cta-card h2 {
        font-size: 20px
    }

    .trial-copy {
        padding: 28px 24px
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:480px) {
    :root {
        --gutter: 16px
    }

    .stats-grid {
        grid-template-columns: 1fr
    }

    .rec-logos {
        gap: 14px 28px
    }

    .rec-logos span {
        font-size: 14px
    }

    .cta-card {
        padding: 34px 20px
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        transition: none !important
    }

    html {
        scroll-behavior: auto
    }
}