:root {
    --white: #fff;
    --bg: #f7f8fa;
    --bg2: #f0f2f5;
    --border: #e5e7eb;
    --border2: #d1d5db;
    --text: #0a0a0a;
    --text2: #1f2937;
    --muted: #6b7280;
    --muted2: #9ca3af;
    --accent: #e5311d;
    --accent-h: #c62817;
    --accent2: #7c3aed;
    --green: #059669;
    --font-d: "Bricolage Grotesque", sans-serif;
    --font-b: "Inter", sans-serif;
    --r: 12px;
    --sh: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.06);
    --sh-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: var(--font-b);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-d);
    font-weight: 700;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--text);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
}

.topbar span {
    color: var(--accent);
    font-weight: 700;
}

/* ── NAVBAR ── */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.2s;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text) !important;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
}

.brand-dot {
    color: var(--accent);
}

.nav-link {
    color: var(--text2) !important;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem !important;
    border-radius: 6px;
    transition: all 0.15s;
}

.nav-link:hover {
    background: var(--bg);
    color: var(--text) !important;
}

.btn-login {
    border: 1.5px solid var(--border2);
    color: var(--text) !important;
    background: var(--white);
    border-radius: 8px;
    padding: 0.42rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-login:hover {
    border-color: var(--text);
    background: var(--bg);
    color: var(--text) !important;
}

.btn-signup {
    background: var(--accent);
    color: #fff !important;
    border-radius: 8px;
    padding: 0.42rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-signup:hover {
    background: var(--accent-h);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(229, 49, 29, 0.3);
}

/* ── HERO ── */
.hero {
    padding: 5.5rem 0 4.5rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

/* Animated grid background */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.35;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(229, 49, 29, 0.08) 0%,
        transparent 70%
    );
    top: -100px;
    right: -100px;
    pointer-events: none;
    animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fff3f1;
    border: 1px solid #fcd6d1;
    border-radius: 50px;
    padding: 0.3rem 0.9rem;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    animation: fadeUp 0.5s ease both;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 1.3rem;
    animation: fadeUp 0.5s 0.1s ease both;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 490px;
    margin-bottom: 2.2rem;
    font-weight: 400;
    line-height: 1.65;
    animation: fadeUp 0.5s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeUp 0.5s 0.3s ease both;
}

.btn-hp {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 0.85rem 1.8rem;
    font-size: 0.93rem;
    font-weight: 700;
    font-family: var(--font-b);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-hp:hover {
    background: var(--accent-h);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229, 49, 29, 0.28);
}

.btn-hs {
    background: var(--white);
    color: var(--text);
    border: 1.5px solid var(--border2);
    border-radius: 9px;
    padding: 0.85rem 1.8rem;
    font-size: 0.93rem;
    font-weight: 600;
    font-family: var(--font-b);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-hs:hover {
    border-color: var(--text);
    color: var(--text);
    transform: translateY(-2px);
}

.hero-trust {
    font-size: 0.8rem;
    color: var(--muted2);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.5s 0.4s ease both;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-trust i {
    color: var(--green);
    font-size: 0.73rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── CHAT WIDGET ── */
.widget-wrap {
    position: relative;
    animation: fadeUp 0.6s 0.2s ease both;
}

.chat-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.13),
        0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 580px;
    max-width: 420px;
    margin: 0 auto;
    transition: box-shadow 0.3s;
}

.chat-widget:hover {
    box-shadow:
        0 32px 100px rgba(0, 0, 0, 0.16),
        0 8px 30px rgba(0, 0, 0, 0.08);
}

.cw-header {
    padding: 0.95rem 1.1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
}

.cw-av {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e5311d, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    position: relative;
    flex-shrink: 0;
}

.cw-online {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(5, 150, 105, 0);
    }
}

.cw-hinfo {
    flex: 1;
    min-width: 0;
}

.cw-hname {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-d);
}

.cw-hstatus {
    font-size: 0.72rem;
    color: var(--green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.cw-hstatus::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
}

.cw-actions {
    display: flex;
    gap: 0.3rem;
}

.cw-act-btn {
    background: transparent;
    border: none;
    color: var(--muted2);
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    transition: background 0.15s;
}

.cw-act-btn:hover {
    background: var(--bg);
}

.cw-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    scroll-behavior: smooth;
}

.cw-body::-webkit-scrollbar {
    width: 3px;
}

.cw-body::-webkit-scrollbar-thumb {
    background: var(--border2);
    border-radius: 4px;
}

