/* ─── RESET ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #0b1c35;
    background: #fff;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}

/* ─── COLORS ─── */
:root {
    --orange: #2b5740;
    --orange-h: #1c3829;
    --navy: #0b1c35;
    --navy2: #0f2442;
    --bg: #f4f5f7;
    --border: #e5e7eb;
    --muted: #6b7280;
    --light: #9ca3af;
}

/* ══════════════════════
   NAVBAR
══════════════════════ */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}
.site-nav .container {
    display: flex;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--navy);
    letter-spacing: -0.025em;
    margin-right: 40px;
    flex-shrink: 0;
}
.nav-brand-icon {
    width: 28px;
    height: 28px;
    background: var(--orange);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nav-brand-icon svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    padding: 6px 14px;
    border-radius: 6px;
    transition: color 0.15s;
}
.nav-links a.active {
    color: var(--orange);
    font-weight: 600;
}
.nav-links a:hover {
    color: var(--orange);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}
.btn-nav-signin {
    background: transparent;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.btn-nav-signin:hover {
    background: var(--navy);
    color: #fff;
}
.btn-nav-try {
    background: var(--navy);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.btn-nav-try:hover {
    background: var(--navy2);
}

/* ══════════════════════
   HERO
══════════════════════ */
.hero {
    background: var(--bg);
    position: relative;
    overflow: hidden;
    padding: 64px 0 0;
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.055) 1px, transparent 1px);
    background-size: 42px 42px;
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.hero-left {
    flex: 0 0 52%;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 5px 14px 5px 5px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    margin-bottom: 28px;
}
.hero-badge-pill {
    background: var(--orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}
.hero-title {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--navy);
    margin-bottom: 18px;
    text-align: center;
}
.hero-title .accent {
    color: var(--orange);
}
.hero-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    text-align: center;
    max-width: 420px;
    margin-bottom: 36px;
}
.hero-btns {
    display: flex;
    gap: 14px;
    align-items: center;
}
.btn-hero-out {
    background: #fff;
    border: 1.5px solid #d1d5db;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.btn-hero-out:hover {
    border-color: var(--navy);
}
.btn-hero-solid {
    background: var(--navy);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
    box-shadow: 0 4px 20px rgba(11, 28, 53, 0.28);
}
.btn-hero-solid:hover {
    background: var(--navy2);
}

/* Floating cards */
.flt {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 36px rgba(11, 28, 53, 0.13);
    z-index: 10;
    padding: 14px 16px;
}
.flt-sms {
    left: -40px;
    top: 10px;
    width: 160px;
    animation: fltFloat 3.5s ease-in-out infinite;
}
.flt-del {
    right: -30px;
    top: 20px;
    width: 215px;
    animation: fltFloat 3.5s ease-in-out infinite 1.2s;
}
.flt-roi {
    left: -50px;
    bottom: 100px;
    width: 188px;
    animation: fltFloat 3.5s ease-in-out infinite 0.6s;
}
@keyframes fltFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}
.flt-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
}
.flt-sub {
    font-size: 0.58rem;
    color: #9ca3af;
    line-height: 1.4;
    margin-top: 4px;
}

