:root {
    --brand: #00bfa6;
    --brand-dark: #009985;
    --brand-darker: #0f2531;
    --ink: #10222e;
    --muted: #5a6b76;
    --bg: #ffffff;
    --bg-soft: #f3f8f8;
    --bg-navy: #102330;
    --accent: #ff7a59;
    --card-shadow: 0 12px 40px rgba(15, 37, 49, 0.08);
    --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.9;
    font-size: 16px;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--brand);
    color: #fff;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 8px 22px rgba(0, 191, 166, 0.28);
}
.btn:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 191, 166, 0.34); }
.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-alt {
    background: #fff;
    color: var(--brand-darker);
    box-shadow: 0 8px 22px rgba(16, 34, 46, 0.08);
}
.btn-alt:hover { background: #f8fbfb; }

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e6eef3;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--brand-darker);
}
.logo .mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand-darker));
    display: grid;
    place-items: center;
    color: #fff;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--brand); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle svg { width: 28px; height: 28px; stroke: var(--ink); }

.hero {
    position: relative;
    min-height: 670px;
    overflow: hidden;
    color: #edf7f7;
    background:
        radial-gradient(800px 430px at 16% -8%, rgba(0, 191, 166, .19), transparent 68%),
        radial-gradient(660px 440px at 92% 58%, rgba(32, 104, 126, .35), transparent 70%),
        linear-gradient(140deg, #08171f 0%, #0b202b 52%, #102e3a 100%);
    padding: 72px 0 78px;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .16;
    background-image: linear-gradient(rgba(184, 236, 234, .2) 1px, transparent 1px), linear-gradient(90deg, rgba(184, 236, 234, .2) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.hero-top {
    position: relative;
    max-width: 780px;
    margin: 0 auto 46px;
    text-align: center;
}
.hero h1 {
    font-size: clamp(2.05rem, 4vw, 3.4rem);
    line-height: 1.3;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.045em;
    margin-bottom: 22px;
}
.hero h1 .hl { color: #52e4d0; }
.hero h2 {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 600;
    line-height: 1.7;
    color: #bed0d6;
    margin-bottom: 14px;
    max-width: 560px;
    margin-inline: auto;
}
.hero p.lead {
    font-size: 1.06rem;
    color: #bed0d6;
    margin-bottom: 30px;
    max-width: 560px;
    margin-inline: auto;
}
.hero-top .hero-actions, .hero-top .hero-points { justify-content: center; }
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #91ebdf;
    font-size: .84rem;
    font-weight: 800;
}
.hero-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #36d2bd;
    box-shadow: 0 0 0 5px rgba(54, 210, 189, .13);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.hero-actions .btn {
    background: #f4fbfb;
    color: #102c36;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
}
.hero-actions .btn:hover { background: #fff; }
.hero-actions .login-link {
    color: #d3e3e6;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hero-actions .login-link:hover { color: #69e5d4; }
.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}
.hero-points span {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(185, 232, 231, .18);
    color: #d9eeee;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
}
.utm-note {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== دموی تعاملی پنل هاب (بازسازی از hub/header.php و ویوهای واقعی) ===== */
.hub-demo-wrap { position: relative; }
.hub-demo-badge {
    position: absolute;
    top: -14px;
    right: 22px;
    z-index: 5;
    padding: 5px 16px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(255, 122, 89, .4);
}
.hub-demo {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(185, 235, 233, .22);
    background: #f5f8fa;
    box-shadow: 0 36px 90px rgba(0, 0, 0, .45);
    font-size: 15px;
}
.hub-demo * { box-sizing: border-box; }
.hd-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    background: #0d1e28;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.hd-chrome .dot { width: 11px; height: 11px; border-radius: 50%; }
.hd-chrome .dot:nth-child(1) { background: #ff5f57; }
.hd-chrome .dot:nth-child(2) { background: #febc2e; }
.hd-chrome .dot:nth-child(3) { background: #28c840; }
.hd-chrome .addr {
    flex: 1;
    max-width: 340px;
    margin-inline: auto;
    padding: 4px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: #9fbdc2;
    font-size: .72rem;
    text-align: center;
    direction: ltr;
}
.hd-body { display: grid; grid-template-columns: 218px minmax(0, 1fr); min-height: 560px; }
/* سایدبار — همان گرادیان و رنگ‌های hub/header.php */
.hd-sidebar {
    background: linear-gradient(180deg, #1E2A38 0%, #223445 120%);
    color: #eef5f8;
    padding: 16px 12px;
    overflow-y: auto;
    max-height: 640px;
    scrollbar-width: thin;
}
.hd-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: .92rem;
    font-weight: 800;
    padding-bottom: 12px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.hd-section-title {
    position: relative;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin: 14px 0 6px;
    color: #8fa8bb;
    padding-right: .75rem;
}
.hd-section-title::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #00BFA6;
    transform: translateY(-50%);
}
.hd-link {
    width: 100%;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .5rem .7rem .5rem .6rem;
    border-radius: .9rem;
    font-size: .76rem;
    font-weight: 500;
    font-family: inherit;
    color: #d5e2ea;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: right;
    transition: .2s;
}
.hd-link svg { width: 17px; height: 17px; stroke: #00BFA6; flex-shrink: 0; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hd-link:hover { background: rgba(255,255,255,.07); color: #fff; }
.hd-link.active { background: #00BFA6; color: #0f2531; box-shadow: 0 4px 14px -3px rgba(0,191,166,.55); }
.hd-link.active svg { stroke: #0f2531; }
.hd-badge {
    margin-right: auto;
    font-size: .58rem;
    padding: .15rem .5rem;
    border-radius: .7rem;
    background: #00BFA6;
    color: #073a33;
    font-weight: 700;
    box-shadow: 0 0 0 1px rgba(255,255,255,.25);
}
.hd-badge.orange { background: #FF7A59; color: #fff; }
/* ناحیه اصلی */
.hd-main { min-width: 0; background: #f5f8fa; display: flex; flex-direction: column; }
.hd-header {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: .8rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.hd-header-title { font-size: 1.15rem; font-weight: 800; letter-spacing: -.5px; color: #1E2A38; }
.hd-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: .4rem .5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: .55rem;
    cursor: pointer;
}
.hd-menu-backdrop { display: none; }
@keyframes hd-menu-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 191, 166, .5); }
    50% { transform: scale(1.12); }
    70% { transform: scale(1); box-shadow: 0 0 0 12px rgba(0, 191, 166, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 191, 166, 0); }
}
.hd-userbox {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .72rem;
    color: #1E2A38;
    border: 1px solid #e2e8f0;
    padding: .45rem .9rem;
    border-radius: 2rem;
}
.hd-userbox a {
    color: #FF7A59;
    font-weight: 600;
    font-size: .66rem;
    padding: .3rem .8rem;
    border: 1px solid #FF7A59;
    border-radius: 1.2rem;
}
.hd-view { padding: 1.1rem 1.4rem 1.5rem; overflow-y: auto; max-height: 560px; }
.hd-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-bottom: 1rem; }
.hd-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    box-shadow: 0 4px 18px -2px rgba(30,42,56,.08);
    position: relative;
}
.hd-card .lbl { font-size: .72rem; color: #64748b; margin-bottom: .25rem; }
.hd-card .val { font-size: 1.7rem; font-weight: 800; color: #1E2A38; }
.hd-btn {
    display: inline-block;
    padding: .42rem .8rem;
    background: #00BFA6;
    color: #fff;
    border: none;
    border-radius: .55rem;
    font-size: .68rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,191,166,.3);
    transition: background .2s;
}
.hd-btn:hover { background: #009e8a; }
.hd-btn-dark { background: #0f172a; box-shadow: none; }
.hd-btn-dark:hover { background: #1e293b; }
.hd-btn-outline { background: #fff; color: #00BFA6; border: 1px solid #00BFA6; box-shadow: none; }
.hd-btn-outline:hover { background: #f0fdfa; }
.hd-panel {
    background: #fff;
    border-radius: 1rem;
    padding: 1.1rem;
    box-shadow: 0 4px 18px -2px rgba(30,42,56,.08);
}
.hd-panel h4 { font-size: .85rem; font-weight: 800; color: #1E2A38; margin-bottom: .8rem; }
.hd-search { display: flex; gap: .5rem; margin-bottom: .9rem; flex-wrap: wrap; }
.hd-search input {
    border: 1px solid #cbd5e1;
    border-radius: .5rem;
    padding: .38rem .7rem;
    font-size: .72rem;
    font-family: inherit;
    width: min(250px, 100%);
    color: #1E2A38;
}
.hd-search input:focus { outline: 2px solid #00BFA6; border-color: transparent; }
.hd-table-wrap { overflow-x: auto; border: 1px solid #e2e8f0; border-radius: .8rem; }
.hd-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: .7rem; }
.hd-table thead { background: #f8fafc; color: #475569; }
.hd-table th { padding: .55rem .7rem; text-align: right; font-weight: 700; white-space: nowrap; }
.hd-table td { padding: .55rem .7rem; border-top: 1px solid #eef2f6; color: #334155; vertical-align: top; }
.hd-table tr.expired { background: #fff1f2; }
.hd-table .uname { font-weight: 700; color: #1E2A38; }
.hd-table .sub { font-size: .62rem; color: #94a3b8; margin-top: 2px; }
.hd-table .exp-danger { color: #FF7A59; }
.hd-devcount { color: #00BFA6; font-weight: 800; }
.hd-linklike { background: none; border: none; color: #2563eb; text-decoration: underline; font-size: .66rem; font-family: inherit; cursor: pointer; padding: 0; }
.hd-act {
    display: inline-block;
    padding: .22rem .6rem;
    margin: .1rem 0;
    border-radius: .5rem;
    border: 1px solid #00BFA6;
    background: #fff;
    color: #00BFA6;
    font-size: .6rem;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
}
.hd-act.slate { border-color: #cbd5e1; color: #475569; }
.hd-act.rose { border-color: #fda4af; color: #e11d48; }
.hd-hint { background: #f8fafc; border-radius: .8rem; padding: .8rem 1rem; color: #64748b; font-size: .72rem; margin-top: 1rem; }
.hd-news li { list-style: none; padding: .35rem 0; border-bottom: 1px dashed #e2e8f0; font-size: .72rem; }
.hd-news li:last-child { border-bottom: none; }
.hd-news a { color: #0369a1; }
.hd-news .d { font-size: .6rem; color: #94a3b8; margin-right: 4px; }
.hd-grid-2 { display: grid; grid-template-columns: 2fr 1fr; gap: .8rem; }
.hd-radio-row { display: flex; flex-wrap: wrap; gap: .9rem; font-size: .72rem; color: #334155; margin-bottom: .9rem; }
.hd-radio-row label { display: flex; align-items: center; gap: .35rem; cursor: pointer; }
.hd-radio-row input { accent-color: #00BFA6; }
.hd-buy-box { border: 1px solid #e2e8f0; border-radius: .8rem; padding: .9rem; font-size: .72rem; color: #475569; line-height: 2; }
.hd-buy-box b { color: #1E2A38; }
.hd-toast {
    position: absolute;
    bottom: 18px;
    right: 18px;
    z-index: 30;
    background: #0f172a;
    color: #fff;
    padding: .55rem 1rem;
    border-radius: .7rem;
    font-size: .72rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
    opacity: 0;
    transform: translateY(8px);
    transition: .25s;
    pointer-events: none;
}
.hd-toast.show { opacity: 1; transform: translateY(0); }
/* مودال مدیریت دستگاه‌ها */
.hd-modal {
    position: absolute;
    inset: 0;
    z-index: 20;
    background: rgba(0,0,0,.3);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.hd-modal.open { display: flex; }
.hd-modal-card {
    background: #fff;
    border-radius: 1rem;
    width: min(680px, 100%);
    max-height: 88%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.hd-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .7rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: .78rem;
    font-weight: 800;
    color: #1E2A38;
}
.hd-modal-close { background: none; border: none; font-size: 1.3rem; color: #64748b; cursor: pointer; line-height: 1; }
.hd-modal-body { padding: .8rem; overflow: auto; }
.hd-status-ok { display: inline-block; padding: .12rem .5rem; border-radius: 999px; background: #d1fae5; color: #047857; font-size: .58rem; font-weight: 700; }
.hd-status-warn { display: inline-block; padding: .12rem .5rem; border-radius: 999px; background: #ffedd5; color: #c2410c; font-size: .58rem; font-weight: 700; }
.hd-empty { text-align: center; color: #94a3b8; font-size: .72rem; padding: 1.4rem 0; }

section.block { padding: 80px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 900;
    margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Trust */
.trust-section { background: var(--bg-soft); }
.trust-section .section-head { margin-bottom: 36px; }
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 28px;
}
.trust-badge-card {
    background: #fff;
    border: 1px solid #e4eef2;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 28px 22px 24px;
    text-align: center;
}
.trust-badge-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    margin-bottom: 16px;
}
.trust-badge-logo img {
    max-width: 140px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-inline: auto;
}
.trust-badge-logo.avc img { max-width: 160px; max-height: 78px; }
.trust-badge-logo.eun img { max-width: 92px; max-height: 92px; }
.trust-badge-logo.nikmehr img { max-width: 120px; max-height: 72px; border-radius: 12px; }
.trust-badge-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--ink);
}
.trust-badge-card .trust-caption {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.8;
}
.trust-badge-card .trust-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-dark);
    font-weight: 700;
    font-size: .9rem;
}
.trust-badge-card .trust-link:hover { color: var(--brand-darker); }
.trust-badge-card .trust-link svg { width: 14px; height: 14px; }
.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: #fff;
    border: 1px solid #e4eef2;
    border-radius: var(--radius);
    padding: 22px 18px;
}
.trust-strip .trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.trust-strip b {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--brand-dark);
}
.trust-strip span { font-size: .86rem; color: var(--muted); }

.eyebrow {
    display: inline-block;
    color: var(--brand);
    font-weight: 800;
    letter-spacing: .4px;
    margin-bottom: 10px;
    font-size: .9rem;
}

.features-section { background: #fff; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.feature-card {
    background: #fff;
    border: 1px solid #e5eff1;
    border-radius: 22px;
    padding: 26px 22px;
    box-shadow: var(--card-shadow);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(0,191,166,.12);
    color: var(--brand-dark);
    margin-bottom: 18px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 {
    font-size: 1.06rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--muted);
    font-size: .93rem;
}

.premium { background: linear-gradient(180deg, #fff, #f7fbfb); }
.prem-layout {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 40px;
    align-items: start;
}
.prem-illus {
    min-height: 430px;
    position: sticky;
    top: 100px;
    display: grid;
    place-items: center;
}
.illus-card {
    width: 100%;
    max-width: 380px;
    background: linear-gradient(180deg, #102330, #173645);
    color: #fff;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 30px 60px rgba(16,35,48,.22);
    display: none;
}
.illus-card.active { display: block; }
.illus-card svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
}

.products-section { background: #fff; }
.products-visual {
    min-height: 430px;
    position: sticky;
    top: 100px;
    display: grid;
    place-items: center;
}
.product-panel {
    width: 100%;
    max-width: 380px;
    background: linear-gradient(180deg, #f3f8f8, #fff);
    border: 1px solid #e6eef3;
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    display: none;
    text-align: center;
}
.product-panel.active { display: block; }
.product-panel img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.product-panel .product-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 191, 166, .12);
    color: var(--brand-dark);
    font-size: .85rem;
    font-weight: 700;
}

.accordion { display: flex; flex-direction: column; }
.acc-item { border-bottom: 1px solid #e0e9ef; }
.acc-head {
    width: 100%;
    text-align: right;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.acc-head h3 {
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--muted);
    transition: color .2s;
}
.acc-item.open .acc-head h3 { color: var(--brand-darker); }
.acc-head .chev {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    color: var(--brand);
    transition: transform .3s;
}
.acc-item.open .acc-head .chev { transform: rotate(180deg); }
.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    border-right: 3px solid var(--brand);
    margin-right: 2px;
}
.acc-body .inner { padding: 0 18px 24px; }
.acc-body p { color: var(--muted); margin-bottom: 10px; line-height: 1.9; }
.acc-body .feat { color: var(--ink); }
.acc-body .feat b { font-weight: 800; }
.acc-body .avail { color: #7d8f99; font-size: .9rem; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}
.step-card {
    background: #fff;
    border: 1px solid #e6eef3;
    border-radius: var(--radius);
    padding: 26px;
    position: relative;
}
.step-card .n {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.15rem;
    margin-bottom: 14px;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 800; }
.step-card p { color: var(--muted); font-size: .93rem; }

.cta-band {
    background: radial-gradient(1000px 400px at 20% 0%, #1a4250, #102330);
    color: #fff;
    text-align: center;
    padding: 82px 0;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 16px; }
.cta-band p { color: #c9dae4; max-width: 660px; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-band .cta-stack {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.utm-note {
    margin-top: 18px;
    color: #9ed8cb;
    font-size: .9rem;
}

.faq { background: var(--bg-soft); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid #e6eef3;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
}
.faq-q {
    width: 100%;
    text-align: right;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: inherit;
}
.faq-q .plus {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #def7f2;
    color: var(--brand-dark);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    font-weight: 900;
    transition: transform .3s, background .3s;
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    color: var(--muted);
}
.faq-a .inner { padding: 0 24px 22px; }
.faq-a ul { padding-right: 20px; }

footer {
    background: var(--bg-navy);
    color: #c9dae4;
    padding: 44px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: 28px;
    align-items: center;
}
.footer-brand p { color: #9db6c4; font-size: .9rem; max-width: 360px; margin-top: 12px; }
.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #e8f4fa;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .02em;
    direction: ltr;
}
.footer-phone svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--brand);
}
.footer-phone:hover { color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: #9db6c4; font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.footer-badge {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 12px;
    display: grid;
    place-items: center;
    padding: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
    transition: transform .2s;
}
.footer-badge:hover { transform: translateY(-2px); }
.footer-badge img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.footer-bottom {
    border-top: 1px solid #1c3a4a;
    padding-top: 20px;
    margin-top: 28px;
    text-align: center;
    color: #7a94a2;
    font-size: .85rem;
}

@media (max-width: 1040px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .prem-layout { grid-template-columns: 1fr; gap: 12px; }
    .prem-illus, .products-visual { position: static; min-height: auto; }
    .products-section .products-visual { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-badges { grid-column: 1 / -1; justify-content: center; }
    .trust-badges { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
    .trust-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        background: #fff;
        padding: 20px;
        border-bottom: 1px solid #e6eef3;
        gap: 16px;
    }
    .nav-cta .btn {
        display: inline-flex;
        padding: 10px 16px;
        font-size: .88rem;
    }
    .trust-badges { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
    .trust-strip { grid-template-columns: 1fr; gap: 16px; }
    .hero { padding: 55px 0 58px; min-height: 0; }
    .hero-top { margin-bottom: 32px; }
    .hd-body { grid-template-columns: 1fr; min-height: 0; }
    .hd-menu-btn {
        display: inline-flex;
        border-color: #00BFA6;
        animation: hd-menu-pulse 2s ease-in-out infinite;
    }
    .hub-demo.menu-seen .hd-menu-btn { animation: none; }
    .hd-sidebar {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(250px, 82%);
        max-height: none;
        z-index: 15;
        box-shadow: -14px 0 34px rgba(0, 0, 0, .3);
    }
    .hub-demo.menu-open .hd-sidebar { display: block; }
    .hd-menu-backdrop {
        display: none;
        position: absolute;
        inset: 0;
        z-index: 14;
        background: rgba(15, 23, 42, .35);
    }
    .hub-demo.menu-open .hd-menu-backdrop { display: block; }
    .hd-cards { grid-template-columns: 1fr; }
    .hd-grid-2 { grid-template-columns: 1fr; }
    .hd-view { padding: .9rem; max-height: 480px; }
    .hd-header { padding: .7rem .9rem; }
    .hd-header-title { font-size: .95rem; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-links { align-items: center; }
    .footer-brand p { margin-inline: auto; }
    .footer-brand .logo { justify-content: center; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hd-userbox span { display: none; }
    .hd-chrome .addr { font-size: .6rem; }
}