.msg {
    max-width: 85%;
    padding: 0.65rem 1rem;
    border-radius: 14px;
    font-size: 0.87rem;
    line-height: 1.55;
    word-break: break-word;
    animation: msgIn 0.25s ease both;
}

@keyframes msgIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.msg.bot {
    background: var(--bg);
    border: 1px solid var(--border);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
    color: var(--text2);
}

.msg.user {
    background: var(--accent);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 3px;
}

.msg.sys {
    background: linear-gradient(
        135deg,
        rgba(229, 49, 29, 0.06),
        rgba(124, 58, 237, 0.06)
    );
    border: 1px solid rgba(229, 49, 29, 0.15);
    align-self: stretch;
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    border-radius: 10px;
    padding: 0.5rem 0.85rem;
}

.msg.typing {
    background: var(--bg);
    border: 1px solid var(--border);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
    padding: 0.65rem 1rem;
}

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dots span {
    width: 7px;
    height: 7px;
    background: var(--muted2);
    border-radius: 50%;
    animation: td 0.9s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes td {
    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-6px);
    }
}

/* Lead form inside chat */
.lead-form {
    background: var(--white);
    border: 1.5px solid var(--accent);
    border-radius: 12px;
    padding: 1rem;
    align-self: flex-start;
    width: 90%;
    animation: msgIn 0.3s ease both;
}

.lead-form-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
    font-family: var(--font-d);
}

.lead-form-sub {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 0.8rem;
}

.lead-input {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 0.45rem 0.7rem;
    font-size: 0.82rem;
    color: var(--text);
    font-family: var(--font-b);
    outline: none;
    transition: border-color 0.15s;
    margin-bottom: 0.5rem;
}

.lead-input:focus {
    border-color: var(--accent);
}

.lead-submit {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-b);
    cursor: pointer;
    transition: all 0.2s;
}

.lead-submit:hover {
    background: var(--accent-h);
}

.cw-footer {
    border-top: 1px solid var(--border);
    padding: 0.8rem 1rem;
    background: var(--white);
}

.cw-input-row {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.cw-input {
    flex: 1;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 9px;
    padding: 0.5rem 0.85rem;
    font-size: 0.87rem;
    color: var(--text);
    font-family: var(--font-b);
    outline: none;
    resize: none;
    max-height: 80px;
    min-height: 40px;
    transition: border-color 0.15s;
    line-height: 1.45;
}

.cw-input:focus {
    border-color: var(--accent);
}

.cw-send {
    background: var(--accent);
    border: none;
    border-radius: 8px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.15s;
    flex-shrink: 0;
}

.cw-send:hover {
    background: var(--accent-h);
    transform: scale(1.05);
}

.cw-send:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.cw-powered {
    text-align: center;
    font-size: 0.68rem;
    color: var(--muted2);
    padding: 0.4rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.powered-sq {
    width: 9px;
    height: 9px;
    background: var(--accent);
    border-radius: 2px;
    display: inline-block;
}

/* Float badges */
.fb {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.52rem 0.85rem;
    font-size: 0.76rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: var(--sh);
    white-space: nowrap;
    font-weight: 500;
    z-index: 2;
}

.fb-1 {
    top: -10px;
    right: -15px;
    animation: fb1 4s ease-in-out infinite;
}

.fb-2 {
    bottom: 90px;
    left: -18px;
    animation: fb2 5s ease-in-out 1.2s infinite;
}

.fb-3 {
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
    animation: fb1 6s ease-in-out 2s infinite;
}

@keyframes fb1 {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes fb2 {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

.dot-red {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.dot-blue {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    flex-shrink: 0;
}

/* ── LOGOS ── */
.logos-band {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.2rem 0;
}

.logos-label {
    font-size: 0.72rem;
    color: var(--muted2);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.3rem;
    font-weight: 600;
}

.logos-row {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.logo-pill {
    font-family: var(--font-d);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--muted2);
    letter-spacing: -0.02em;
    transition: color 0.2s;
    cursor: default;
    user-select: none;
}

.logo-pill:hover {
    color: var(--text2);
}

/* ── FEATURE TABS ── */
.ftabs-sec {
    padding: 5.5rem 0;
    background: var(--white);
}

.ftab-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.ftab-pills {
    display: inline-flex;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px;
    gap: 2px;
}

.ftab-btn {
    border: none;
    background: transparent;
    color: var(--muted);
    border-radius: 50px;
    padding: 0.5rem 1.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-b);
    white-space: nowrap;
}

.ftab-btn.active {
    background: var(--white);
    color: var(--text);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.ftab-content {
    display: none;
}

.ftab-content.active {
    display: block;
}

.ftab-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.ftab-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.ftab-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 440px;
    margin-bottom: 1.5rem;
}

.ftab-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
}

.ftab-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.87rem;
    color: var(--text2);
}

.ftab-list li i {
    color: var(--green);
    margin-top: 3px;
    flex-shrink: 0;
}

.ftab-screen {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--sh-lg);
}

.ftab-screen-bar {
    background: #e5e7eb;
    padding: 0.55rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ftab-dots {
    display: flex;
    gap: 4px;
}

.ftab-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.ftab-dots span:nth-child(1) {
    background: #ff5f57;
}

.ftab-dots span:nth-child(2) {
    background: #febc2e;
}

.ftab-dots span:nth-child(3) {
    background: #28c840;
}

.ftab-url {
    background: #fff;
    border-radius: 4px;
    padding: 0.2rem 0.7rem;
    font-size: 0.72rem;
    color: var(--muted);
    flex: 1;
    text-align: center;
    font-family: var(--font-b);
}

/* Screen mockup shared */
.mock-settings {
    padding: 1.1rem;
    min-height: 280px;
}

.mock-field {
    margin-bottom: 0.65rem;
}

.mock-field label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--muted);
    display: block;
    margin-bottom: 0.2rem;
    font-family: var(--font-b);
    letter-spacing: 0.03em;
}