/* ── Dashboard mockup ── */
.hero-right {
    flex: 1;
    position: relative;
    padding-left: 20px;
}
.dash-wrap {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    box-shadow:
        0 -8px 60px rgba(11, 28, 53, 0.13),
        0 0 0 1px rgba(11, 28, 53, 0.06);
    background: #fff;
    position: relative;
    z-index: 5;
}
.dash-topbar {
    background: #f9fafb;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 9px 14px;
    gap: 8px;
}
.dash-brand {
    display: flex;
    align-items: center;
    gap: 5px;
}
.dash-brand-box {
    width: 20px;
    height: 20px;
    background: var(--orange);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dash-brand-box svg {
    width: 11px;
    height: 11px;
    fill: #fff;
}
.dash-brand-name {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--navy);
}
.dash-page-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    margin-left: 8px;
}
.dash-topbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}
.dash-topbar-right span {
    font-size: 0.65rem;
    color: #9ca3af;
}
.dash-icon-btn {
    width: 24px;
    height: 24px;
    background: #f3f4f6;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    cursor: pointer;
    color: #6b7280;
}
.dash-av {
    width: 26px;
    height: 26px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.dash-av-name {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--navy);
}
.dash-body {
    display: flex;
    min-height: 270px;
}
.dash-sidebar {
    width: 160px;
    flex-shrink: 0;
    background: #f9fafb;
    border-right: 1px solid var(--border);
    padding: 10px 0;
    position: relative;
}
.si {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #6b7280;
    border-left: 2px solid transparent;
    cursor: pointer;
    transition: all 0.15s;
}
.si.active {
    color: var(--navy);
    font-weight: 600;
    border-left-color: var(--orange);
    background: rgba(240, 90, 40, 0.04);
}
.si svg {
    width: 11px;
    height: 11px;
    fill: currentColor;
    opacity: 0.75;
    flex-shrink: 0;
}
.si-ps {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
}
.si-ps svg {
    width: 11px;
    height: 11px;
    fill: currentColor;
    opacity: 0.75;
    flex-shrink: 0;
}
.dash-content {
    flex: 1;
    padding: 14px;
    overflow: hidden;
}
.dash-welcome {
    background: var(--navy);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.dash-welcome-text h5 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0 0 3px;
}
.dash-welcome-text p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.62rem;
    margin: 0;
    line-height: 1.45;
    max-width: 220px;
}
.dash-welcome-btns {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.dwb {
    background: #fff;
    border: none;
    border-radius: 50px;
    padding: 5px 10px;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    white-space: nowrap;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.dash-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}
.dstat {
    background: #f9fafb;
    border-radius: 8px;
    padding: 8px 10px;
}
.dstat-icon {
    font-size: 0.75rem;
    margin-bottom: 3px;
}
.dstat-label {
    font-size: 0.58rem;
    color: #9ca3af;
    font-weight: 500;
    margin-bottom: 1px;
}
.dstat-val {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
}
.dash-sec-title {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}
.dprog-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.dprog-label {
    font-size: 0.6rem;
    color: #6b7280;
    width: 60px;
    flex-shrink: 0;
}
.dprog-bar {
    flex: 1;
    height: 5px;
    background: #f3f4f6;
    border-radius: 3px;
    overflow: hidden;
}
.dprog-fill {
    height: 100%;
    border-radius: 3px;
}
.dprog-pct {
    font-size: 0.6rem;
    color: #9ca3af;
    width: 36px;
    text-align: right;
    flex-shrink: 0;
}
.dash-rec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 4px;
}
.dash-rec-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--navy);
}
.dash-rec-link {
    font-size: 0.6rem;
    color: var(--orange);
    font-weight: 600;
}
.dash-rec-item {
    font-size: 0.62rem;
    color: #9ca3af;
}
.dash-msg-preview {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 6px;
}
.dash-msg-bubble {
    background: #f0f9ff;
    border-radius: 8px;
    padding: 5px 8px;
    font-size: 0.6rem;
    color: #0369a1;
    line-height: 1.4;
    flex: 1;
}
.dash-msg-meta {
    font-size: 0.55rem;
    color: #9ca3af;
    margin-top: 2px;
}

/* ── Trusted bar ── */
.trusted-bar {
    background: var(--orange);
    padding: 15px 0;
    overflow: hidden;
}
.trusted-track-wrap {
    width: 100%;
    overflow: hidden;
}
.trusted-track {
    display: flex;
    align-items: center;
    gap: 44px;
    white-space: nowrap;
    width: max-content;
    animation: ticker 24s linear infinite;
}
@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.tr-label {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 600;
    flex-shrink: 0;
}
.tr-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 600;
    flex-shrink: 0;
}
.tr-logo svg {
    width: 17px;
    height: 17px;
    fill: rgba(255, 255, 255, 0.92);
}

