/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1e293b;
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

button {
    font-family: inherit;
    cursor: pointer
}

/* ===== TOKENS ===== */
:root {
    --pri: #6366f1;
    --pri-h: #818cf8;
    --pri-d: #4f46e5;
    --acc: #06b6d4;
    --acc-h: #22d3ee;
    --mint: #10b981;
    --rose: #f43f5e;
    --amber: #f59e0b;
    --bg: #ffffff;
    --bg2: #f8fafc;
    --bg3: #f1f5f9;
    --border: #e2e8f0;
    --t1: #0f172a;
    --t2: #475569;
    --t3: #94a3b8;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-full: 9999px;
    --sh: 0 1px 3px rgba(0, 0, 0, .04), 0 6px 24px rgba(0, 0, 0, .06);
    --sh-lg: 0 4px 12px rgba(0, 0, 0, .04), 0 20px 50px rgba(0, 0, 0, .08);
    --tr: .25s cubic-bezier(.4, 0, .2, 1);
    --mw: 1160px;
}

.w {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 28px
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 64px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, .6)
}

.nav .w {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%
}

.nav-logo {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pri);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px
}

.nav-logo i {
    font-size: .95rem
}

.nav-mid {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto
}

.nav-mid a {
    font-size: .85rem;
    font-weight: 500;
    color: var(--t2);
    transition: color var(--tr)
}

.nav-mid a:hover {
    color: var(--pri)
}

.nav-cta {
    margin-left: auto;
    background: var(--pri);
    color: #fff;
    border: none;
    padding: 8px 22px;
    border-radius: var(--r-full);
    font-size: .82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all var(--tr);
    white-space: nowrap
}

.nav-cta:hover {
    background: var(--pri-d);
    box-shadow: 0 4px 16px rgba(99, 102, 241, .3)
}

.mob-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    padding: 6px
}

.mob-btn span {
    width: 20px;
    height: 2px;
    background: var(--t1);
    border-radius: 2px
}

/* ===== HERO — CENTERED SINGLE COLUMN ===== */
.hero {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--bg);
    position: relative
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--bg2));
    pointer-events: none
}

.hero .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 6px 18px 6px 10px;
    border-radius: var(--r-full);
    font-size: .78rem;
    font-weight: 600;
    color: var(--pri);
    margin-bottom: 28px
}

.hero .pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
    flex-shrink: 0
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--t1)
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--pri), var(--acc));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero .sub {
    font-size: 1.05rem;
    color: var(--t2);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.8
}

.hero .btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 64px
}

.btn-p {
    background: var(--pri);
    color: #fff;
    padding: 13px 30px;
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: .92rem;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all var(--tr);
    border: none
}

.btn-p:hover {
    background: var(--pri-d);
    box-shadow: 0 8px 24px rgba(99, 102, 241, .28)
}

.btn-g {
    background: var(--bg);
    color: var(--t1);
    padding: 13px 30px;
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: .92rem;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1.5px solid var(--border);
    transition: all var(--tr)
}

.btn-g:hover {
    border-color: var(--pri);
    color: var(--pri)
}

/* browser mockup */
.hero .mockup {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.mock-outer {
    background: #fff;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    border: 1px solid var(--border);
    overflow: hidden
}

.mock-bar {
    height: 40px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 7px
}

.mock-bar i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block
}

.mock-bar i:nth-child(1) {
    background: #ff5f57
}

.mock-bar i:nth-child(2) {
    background: #febc2e
}

.mock-bar i:nth-child(3) {
    background: #28c840
}

.mock-outer img {
    display: block;
    width: 100%
}

/* ===== METRICS STRIP — HORIZONTAL CHIPS ===== */
.metrics {
    padding: 48px 0 0;
    position: relative;
    z-index: 2
}

.metrics-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px
}

.metric {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    padding: 12px 28px 12px 20px;
    box-shadow: var(--sh)
}

.metric .ic {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0
}

.metric .ic.a {
    background: #ede9fe;
    color: var(--pri)
}

.metric .ic.b {
    background: #d1fae5;
    color: var(--mint)
}

.metric .ic.c {
    background: #cffafe;
    color: var(--acc)
}