.mock-field input,
.mock-field select,
.mock-field textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.35rem 0.6rem;
    font-size: 0.73rem;
    color: var(--text2);
    font-family: var(--font-b);
    outline: none;
}

.mock-field textarea {
    resize: none;
    height: 52px;
}

.mock-color-row {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.mock-swatch {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.15s;
}

.mock-swatch.active {
    border-color: var(--text);
}

.mock-inbox {
    display: flex;
    min-height: 300px;
}

.mock-sidebar {
    width: 130px;
    background: #fff;
    border-right: 1px solid var(--border);
    padding: 0.65rem;
    flex-shrink: 0;
}

.mock-si {
    font-size: 0.7rem;
    padding: 0.28rem 0.45rem;
    border-radius: 5px;
    color: var(--muted);
    cursor: default;
    display: flex;
    align-items: center;
    gap: 0.32rem;
    margin-bottom: 1px;
}

.mock-si.active {
    background: #fff3f1;
    color: var(--accent);
    font-weight: 600;
}

.mock-si i {
    font-size: 0.67rem;
}

.mock-sh {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted2);
    padding: 0.35rem 0.45rem 0.15rem;
}

.mock-list {
    width: 150px;
    background: var(--bg);
    border-right: 1px solid var(--border);
    padding: 0.45rem;
    flex-shrink: 0;
}

.mock-li {
    padding: 0.45rem;
    border-radius: 6px;
    cursor: default;
    margin-bottom: 2px;
}

.mock-li.active {
    background: var(--white);
}

.mock-li-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
}

.mock-li-pre {
    font-size: 0.63rem;
    color: var(--muted2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mock-convo {
    flex: 1;
    padding: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
}

.mock-msg {
    max-width: 76%;
    padding: 0.42rem 0.62rem;
    border-radius: 9px;
    font-size: 0.7rem;
    line-height: 1.4;
}

.mock-msg.b {
    background: #f0f0ff;
    color: #3730a3;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.mock-msg.u {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text2);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.mock-ml {
    font-size: 0.58rem;
    color: var(--muted2);
    padding: 0 0.2rem;
}

.mock-ml.r {
    text-align: right;
}

.mock-analytics {
    padding: 0.9rem;
    min-height: 280px;
}

.mock-stat-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.mock-stat {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.6rem 0.7rem;
}

.mock-sv {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text);
    font-family: var(--font-d);
}

.mock-sl {
    font-size: 0.61rem;
    color: var(--muted);
}

.mock-su {
    font-size: 0.61rem;
    color: var(--green);
    font-weight: 600;
}

.mock-chart {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem;
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.mock-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: var(--accent);
    transition: opacity 0.2s;
}

.mock-bar:hover {
    opacity: 1 !important;
}

/* ── FEATURES ── */
.feats-sec {
    padding: 5.5rem 0;
    background: var(--bg);
}

.feat-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 1.65rem;
    height: 100%;
    transition: all 0.22s;
}

.feat-card:hover {
    border-color: var(--accent);
    box-shadow:
        0 0 0 3px rgba(229, 49, 29, 0.05),
        var(--sh);
    transform: translateY(-4px);
}