/* ── Sections ── */
.sec-tag {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.sec-h {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.15;
    color: var(--navy);
}
.sec-sub {
    font-size: 0.97rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
}

/* ── Features ── */
.features-sec {
    padding: 80px 0;
    background: #f4f5f7;
}
.feat-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e9eaec;
    transition:
        box-shadow 0.3s,
        transform 0.3s;
    height: 100%;
}
.feat-card:hover {
    box-shadow: 0 12px 48px rgba(11, 28, 53, 0.1);
    transform: translateY(-3px);
}
.feat-mockup {
    background: #f4f5f7;
    border-bottom: 1px solid #e9eaec;
    padding: 20px;
    min-height: 215px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.feat-inner {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 14px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.feat-info {
    padding: 24px;
}
.feat-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.feat-info p {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* inner mockup bits */
.ri-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.ri-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--navy);
}
.ri-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}
.ri-actions span {
    font-size: 0.58rem;
    color: #9ca3af;
}
.ri-av {
    width: 18px;
    height: 18px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.45rem;
    font-weight: 700;
    color: #fff;
}
.ri-av-name {
    font-size: 0.58rem;
    font-weight: 600;
    color: var(--navy);
}
.stat-ring {
    text-align: center;
    margin: 6px 0 10px;
}
.ri-tag {
    font-size: 0.55rem;
    background: #f3f4f6;
    color: #6b7280;
    padding: 2px 7px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-block;
    margin: 2px 2px;
}
.ri-tag-more {
    font-size: 0.55rem;
    color: var(--orange);
    font-weight: 500;
    display: inline-block;
    margin: 2px 2px;
}
.cl-line {
    height: 6px;
    background: #f3f4f6;
    border-radius: 3px;
    margin-bottom: 5px;
}
/* sms phone mockup */
.phone-mock {
    width: 90px;
    background: #1a1a2e;
    border-radius: 14px;
    padding: 8px;
    margin: 0 auto;
}
.phone-screen {
    background: #0f1117;
    border-radius: 8px;
    padding: 6px;
}
.phone-msg {
    background: #2d2d44;
    border-radius: 6px 6px 0 6px;
    padding: 5px 7px;
    font-size: 0.55rem;
    color: #e2e8f0;
    margin-bottom: 4px;
    line-height: 1.4;
}
.phone-msg.sent {
    background: var(--orange);
    border-radius: 6px 0 6px 6px;
    margin-left: 10px;
}
.phone-time {
    font-size: 0.45rem;
    color: #6b7280;
    text-align: right;
}

/* campaign mini table */
.camp-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.62rem;
}
.camp-row:last-child {
    border-bottom: none;
}
.camp-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.camp-name {
    color: var(--navy);
    font-weight: 600;
    flex: 1;
}
.camp-stat {
    color: #9ca3af;
}
.camp-badge {
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 50px;
}
.b-active {
    background: #d1fae5;
    color: #065f46;
}
.b-paused {
    background: #fef3c7;
    color: #92400e;
}
.b-draft {
    background: #f3f4f6;
    color: #6b7280;
}
.b-completed {
    background: #dbeafe;
    color: #1d4ed8;
}

/* analytics mockup */
.anal-bar-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}
.anal-label {
    font-size: 0.58rem;
    color: #9ca3af;
    width: 56px;
    flex-shrink: 0;
}
.anal-bar {
    flex: 1;
    height: 6px;
    background: #f3f4f6;
    border-radius: 3px;
    overflow: hidden;
}
.anal-fill {
    height: 100%;
    border-radius: 3px;
}
.anal-val {
    font-size: 0.58rem;
    color: var(--navy);
    font-weight: 600;
    width: 28px;
    text-align: right;
    flex-shrink: 0;
}

/* cl split */
.cl-split {
    display: flex;
    height: 100%;
    width: 100%;
}
.cl-sidebar {
    width: 105px;
    flex-shrink: 0;
    background: #f9fafb;
    border-right: 1px solid var(--border);
    border-radius: 8px 0 0 8px;
    padding: 10px 0;
}
.cl-sb-brand {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px 8px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 6px;
}
.cl-sb-icon {
    width: 16px;
    height: 16px;
    background: var(--orange);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cl-sb-icon svg {
    width: 9px;
    height: 9px;
    fill: #fff;
}
.cl-sb-name {
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--navy);
}
.cl-sb-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    font-size: 0.6rem;
    color: #9ca3af;
    border-left: 2px solid transparent;
}
.cl-sb-item.active {
    color: var(--navy);
    font-weight: 600;
    border-left-color: var(--orange);
    background: rgba(240, 90, 40, 0.03);
}
.cl-sb-item svg {
    width: 9px;
    height: 9px;
    fill: currentColor;
    opacity: 0.6;
    flex-shrink: 0;
}
.cl-content {
    flex: 1;
    padding: 12px;
    background: #fff;
    border-radius: 0 8px 8px 0;
    overflow: hidden;
}