.metric .ic.d {
    background: #fee2e2;
    color: var(--rose)
}

.metric h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--t1)
}

.metric span {
    font-size: .78rem;
    color: var(--t3);
    font-weight: 500
}

/* ===== SECTION ===== */
.sec {
    padding: 100px 0
}

.sec.alt {
    background: var(--bg2)
}

.sec-top {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px
}

.sec-top .tag {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--pri);
    margin-bottom: 10px
}

.sec-top h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 14px;
    color: var(--t1)
}

.sec-top p {
    font-size: .98rem;
    color: var(--t2);
    line-height: 1.7
}

/* ===== FEATURES — MAGAZINE LAYOUT ===== */
.mag {
    display: grid;
    gap: 20px
}

.mag-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 20px
}

.mag-row.flip {
    grid-template-columns: 1fr 1.3fr
}

.mag-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 36px 32px;
    transition: all var(--tr);
    position: relative;
    overflow: hidden
}

.mag-card:hover {
    box-shadow: var(--sh-lg);
    border-color: var(--pri-h)
}

.mag-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem
}

.badge.v1 {
    background: #ede9fe;
    color: #7c3aed
}

.badge.v2 {
    background: #dbeafe;
    color: #2563eb
}

.badge.v3 {
    background: #d1fae5;
    color: #059669
}

.badge.v4 {
    background: #ffedd5;
    color: #ea580c
}

.badge.v5 {
    background: #fce7f3;
    color: #db2777
}

.badge.v6 {
    background: #ccfbf1;
    color: #0d9488
}

.mag-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    padding-right: 50px
}

.mag-card p {
    font-size: .9rem;
    color: var(--t2);
    line-height: 1.75
}

/* single full-width feature cards for bottom row */
.mag-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

/* ===== SHOWCASE — FULL WIDTH IMAGE + OVERLAPPING INFO CARD ===== */
.show {
    padding: 100px 0
}

.show-block {
    position: relative;
    margin-bottom: 100px
}

.show-block:last-child {
    margin-bottom: 0
}

.show-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    border: 1px solid var(--border)
}

.show-img img {
    width: 100%;
    display: block
}

.show-info {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 40px 36px;
    box-shadow: var(--sh-lg);
    max-width: 480px;
    position: absolute;
    bottom: -48px
}

.show-block:nth-child(1) .show-info {
    right: 40px
}

.show-block:nth-child(2) .show-info {
    left: 40px
}

.show-info h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -.02em
}

.show-info p {
    font-size: .92rem;
    color: var(--t2);
    line-height: 1.75;
    margin-bottom: 20px
}

.show-info .checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: .9rem;
    font-weight: 500
}

.show-info .checks li i {
    color: var(--mint);
    font-size: .8rem
}

/* ===== USE CASES — 2x2 GRID ===== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.uc {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 32px 28px;
    transition: all var(--tr)
}

.uc:hover {
    box-shadow: var(--sh-lg);
    border-color: var(--pri-h)
}

.uc .ic-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--pri), var(--acc));
    color: #fff
}

.uc h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px
}

.uc p {
    font-size: .86rem;
    color: var(--t2);
    line-height: 1.7;
    margin-bottom: 16px
}

.uc .tag-sm {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ecfdf5;
    color: #059669;
    padding: 4px 14px;
    border-radius: var(--r-full);
    font-size: .75rem;
    font-weight: 600
}

/* ===== SPECS — TABLE STYLE ===== */
.spec-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.sp {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: all var(--tr)
}

.sp:hover {
    box-shadow: var(--sh)
}

.sp-head {
    padding: 18px 24px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 700
}

.sp-head i {
    color: var(--pri);
    font-size: 1.1rem
}

.sp-body {
    padding: 20px 24px
}

.sp-body li {
    padding: 5px 0;
    font-size: .88rem;
    color: var(--t2)
}

.sp-body li strong {
    color: var(--t1);
    font-weight: 600
}