.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.fi-r {
    background: #fff3f1;
    color: var(--accent);
}

.fi-p {
    background: #f5f3ff;
    color: var(--accent2);
}

.fi-g {
    background: #f0fdf4;
    color: var(--green);
}

.fi-b {
    background: #eff6ff;
    color: #3b82f6;
}

.fi-o {
    background: #fff7ed;
    color: #f97316;
}

.fi-pk {
    background: #fdf2f8;
    color: #db2777;
}

.feat-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text);
    font-family: var(--font-d);
}

.feat-desc {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.how-sec {
    padding: 5.5rem 0;
    background: var(--white);
}

.step-row {
    display: flex;
    gap: 1.1rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 1.3rem 1.4rem;
    transition: all 0.2s;
    align-items: flex-start;
}

.step-row:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: var(--sh);
}

.step-n {
    min-width: 36px;
    height: 36px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-d);
    font-weight: 800;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.step-t {
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-d);
    margin-bottom: 0.2rem;
    font-size: 0.94rem;
}

.step-d {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── AI + HUMAN ── */
.aih-sec {
    padding: 5.5rem 0;
    background: var(--bg);
}

.aih-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2.1rem;
    height: 100%;
    transition: all 0.22s;
    position: relative;
    overflow: hidden;
}

.aih-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.aih-card.ai::before {
    background: var(--accent);
}

.aih-card.human::before {
    background: var(--accent2);
}

.aih-card:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-5px);
}

.aih-icon {
    font-size: 1.9rem;
    margin-bottom: 0.9rem;
    display: block;
}

.aih-card.ai .aih-icon {
    color: var(--accent);
}

.aih-card.human .aih-icon {
    color: var(--accent2);
}

.aih-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.55rem;
    font-family: var(--font-d);
}

.aih-desc {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1.3rem;
}

.aih-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.aih-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.84rem;
    color: var(--text2);
}

.aih-list li i {
    font-size: 0.78rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.aih-card.ai .aih-list li i {
    color: var(--accent);
}

.aih-card.human .aih-list li i {
    color: var(--accent2);
}

/* ── PRICING ── */
.pricing-sec {
    padding: 5.5rem 0;
    background: var(--white);
}

.billing-toggle {
    display: inline-flex;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 3px;
}

.bill-btn {
    border: none;
    background: transparent;
    color: var(--muted);
    border-radius: 50px;
    padding: 0.44rem 1.25rem;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-b);
    position: relative;
    white-space: nowrap;
}

.bill-btn.active {
    background: var(--accent);
    color: #fff;
}

.sbadge {
    position: absolute;
    top: -9px;
    right: -4px;
    background: var(--green);
    color: #fff;
    font-size: 0.57rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 50px;
}

.plan-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.25s;
}

.plan-card:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-6px);
}

.plan-card.pop {
    border-color: var(--accent);
    border-width: 2px;
}

.pop-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    font-family: var(--font-d);
    padding: 0.22rem 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.plan-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.25rem;
    font-family: var(--font-d);
}

.plan-desc {
    font-size: 0.81rem;
    color: var(--muted);
    margin-bottom: 1.3rem;
    line-height: 1.5;
}

.plan-amount {
    font-family: var(--font-d);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1;
    transition: all 0.25s;
}

.plan-amount sup {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: 0.35rem;
    font-weight: 700;
}

.plan-period {
    font-size: 0.79rem;
    color: var(--muted);
    margin-top: 0.3rem;
}

.plan-saving {
    font-size: 0.77rem;
    color: var(--green);
    font-weight: 600;
    margin-top: 0.22rem;
    display: none;
}

.plan-saving.show {
    display: block;
}

.plan-note {
    font-size: 0.74rem;
    color: var(--muted2);
    margin-top: 0.2rem;
}

.plan-hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.2rem 0;
}

.plan-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.52rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.plan-feats li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.84rem;
    color: var(--text2);
}

.plan-feats li i {
    color: var(--green);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0.83rem;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 0.8rem;
    border-radius: 9px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-b);
    transition: all 0.2s;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: none;
}

.btn-pr {
    background: var(--accent);
    color: #fff;
}

.btn-pr:hover {
    background: var(--accent-h);
    color: #fff;
    box-shadow: 0 6px 20px rgba(229, 49, 29, 0.3);
    transform: translateY(-1px);
}

.btn-po {
    background: var(--white);
    color: var(--text);
    border: 1.5px solid var(--border2);
}

