/* ══════════════════════════════════════════════════
   Lead Qualification — Page Styles
   ══════════════════════════════════════════════════ */

/* ── Hero Layout ────────────────────────────────── */
.lq-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--bg-primary);
    overflow: hidden;
}

.lq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    animation: lqGridDrift 20s linear infinite;
}

.lq-hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 900px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(120, 75, 250, 0.08) 0%, rgba(48, 209, 88, 0.04) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: lqGlowPulse 6s ease-in-out infinite alternate;
}

@keyframes lqGridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes lqGlowPulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.06); }
}

.lq-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lq-hero-text {
    animation: lqFadeSlideUp 0.8s ease-out both;
}

.lq-hero-overline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(120, 75, 250, 0.08);
    color: #784bfa;
    margin-bottom: 24px;
}

.lq-hero-overline svg {
    width: 14px;
    height: 14px;
}

.lq-hero-text .headline-hero {
    margin-bottom: 20px;
}

.lq-hero-text .subhead {
    margin-bottom: 36px;
    max-width: 480px;
}

.lq-hero-trust {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-tertiary);
}

.lq-hero-trust-dots {
    display: flex;
    gap: 4px;
}

.lq-hero-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #784bfa;
}

@keyframes lqFadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Phone Mockup ───────────────────────────────── */
.lq-phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    animation: lqFadeSlideUp 0.8s 0.3s ease-out both;
}

.lq-phone {
    position: relative;
    width: 290px;
    background: #111;
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.18),
        0 16px 40px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    animation: lqPhoneFloat 6s ease-in-out infinite;
    z-index: 2;
}

.lq-phone::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(120, 75, 250, 0.12), transparent 70%);
    filter: blur(16px);
    z-index: -1;
}

@keyframes lqPhoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.lq-screen {
    background: var(--bg-section);
    border-radius: 34px;
    overflow: hidden;
}

.lq-screen-header {
    padding: 12px 16px 10px;
    text-align: center;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lq-screen-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #784bfa, #0071e3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}

.lq-screen-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.lq-chat {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 260px;
}

.lq-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lq-msg.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.lq-msg-ai {
    align-self: flex-start;
    background: #e9e9eb;
    color: #000;
    border-bottom-left-radius: 4px;
}

.lq-msg-user {
    align-self: flex-end;
    background: #784bfa;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.lq-typing {
    align-self: flex-start;
    display: flex;
    gap: 5px;
    padding: 12px 16px;
    background: #e9e9eb;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    opacity: 0;
    transition: opacity 0.25s;
}

.lq-typing.visible { opacity: 1; }

.lq-typing-dot {
    width: 7px;
    height: 7px;
    background: #86868b;
    border-radius: 50%;
    animation: lqTypingBounce 1.4s infinite;
}

.lq-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.lq-typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes lqTypingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
}