/* ===== DOWNLOAD CTA — CENTERED GRADIENT ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 40%, #818cf8 100%);
    color: #fff;
    position: relative;
    overflow: hidden
}

.cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06)
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04)
}

.cta .w {
    position: relative;
    z-index: 1
}

.cta-top {
    text-align: center;
    margin-bottom: 40px
}

.cta-top h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 10px
}

.cta-top p {
    opacity: .8;
    font-size: 1rem
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-lg);
    padding: 44px
}

.cta-l .dl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    padding: 5px 16px;
    border-radius: var(--r-full);
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 14px
}

.cta-l h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px
}

.cta-l>p {
    font-size: .88rem;
    opacity: .75;
    margin-bottom: 18px
}

.cta-l .ck li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 4px 0;
    font-size: .88rem;
    font-weight: 500
}

.cta-l .ck li i {
    color: var(--acc-h)
}

.cta-r {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px
}

.dl-big {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: var(--pri);
    padding: 15px 32px;
    border-radius: var(--r-full);
    font-size: 1rem;
    font-weight: 700;
    transition: all var(--tr)
}

.dl-big:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .2)
}

.cta-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.cta-box {
    background: rgba(255, 255, 255, .07);
    border-radius: var(--r-sm);
    padding: 14px
}

.cta-box h4 {
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px
}

.cta-box li,
.cta-box p {
    font-size: .78rem;
    opacity: .75;
    padding: 1px 0;
    line-height: 1.5
}

/* ===== DOWNLOAD SOURCES ===== */
.src-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px
}

.src {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 28px 22px;
    text-align: center;
    transition: all var(--tr)
}

.src:hover {
    box-shadow: var(--sh)
}

.src .sic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg3);
    color: var(--pri);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.2rem
}

.src h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px
}

.src p {
    font-size: .84rem;
    color: var(--t2);
    line-height: 1.6
}

.safe-box {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid #bbf7d0;
    border-radius: var(--r-md);
    padding: 28px 36px
}

.safe-box h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 9px
}

.safe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

.safe-it {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: #15803d
}

.safe-it i {
    margin-top: 3px
}

/* ===== GUIDE — HORIZONTAL STEP CARDS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px
}

.step {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    transition: all var(--tr)
}

.step:hover {
    box-shadow: var(--sh);
    border-color: var(--pri-h)
}

.step .sn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pri);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, .25)
}

.step h3 {
    font-size: .98rem;
    font-weight: 700;
    margin-bottom: 8px
}

.step p {
    font-size: .82rem;
    color: var(--t2);
    line-height: 1.65
}

.step-arrow {
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--border);
    font-size: .8rem;
    z-index: 1
}

.step:last-child .step-arrow {
    display: none
}

.step-note {
    text-align: center;
    margin-top: 32px;
    color: var(--t3);
    font-size: .88rem
}

/* ===== TESTIMONIALS — STACKED CARD + SIDE CARDS ===== */
.reviews {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: stretch
}

.rev {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 36px 32px;
    transition: all var(--tr);
    display: flex;
    flex-direction: column
}

.rev:hover {
    box-shadow: var(--sh)
}

.rev .stars {
    color: #fbbf24;
    font-size: .82rem;
    margin-bottom: 14px;
    display: flex;
    gap: 2px
}

.rev .qt {
    font-size: .95rem;
    color: var(--t2);
    line-height: 1.75;
    flex: 1;
    font-style: italic;
    margin-bottom: 20px
}

.rev-who {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto
}

.rev-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pri-h), var(--acc-h));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: .85rem;
    flex-shrink: 0
}

.rev-nm h4 {
    font-size: .88rem;
    font-weight: 700
}

.rev-nm p {
    font-size: .76rem;
    color: var(--t3)
}

.rev-side {
    display: flex;
    flex-direction: column;
    gap: 20px
}

/* ===== FAQ — TWO COLUMN ACCORDION ===== */
.faq-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 920px;
    margin: 0 auto
}

.fq {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: all var(--tr)
}

.fq:hover {
    border-color: var(--pri-h)
}

.fq-q {
    padding: 18px 22px;
    font-size: .92rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: var(--t1);
    font-family: inherit;
    cursor: pointer
}

.fq-q i {
    color: var(--pri);
    font-size: .7rem;
    transition: transform var(--tr);
    flex-shrink: 0;
    margin-left: 10px
}