/* FAQ */
.faq-sec {
    padding: 80px 0;
    background: #fff;
}
.faq-tab-bar {
    display: flex;
    align-items: center;
    gap: 3px;
    background: #f4f5f7;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 4px;
    margin: 0 auto 48px;
    width: fit-content;
    flex-wrap: wrap;
    justify-content: center;
}
.faq-tab-btn {
    font-size: 0.82rem;
    font-weight: 500;
    color: #6b7280;
    padding: 8px 20px;
    border-radius: 50px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.faq-tab-btn.active {
    background: #fff;
    color: var(--navy);
    font-weight: 700;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}
.faq-pairs {
    border-top: 1px solid var(--border);
}
.faq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
}
.faq-cell {
    padding: 30px 0;
}
.faq-cell:first-child {
    padding-right: 40px;
    border-right: 1px solid var(--border);
}
.faq-cell:last-child {
    padding-left: 40px;
}
.faq-cell h5 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}
.faq-cell p {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Testimonials */
.testimonials-sec {
    padding: 80px 0;
    background: #f4f5f7;
}
.t-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e9eaec;
    height: 100%;
    transition:
        box-shadow 0.3s,
        transform 0.3s;
}
.t-card:hover {
    box-shadow: 0 10px 40px rgba(11, 28, 53, 0.09);
    transform: translateY(-3px);
}
.t-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 6px;
}
.t-stars {
    color: var(--orange);
    font-size: 0.85rem;
    letter-spacing: 3px;
}
.t-quote {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}
.t-text {
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 22px;
}
.t-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
}
.t-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: #d1d5db;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.t-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
}
.t-role {
    font-size: 0.75rem;
    color: #9ca3af;
}
.t-brand-logo {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--navy);
    flex-shrink: 0;
}
.t-brand-box {
    width: 18px;
    height: 18px;
    background: var(--orange);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.t-brand-box svg {
    width: 10px;
    height: 10px;
    fill: #fff;
}

/* CTA */
.cta-sec {
    padding: 0 0 72px;
    background: #f4f5f7;
}
.cta-block {
    background: var(--orange);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-grid {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
}
.cta-sq {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    pointer-events: none;
}
.sq1 {
    width: 44px;
    height: 44px;
    top: 40px;
    left: 130px;
}
.sq2 {
    width: 32px;
    height: 32px;
    top: 68px;
    left: 188px;
}
.sq3 {
    width: 36px;
    height: 36px;
    bottom: 48px;
    right: 140px;
}
.sq4 {
    width: 28px;
    height: 28px;
    bottom: 74px;
    right: 188px;
}
.sq5 {
    width: 52px;
    height: 52px;
    top: 100px;
    right: 80px;
    background: rgba(255, 255, 255, 0.06);
}
.sq6 {
    width: 44px;
    height: 44px;
    bottom: 80px;
    left: 80px;
    background: rgba(255, 255, 255, 0.06);
}
.sq7 {
    width: 32px;
    height: 32px;
    top: 50px;
    right: 200px;
    background: rgba(0, 0, 0, 0.07);
}
.sq8 {
    width: 28px;
    height: 28px;
    bottom: 50px;
    left: 200px;
    background: rgba(0, 0, 0, 0.07);
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-h {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    line-height: 1.15;
}
.cta-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    margin-bottom: 36px;
}
.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-cta-out {
    background: #fff;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
}
.btn-cta-out:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}
.btn-cta-dark {
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.btn-cta-dark:hover {
    background: var(--navy2);
    transform: translateY(-1px);
}

/* Footer */
footer {
    background: var(--navy);
    color: #fff;
    padding: 56px 0 0;
}
.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
}
.footer-brand-icon {
    width: 24px;
    height: 24px;
    background: var(--orange);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-brand-icon svg {
    width: 13px;
    height: 13px;
    fill: #fff;
}
.footer-brand-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}
.footer-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 290px;
    margin-bottom: 0;
}
.footer-hr {
    border-color: rgba(255, 255, 255, 0.12);
    margin: 20px 0;
}
.footer-nl-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}
.footer-nl-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
    margin-bottom: 14px;
}
.nl-box {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.nl-input {
    flex: 1;
    background: #fff;
    border: none;
    outline: none;
    padding: 11px 14px;
    font-size: 0.82rem;
    color: #374151;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.nl-input::placeholder {
    color: #9ca3af;
}
.nl-send {
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 11px 20px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.nl-send:hover {
    background: var(--navy2);
}
.footer-col-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 22px;
}
.footer-link {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    transition: color 0.15s;
}
.footer-link:hover {
    color: #fff;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}
.fc-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-icon svg {
    width: 14px;
    height: 14px;
    fill: rgba(255, 255, 255, 0.4);
}
.socials {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}
.soc-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.2s;
    cursor: pointer;
}
.soc-btn:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.soc-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    margin-top: 48px;
    text-align: center;
}
.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