.lq-screen-input {
    padding: 10px 12px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lq-screen-input-field {
    flex: 1;
    height: 32px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.lq-screen-input-send {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #784bfa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lq-screen-input-send svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

/* ── Notification ──────────────────────────────── */
.lq-notif {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: #fff;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
}

.lq-notif.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.lq-notif-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #30d158;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lq-notif-icon svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
}

/* ── Floating Badges ────────────────────────────── */
.lq-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s, transform 0.5s;
    z-index: 3;
}

.lq-badge.visible {
    opacity: 1;
    transform: translateY(0);
}

.lq-badge-1 {
    top: 12%;
    right: -60px;
    animation: lqBadgeFloat1 4s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.lq-badge-2 {
    bottom: 35%;
    left: -70px;
    animation: lqBadgeFloat2 4.5s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.lq-badge-3 {
    bottom: 12%;
    right: -50px;
    animation: lqBadgeFloat3 3.8s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.lq-badge.visible { animation-play-state: running; }

.lq-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lq-badge-icon svg {
    width: 14px;
    height: 14px;
}

@keyframes lqBadgeFloat1 { 0% { transform: translateY(0); } 100% { transform: translateY(-8px); } }
@keyframes lqBadgeFloat2 { 0% { transform: translateY(0); } 100% { transform: translateY(-6px); } }
@keyframes lqBadgeFloat3 { 0% { transform: translateY(0); } 100% { transform: translateY(-7px); } }

/* ── Section Spacing ────────────────────────────── */
.lq-process,
.lq-benefits,
.lq-related,
.lq-funnel-section,
.lq-scoring-section { padding: 100px 0; }

/* ── Process Steps ──────────────────────────────── */
.lq-process { text-align: center; }
.lq-process .headline-section { margin-bottom: 12px; }
.lq-process .subhead { margin: 0 auto 56px; max-width: 500px; }

.lq-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.lq-step {
    text-align: center;
    padding: 0 16px;
}

.lq-step-num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(120, 75, 250, 0.08);
    color: #784bfa;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lq-step:hover .lq-step-num {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(120, 75, 250, 0.15);
}

.lq-step .headline-card {
    margin-bottom: 10px;
    font-size: 20px;
}

.lq-step .body-text {
    font-size: 15px;
}

/* ══════════════════════════════════════════════════
   UNIQUE ELEMENT 1 — Interactive Qualification Funnel
   ══════════════════════════════════════════════════ */
.lq-funnel-section {
    background: var(--bg-section);
}

.lq-funnel-section .headline-section { text-align: center; margin-bottom: 12px; }
.lq-funnel-section .subhead { text-align: center; margin: 0 auto 56px; max-width: 540px; }

.lq-funnel-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.lq-funnel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
}

.lq-funnel-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.lq-funnel-live {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #30d158;
}

.lq-funnel-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #30d158;
    animation: lqLivePulse 2s ease-in-out infinite;
}

@keyframes lqLivePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(48, 209, 88, 0); }
}