.fq-a {
    padding: 0 22px 18px;
    font-size: .88rem;
    color: var(--t2);
    line-height: 1.7;
    display: none
}

.fq.open .fq-a {
    display: block
}

.fq.open .fq-q i {
    transform: rotate(180deg)
}

/* ===== FOOTER ===== */
.ft {
    background: #0f172a;
    color: rgba(255, 255, 255, .65);
    padding: 72px 0 0
}

.ft-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.ft-brand h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px
}

.ft-brand p {
    font-size: .85rem;
    line-height: 1.6
}

.ft-col h4 {
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px
}

.ft-col li {
    padding: 4px 0;
    font-size: .85rem
}

.ft-col a:hover {
    color: var(--pri-h)
}

.ft-bot {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .78rem
}

.ft-bot a {
    color: var(--pri-h)
}

.ft-bot a:hover {
    text-decoration: underline
}

/* ===== DOWNLOAD PAGE SPECIFIC ===== */
.dl-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%)
}

.dl-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 16px
}

.dl-hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--pri), var(--acc));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.dl-hero .sub {
    font-size: 1rem;
    color: var(--t2);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7
}

.dl-hero .btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px
}

.dl-hero .mockup {
    max-width: 740px;
    margin: 0 auto
}

/* download main card for download page */
.dl-main {
    padding: 80px 0
}

.dl-main-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr
}

.dl-main-l {
    padding: 44px 40px;
    background: var(--bg2)
}

.dl-main-l .ver-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.dl-main-l .ver-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: var(--r-full);
    font-size: .78rem;
    font-weight: 600;
    color: var(--pri)
}

.dl-main-l h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px
}

.dl-main-l>p {
    font-size: .9rem;
    color: var(--t2);
    margin-bottom: 20px
}

.dl-main-l .ck li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 5px 0;
    font-size: .9rem;
    font-weight: 500;
    color: var(--t1)
}

.dl-main-l .ck li i {
    color: var(--mint)
}

.dl-main-r {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px
}

.dl-main-r .dl-big {
    margin-bottom: 8px
}

.dl-info-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.dl-info-card {
    background: var(--bg2);
    border-radius: var(--r-sm);
    padding: 18px
}

.dl-info-card h4 {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--t1)
}

.dl-info-card h4 i {
    color: var(--pri);
    font-size: .85rem
}

.dl-info-card li,
.dl-info-card p {
    font-size: .84rem;
    color: var(--t2);
    padding: 2px 0;
    line-height: 1.6
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {

    .mag-row,
    .mag-row.flip {
        grid-template-columns: 1fr
    }

    .mag-full {
        grid-template-columns: 1fr
    }

    .show-info {
        position: static;
        max-width: 100%;
        margin-top: 20px
    }

    .spec-table {
        grid-template-columns: 1fr
    }

    .cta-card {
        grid-template-columns: 1fr
    }

    .src-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .steps {
        grid-template-columns: repeat(3, 1fr)
    }

    .step-arrow {
        display: none !important
    }

    .reviews {
        grid-template-columns: 1fr
    }

    .rev-side {
        flex-direction: row
    }

    .faq-cols {
        grid-template-columns: 1fr
    }

    .ft-top {
        grid-template-columns: 1fr 1fr
    }

    .dl-main-card {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .nav-mid {
        display: none
    }

    .mob-btn {
        display: flex
    }

    .sec {
        padding: 70px 0
    }

    .steps {
        grid-template-columns: 1fr 1fr
    }

    .src-grid {
        grid-template-columns: 1fr
    }

    .safe-grid {
        grid-template-columns: 1fr
    }

    .cta-boxes {
        grid-template-columns: 1fr
    }

    .ft-top {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .ft-bot {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }

    .rev-side {
        flex-direction: column
    }

    .dl-info-2col {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 110px 0 40px
    }

    .dl-hero {
        padding: 110px 0 40px
    }
}

@media(max-width:480px) {
    .steps {
        grid-template-columns: 1fr
    }

    .metric {
        padding: 10px 18px 10px 14px
    }

    .metric h4 {
        font-size: 1rem
    }
}