/* ══════════════════════
   MODAL OVERLAY
══════════════════════ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11, 28, 53, 0.55);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.open {
    display: flex;
}
.modal-box {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 24px 80px rgba(11, 28, 53, 0.2);
    overflow: hidden;
    position: relative;
    animation: modalIn 0.25s ease;
}
@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(10px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #6b7280;
    transition: all 0.15s;
    z-index: 10;
}
.modal-close:hover {
    background: #e5e7eb;
    color: var(--navy);
}
.modal-header {
    padding: 32px 32px 0;
}
.modal-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 800;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 20px;
}
.modal-logo-icon {
    width: 26px;
    height: 26px;
    background: var(--orange);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-logo-icon svg {
    width: 13px;
    height: 13px;
    fill: #fff;
}
.modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}
.modal-sub {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0;
}
.modal-body {
    padding: 24px 32px 32px;
}

/* Form fields */
.form-label-custom {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
    display: block;
}
.form-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 0.88rem;
    color: var(--navy);
    font-family: "Plus Jakarta Sans", sans-serif;
    outline: none;
    transition: border-color 0.15s;
    background: #fff;
}
.form-input:focus {
    border-color: var(--orange);
}
.form-input::placeholder {
    color: #9ca3af;
}
.input-icon-wrap {
    position: relative;
}
.input-icon-wrap .form-input {
    padding-left: 38px;
}
.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}
.input-icon svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}
.btn-full {
    width: 100%;
    background: var(--navy);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-top: 4px;
}
.btn-full:hover {
    background: var(--navy2);
}
.btn-full.orange {
    background: var(--orange);
}
.btn-full.orange:hover {
    background: var(--orange-h);
}
.divider-or {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
}
.divider-or::before,
.divider-or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}
.divider-or span {
    font-size: 0.78rem;
    color: #9ca3af;
    font-weight: 500;
}
.modal-switch {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 16px;
}
.modal-switch a {
    color: var(--orange);
    font-weight: 600;
    cursor: pointer;
}
.form-check-custom {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 4px;
}
.form-check-custom input {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid var(--border);
    margin-top: 1px;
    accent-color: var(--orange);
    flex-shrink: 0;
    cursor: pointer;
}
.form-check-custom label {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
    cursor: pointer;
}
.form-check-custom label a {
    color: var(--orange);
    font-weight: 600;
}

/* Password eye */
.pw-wrap {
    position: relative;
}
.pw-wrap .form-input {
    padding-right: 40px;
}
.pw-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #9ca3af;
    border: none;
    background: transparent;
}
.pw-eye svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ── WIZARD (Registration) ── */
.wizard-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
    position: relative;
}
.wizard-steps::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}
.wstep {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
    position: relative;
    z-index: 1;
}
.wstep-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    border: 2px solid var(--border);
    background: #fff;
    color: #9ca3af;
    transition: all 0.25s;
}
.wstep.done .wstep-circle {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}
.wstep.active .wstep-circle {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}
.wstep-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: #9ca3af;
    text-align: center;
    transition: color 0.25s;
    white-space: nowrap;
}
.wstep.active .wstep-label {
    color: var(--navy);
}
.wstep.done .wstep-label {
    color: var(--orange);
}