.btn-po:hover {
    border-color: var(--text);
    background: var(--bg);
}

.billing-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1.2rem 1.4rem;
    margin-top: 2.2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.billing-box i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.billing-box p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.billing-box strong {
    color: var(--text2);
}

/* ── TESTIMONIALS ── */
.testi-sec {
    padding: 5.5rem 0;
    background: var(--bg);
}

.testi-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 1.75rem;
    height: 100%;
    transition: all 0.22s;
}

.testi-card:hover {
    border-color: var(--accent);
    box-shadow: var(--sh);
    transform: translateY(-4px);
}

.testi-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 0.89rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 1.1rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.testi-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    font-family: var(--font-d);
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
    font-family: var(--font-d);
}

.testi-role {
    font-size: 0.74rem;
    color: var(--muted);
}

/* ── CTA ── */
.cta-sec {
    padding: 5.5rem 0;
    background: var(--text);
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 60% 50%,
        rgba(229, 49, 29, 0.12) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.cta-h {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-h em {
    font-style: normal;
    color: var(--accent);
}

.cta-p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.97rem;
    max-width: 440px;
    margin: 0 auto 2rem;
}

.btn-cw {
    background: #fff;
    color: var(--text);
    border: none;
    border-radius: 9px;
    padding: 0.88rem 1.9rem;
    font-size: 0.93rem;
    font-weight: 700;
    font-family: var(--font-b);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-cw:hover {
    background: #f0f0f0;
    color: var(--text);
    transform: translateY(-1px);
}

.btn-cg {
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 9px;
    padding: 0.88rem 1.9rem;
    font-size: 0.93rem;
    font-weight: 600;
    font-family: var(--font-b);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-cg:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.cta-note {
    font-size: 0.79rem;
    color: rgba(255, 255, 255, 0.28);
    margin-top: 1.1rem;
}

/* ── FOOTER ── */
footer {
    background: var(--text);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3.5rem 0 2rem;
}

.ft-brand {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 0.35rem;
}

.ft-brand span {
    color: var(--accent);
}

.ft-tag {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 400;
}

.ft-h {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.85rem;
    font-family: var(--font-d);
}

.ft-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
}

.ft-ul a {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.84rem;
    text-decoration: none;
    transition: color 0.15s;
}

.ft-ul a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.ft-bottom {
    margin-top: 2.5rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.ft-copy {
    font-size: 0.79rem;
    color: rgba(255, 255, 255, 0.28);
}

.ft-soc {
    display: flex;
    gap: 0.5rem;
}

.ft-soc a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.15s;
}

.ft-soc a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
}

/* ── SECTION COMMONS ── */
.sec-tag {
    display: inline-block;
    background: #fff3f1;
    color: var(--accent);
    border-radius: 50px;
    padding: 0.22rem 0.82rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.sec-h {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 0.7rem;
}

.sec-p {
    color: var(--muted);
    font-size: 0.97rem;
    max-width: 500px;
    line-height: 1.65;
}

/* ── BRANDS ── */
.brands-sec {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brands-stat {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.brands-stat strong {
    color: var(--text);
}

.brands-stat a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.brands-stat a:hover {
    text-decoration: underline;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-d);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    opacity: 0.25;
    transition: opacity 0.2s;
    cursor: default;
}

.brand-logo:hover {
    opacity: 0.65;
}

/* ── HANDOVER ── */
.handover-sec {
    padding: 6rem 0;
    background: var(--bg);
}

.handover-h {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.handover-h em {
    font-style: normal;
    color: var(--accent);
}

.handover-p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

.handover-visual {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, #fce8e6 0%, #fff3f1 50%, #fce8e6 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.handover-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 255, 255, 0.5) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.handover-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.hp-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 3px solid #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hp-avatar.agent {
    background: linear-gradient(135deg, #e5311d, #7c3aed);
    color: #fff;
}

.hp-avatar.customer {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #fff;
}

.hp-label {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-d);
    line-height: 1.3;
}

.hp-label span {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.75rem;
}

.handover-chat {
    position: relative;
    z-index: 1;
}

.handover-chat-inner {
    background: #fff;
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.hc-msg {
    padding: 0.6rem 0.9rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 85%;
}

.hc-msg.user {
    background: #3b82f6;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 3px;
}

.hc-msg.bot {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text2);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.hc-msg.agent {
    background: #fff3f1;
    border: 1px solid #fcd6d1;
    color: var(--text2);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.hc-bot-av,
.hc-agent-av {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.hc-bot-av {
    background: var(--accent);
    color: #fff;
}

.hc-agent-av {
    background: var(--accent2);
    color: #fff;
    font-weight: 700;
    font-size: 0.68rem;
    font-family: var(--font-d);
}

.hc-transfer {
    font-size: 0.76rem;
    color: var(--green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0;
    align-self: center;
}

/* ── IMPLEMENT STEPS ── */
.impl-sec {
    padding: 6rem 0;
    background: var(--white);
}

.impl-h {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1.1;
}

.impl-p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
}

.impl-timeline {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.impl-line {
    position: absolute;
    left: 16.6%;
    right: 16.6%;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        var(--border2) 0,
        var(--border2) 6px,
        transparent 6px,
        transparent 12px
    );
    top: 50%;
}

.impl-node {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.impl-node.node-1 {
    left: 16.6%;
}

.impl-node.node-2 {
    left: 50%;
}

.impl-node.node-3 {
    left: 83.4%;
}

.impl-star {
    font-size: 2rem;
    color: var(--accent);
    line-height: 1;
    animation: starSpin 8s linear infinite;
}

@keyframes starSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.impl-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #d1fae5;
    border: 3px solid var(--green);
}

.impl-arrow {
    font-size: 1.8rem;
    color: #f97316;
    line-height: 1;
}

.impl-step-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.impl-step-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    font-family: var(--font-d);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.impl-step-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1.1rem;
}

.impl-win {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.9rem 1rem;
}

.impl-win-badge {
    display: inline-block;
    background: #fff3f1;
    border: 1px solid #fcd6d1;
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

.impl-win p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* ── REVIEWS MARQUEE ── */
.reviews-sec {
    padding: 5rem 0;
    background: var(--bg);
    overflow: hidden;
}

.reviews-h {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
}

.reviews-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(
        90deg,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.reviews-track {
    display: flex;
    gap: 1rem;
    width: max-content;
}

.track-1 {
    animation: marquee1 40s linear infinite;
}

.track-2 {
    animation: marquee2 45s linear infinite;
}

.track-3 {
    animation: marquee1 35s linear infinite;
}

@keyframes marquee1 {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee2 {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.reviews-track-wrap:hover .reviews-track {
    animation-play-state: paused;
}

.rv-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.4rem 1.5rem;
    width: 300px;
    flex-shrink: 0;
    transition: all 0.2s;
    cursor: default;
}

.rv-card:hover {
    border-color: var(--accent);
    box-shadow: var(--sh);
    transform: translateY(-3px);
}

.rv-card.rv-highlight {
    background: #fef3c7;
    border-color: #f59e0b;
    width: 340px;
}

.rv-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.7rem;
}

.rv-text {
    font-size: 0.84rem;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: 0.9rem;
}

.rv-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-d);
}

.rv-name span {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.75rem;
    display: block;
    margin-top: 0.1rem;
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ── BRAND NAMES ── */
.brand-nm {
    font-family: var(--font-d);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    opacity: 0.35;
    transition: opacity 0.2s;
    cursor: default;
    user-select: none;
}

.brand-nm:hover {
    opacity: 0.9;
}

/* ── MARQUEE REVIEWS ── */
.marquee-row {
    display: flex;
    gap: 0.9rem;
    width: max-content;
}

.marquee-left {
    animation: mLeft 40s linear infinite;
}

.marquee-right {
    animation: mRight 40s linear infinite;
}

@keyframes mLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes mRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.rv {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.4rem 1.5rem;
    width: 290px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.rv:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--sh);
}

.rv-gold {
    background: #fefce8;
    border-color: #fde68a;
}

.rv-gold:hover {
    border-color: #f59e0b;
}

.rv-s {
    color: #f59e0b;
    font-size: 0.88rem;
    margin-bottom: 0.65rem;
    letter-spacing: 2px;
}

.rv-t {
    font-size: 0.85rem;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: 0.85rem;
}

.rv-n {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-d);
}

.rv-n em {
    font-style: normal;
    font-weight: 400;
    color: var(--muted);
    margin-left: 0.3rem;
}

.marquee-row:hover {
    animation-play-state: paused;
}

@media (max-width: 991px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .widget-wrap {
        margin-top: 3rem;
    }

    .fb {
        display: none;
    }

    .ftab-pills {
        flex-wrap: wrap;
        border-radius: 12px;
    }

    .mock-sidebar,
    .mock-list {
        display: none;
    }

    .chat-widget {
        max-width: 100%;
        height: 500px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }
}