.lq-funnel-body {
    padding: 40px 28px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.lq-funnel-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.lq-funnel-svg {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.lq-funnel-layer {
    opacity: 0;
    transform-origin: center;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(0.9);
}

.lq-funnel-layer.visible {
    opacity: 1;
    transform: scale(1);
}

.lq-funnel-dot {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lq-funnel-dot.visible {
    opacity: 1;
}

@keyframes lqDotFall {
    0% { transform: translateY(-20px); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateY(0); opacity: 1; }
}

.lq-funnel-dot.animating {
    animation: lqDotFall 0.6s ease-out forwards;
}

.lq-funnel-stages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lq-funnel-stage {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s, background 0.3s;
}

.lq-funnel-stage.visible {
    opacity: 1;
    transform: translateX(0);
}

.lq-funnel-stage.active {
    border-color: rgba(120, 75, 250, 0.3);
    background: rgba(120, 75, 250, 0.04);
}

.lq-funnel-stage-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lq-funnel-stage-icon svg {
    width: 16px;
    height: 16px;
}

.lq-funnel-stage-info {
    flex: 1;
    min-width: 0;
}

.lq-funnel-stage-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.lq-funnel-stage-desc {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 2px;
}

.lq-funnel-stage-bar-wrap {
    width: 60px;
    height: 6px;
    border-radius: 3px;
    background: var(--border);
    overflow: hidden;
    flex-shrink: 0;
}

.lq-funnel-stage-bar {
    height: 100%;
    border-radius: 3px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.lq-funnel-stage-count {
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    min-width: 40px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.lq-funnel-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 28px;
    border-top: 1px solid var(--border);
}

.lq-funnel-stat {
    text-align: center;
}

.lq-funnel-stat-num {
    font-size: 28px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.lq-funnel-stat-num.purple { color: #784bfa; }
.lq-funnel-stat-num.green { color: #30d158; }
.lq-funnel-stat-num.accent { color: var(--accent); }

.lq-funnel-stat-label {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-top: 4px;
}

/* ══════════════════════════════════════════════════
   UNIQUE ELEMENT 2 — Live Lead Scoring Dashboard
   ══════════════════════════════════════════════════ */
.lq-scoring-section {
    text-align: center;
}

.lq-scoring-section .headline-section { margin-bottom: 12px; }
.lq-scoring-section .subhead { margin: 0 auto 56px; max-width: 540px; }

.lq-scoring-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.lq-scoring-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
}

.lq-scoring-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.lq-scoring-legend {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lq-scoring-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
}

.lq-scoring-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.lq-scoring-body {
    padding: 32px 28px;
}

.lq-scoring-leads {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lq-scoring-lead {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s;
}

.lq-scoring-lead.visible {
    opacity: 1;
    transform: translateY(0);
}

.lq-scoring-lead.hot {
    border-color: rgba(48, 209, 88, 0.3);
}

.lq-scoring-lead-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.lq-scoring-lead-info {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.lq-scoring-lead-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.lq-scoring-lead-meta {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 2px;
}

.lq-scoring-lead-gauge {
    width: 120px;
    flex-shrink: 0;
}

.lq-scoring-lead-gauge-track {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--border);
    overflow: hidden;
}

.lq-scoring-lead-gauge-fill {
    height: 100%;
    border-radius: 4px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lq-scoring-lead-gauge-label {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    font-size: 10px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.lq-scoring-lead-score {
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    min-width: 48px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.lq-scoring-lead-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 980px;
    flex-shrink: 0;
    white-space: nowrap;
}

.lq-scoring-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 28px;
    border-top: 1px solid var(--border);
}

.lq-scoring-stat {
    text-align: center;
}

.lq-scoring-stat-num {
    font-size: 28px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.lq-scoring-stat-num.purple { color: #784bfa; }
.lq-scoring-stat-num.green { color: #30d158; }
.lq-scoring-stat-num.accent { color: var(--accent); }

.lq-scoring-stat-label {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-top: 4px;
}

/* ── Benefits Bento Grid ── */
.lq-benefits { text-align: center; }
.lq-benefits .headline-section { margin-bottom: 12px; }
.lq-benefits .subhead { margin: 0 auto 56px; max-width: 520px; }

.lq-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.lq-bento-grid .bento-card:nth-child(1) { grid-column: 1 / 3; }
.lq-bento-grid .bento-card:nth-child(2) { grid-column: 3; grid-row: 1 / 3; }
.lq-bento-grid .bento-card:nth-child(6) { grid-column: 2 / 4; }

.lq-bento-grid .bento-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lq-bento-grid .bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.lq-bento-grid .bento-card-graphic svg {
    transition: transform 0.4s ease;
}

.lq-bento-grid .bento-card:hover .bento-card-graphic svg {
    transform: scale(1.05);
}

@keyframes lqIconPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.lq-bento-grid .bento-card-graphic .pulse-ring {
    animation: lqIconPulse 3s ease-in-out infinite;
}

@keyframes lqIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.lq-bento-grid .bento-app-icon:nth-child(1) { animation: lqIconFloat 3s ease-in-out infinite; }
.lq-bento-grid .bento-app-icon:nth-child(2) { animation: lqIconFloat 3s 0.3s ease-in-out infinite; }
.lq-bento-grid .bento-app-icon:nth-child(3) { animation: lqIconFloat 3s 0.6s ease-in-out infinite; }
.lq-bento-grid .bento-app-icon:nth-child(4) { animation: lqIconFloat 3s 0.9s ease-in-out infinite; }

/* ── Stats Banner Override ── */
.lq-stats-section {
    background: var(--bg-card);
}

/* ── Related Use Cases ── */
.lq-related { text-align: center; }
.lq-related .headline-section { margin-bottom: 12px; }
.lq-related .subhead { margin: 0 auto 48px; max-width: 480px; }

.lq-related .feature-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.lq-related .feature-card .ind-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s, transform 0.3s;
}

.lq-related .feature-card:hover .ind-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.lq-related .ind-icon-graphic {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 14px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lq-related .ind-icon-graphic-blue  { background: rgba(0, 113, 227, 0.04); }
.lq-related .ind-icon-graphic-green { background: rgba(29, 185, 84, 0.04); }
.lq-related .ind-icon-graphic-purple { background: rgba(120, 75, 250, 0.04); }

.lq-related .feature-card:hover .ind-icon-graphic {
    transform: translateY(-4px);
}

.lq-related .ind-icon-graphic svg {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lq-related .feature-card:hover .ind-icon-graphic svg {
    transform: scale(1.08);
}

/* ── Device Morph Dashboard Section ───────────── */
.lq-device-morph {
    position: relative;
    height: 300vh;
    background: var(--bg-primary);
}

.lq-device-morph-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lq-device-frame {
    position: relative;
    width: 80%;
    max-width: 1000px;
    height: 56vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
}

.lq-device-frame .app-demo-titlebar {
    flex-shrink: 0;
}

.lq-device-frame .app-demo-body {
    flex: 1;
    height: auto;
}

.lq-device-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    z-index: 110;
}

.lq-device-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    z-index: 111;
    opacity: 0;
    transform: translateY(24px);
}

.lq-device-content .headline-section {
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.lq-device-content .subhead {
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 960px) {
    .lq-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .lq-hero-text .subhead {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .lq-hero-text .hero-actions {
        justify-content: center;
    }

    .lq-hero-trust {
        justify-content: center;
    }

    .lq-badge { display: none; }

    .lq-phone { width: 260px; }

    .lq-device-frame {
        width: 90%;
    }

    .lq-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(200px, auto);
    }
    .lq-bento-grid .bento-card:nth-child(1) { grid-column: 1 / 3; }
    .lq-bento-grid .bento-card:nth-child(2) { grid-column: 1; grid-row: auto; }
    .lq-bento-grid .bento-card:nth-child(6) { grid-column: 1 / 3; }

    .lq-funnel-body {
        flex-direction: column;
        gap: 32px;
    }

    .lq-scoring-legend { display: none; }
    .lq-scoring-lead-gauge { display: none; }
    .lq-funnel-footer { gap: 24px; }
    .lq-scoring-footer { gap: 24px; }
}

@media (max-width: 768px) {
    .lq-hero { padding: 140px 0 60px; }

    .lq-process,
    .lq-benefits,
    .lq-related,
    .lq-funnel-section,
    .lq-scoring-section { padding: 80px 0; }

    .lq-phone { width: 240px; border-radius: 36px; padding: 10px; }
    .lq-screen { border-radius: 28px; }
    .lq-chat { min-height: 220px; padding: 12px 10px; }
    .lq-msg { font-size: 12px; }

    .lq-steps {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
    }

    .lq-device-morph { height: 250vh; }
    .lq-device-frame {
        width: 94%;
        height: 40vh;
    }
    .lq-device-frame .app-demo-sidebar { display: none; }
    .lq-device-frame .app-demo-body { grid-template-columns: 1fr; }
    .lq-device-content { padding: 24px; }
    .lq-device-content .headline-section { font-size: 28px; }
    .lq-device-content .subhead { font-size: 16px; }

    .lq-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(180px, auto);
    }
    .lq-bento-grid .bento-card:nth-child(1),
    .lq-bento-grid .bento-card:nth-child(2),
    .lq-bento-grid .bento-card:nth-child(6) { grid-column: 1; grid-row: auto; }

    .lq-funnel-body {
        flex-direction: column;
        padding: 24px 16px;
        gap: 24px;
    }

    .lq-funnel-stage { padding: 10px 14px; gap: 10px; }
    .lq-funnel-stage-name { font-size: 13px; }
    .lq-funnel-stage-desc { font-size: 11px; }
    .lq-funnel-stage-bar-wrap { display: none; }
    .lq-funnel-footer { flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
    .lq-funnel-stat-num { font-size: 22px; }

    .lq-scoring-body { padding: 20px 16px; }
    .lq-scoring-lead { padding: 12px 14px; gap: 12px; }
    .lq-scoring-lead-avatar { width: 34px; height: 34px; font-size: 12px; }
    .lq-scoring-lead-score { font-size: 16px; }
    .lq-scoring-lead-tag { font-size: 10px; padding: 2px 8px; }
    .lq-scoring-footer { flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
    .lq-scoring-stat-num { font-size: 22px; }
}

@media (max-width: 480px) {
    .lq-scoring-lead-gauge { display: none; }
    .lq-funnel-stage-count { display: none; }
}