/* Wizard progress line fill */
.wizard-progress-fill {
    position: absolute;
    top: 14px;
    left: 14px;
    height: 2px;
    background: var(--orange);
    z-index: 0;
    transition: width 0.35s ease;
}

/* Step panels */
.wstep-panel {
    display: none;
}
.wstep-panel.active {
    display: block;
}

/* Plan selection cards */
.plan-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}
.plan-card {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.plan-card:hover {
    border-color: var(--orange);
}
.plan-card.selected {
    border-color: var(--orange);
    background: #fff7f4;
}
.plan-card .check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.plan-card.selected .check {
    background: var(--orange);
    border-color: var(--orange);
}
.plan-card.selected .check::after {
    content: "✓";
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
}
.plan-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}
.plan-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 3px;
}
.plan-desc {
    font-size: 0.68rem;
    color: var(--muted);
    line-height: 1.4;
}

/* Industry select */
.select-custom {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 0.88rem;
    color: var(--navy);
    font-family: "Plus Jakarta Sans", sans-serif;
    outline: none;
    transition: border-color 0.15s;
    background: #fff;
    appearance: none;
    cursor: pointer;
}
.select-custom:focus {
    border-color: var(--orange);
}
.select-wrap {
    position: relative;
}
.select-wrap::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    font-size: 0.85rem;
}

/* Sender ID preview */
.sender-preview {
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.sender-preview-phone {
    font-size: 0.7rem;
    color: var(--muted);
}
.sender-preview-badge {
    background: var(--orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}

/* Success check */
.success-icon {
    width: 60px;
    height: 60px;
    background: #d1fae5;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.success-icon svg {
    width: 28px;
    height: 28px;
    stroke: #22c55e;
    fill: none;
}

/* wizard nav btns */
.wizard-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.btn-wiz-back {
    flex: 0 0 auto;
    background: #f3f4f6;
    color: var(--navy);
    border: none;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 11px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-family: "Plus Jakarta Sans", sans-serif;
    transition: all 0.2s;
}
.btn-wiz-back:hover {
    background: #e5e7eb;
}
.btn-wiz-next {
    flex: 1;
    background: var(--navy);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 11px;
    border-radius: 50px;
    cursor: pointer;
    font-family: "Plus Jakarta Sans", sans-serif;
    transition: all 0.2s;
}
.btn-wiz-next:hover {
    background: var(--navy2);
}
.btn-wiz-next.orange {
    background: var(--orange);
}
.btn-wiz-next.orange:hover {
    background: var(--orange-h);
}

/* Scroll reveal */
.sr {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}
.sr.in {
    opacity: 1;
    transform: none;
}
.sr.d1 {
    transition-delay: 0.1s;
}
.sr.d2 {
    transition-delay: 0.2s;
}
.sr.d3 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 1199px) {
    .flt-sms,
    .flt-del,
    .flt-roi {
        display: none;
    }
}
@media (max-width: 991px) {
    .hero-inner {
        flex-direction: column;
    }
    .hero-left {
        flex: none;
        width: 100%;
        padding-bottom: 40px;
    }
    .hero-right {
        width: 100%;
        padding-left: 0;
    }
    .sec-h {
        font-size: 2rem;
    }
    .cta-h {
        font-size: 2rem;
    }
}
@media (max-width: 767px) {
    .dash-sidebar {
        display: none;
    }
    .dash-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-row {
        grid-template-columns: 1fr;
    }
    .faq-cell:first-child {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--border);
        padding-bottom: 24px;
    }
    .faq-cell:last-child {
        padding-left: 0;
    }
    .cta-block {
        padding: 52px 20px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .plan-cards {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .modal-header {
        padding: 24px 20px 0;
    }
    .modal-body {
        padding: 18px 20px 24px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
}
