/* ==========================================
   Landing Page — All Styles
   Base styles + V2 layout overrides
   ========================================== */

/* ====== BASE LANDING STYLES (moved from app.css) ====== */

/* ============ LANDING PAGE ============ */

/* ---- Landing Page ---- */

.landing-page {
    min-height: 100vh;
    background: #fafbfe;
}

/* Nav */
.landing-nav {
    padding: 14px 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.2s ease;
}
.landing-nav-scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.landing-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.landing-logo-icon {
    width: 34px;
    height: 34px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.landing-logo-text {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}
.landing-nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s ease;
}
.landing-nav-link:hover {
    color: var(--primary);
    text-decoration: none;
}

/* Shared section layout */
.landing-section {
    padding: 80px 24px;
}
.landing-section-alt {
    background: white;
}
.landing-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.landing-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.landing-section-label {
    display: inline-block;
    padding: 5px 14px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}
.landing-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.landing-section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Button sizes */
.landing-btn-lg {
    padding: 12px 32px !important;
    font-size: 0.9rem !important;
}

/* Hero */
.landing-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 24px 80px;
    text-align: center;
}
.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.landing-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}
.landing-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.landing-hero-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
}
.landing-hero-checks li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
}
.landing-hero-checks svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Hero Split Layout */
.landing-hero-split {
    text-align: left;
}
.landing-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 40px;
}
.landing-hero-text {
    max-width: 520px;
}

/* Animated SMS Demo */
.landing-hero-demo {
    display: flex;
    justify-content: center;
}
.landing-demo-card {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
    overflow: hidden;
}
.landing-demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #f9fafb;
    border-bottom: 1px solid var(--border-light);
}
.landing-demo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.landing-demo-header-text {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
}
.landing-demo-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--success);
    font-weight: 500;
}
.landing-demo-status-dot {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    animation: demoPulse 2s ease-in-out infinite;
}
@keyframes demoPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.landing-demo-body {
    display: grid;
}
.landing-demo-body > div {
    grid-row: 1;
    grid-column: 1;
    transition: opacity 0.35s ease;
}
.landing-demo-field {
    padding: 12px 20px 0;
}
.landing-demo-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}
.landing-demo-input {
    background: #f9fafb;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    min-height: 40px;
    display: flex;
    align-items: center;
}
.landing-demo-input-msg {
    min-height: 64px;
    align-items: flex-start;
    line-height: 1.5;
}
.landing-demo-cursor {
    color: var(--primary);
    font-weight: 300;
    animation: cursorBlink 0.8s step-end infinite;
}
@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.landing-demo-send {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 40px);
    margin: 14px 20px;
    padding: 10px;
    background: #e5e7eb;
    color: #374151;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: default;
    transition: all 0.3s ease;
}
.landing-demo-send-active {
    transform: scale(0.96);
    box-shadow: 0 0 0 4px rgba(229, 231, 235, 0.4);
}
.landing-demo-delivery {
    margin: 14px 20px;
    padding: 14px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}
.landing-demo-delivery-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.landing-demo-delivery-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    flex-shrink: 0;
}
.landing-demo-delivery-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}
.landing-demo-delivery-phone {
    display: block;
    font-size: 0.68rem;
    color: var(--text-light);
}
.landing-demo-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
    white-space: nowrap;
}
.landing-demo-badge-sending {
    background: var(--warning-light);
    color: var(--warning);
}
.landing-demo-badge-delivered {
    background: var(--success-light);
    color: var(--success);
}
.landing-demo-delivery-msg {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.landing-demo-stats {
    display: flex;
    border-top: 1px solid var(--border-light);
}
.landing-demo-stat-item {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    border-right: 1px solid var(--border-light);
}
.landing-demo-stat-item:last-child {
    border-right: none;
}
.landing-demo-stat-val {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}
.landing-demo-stat-lbl {
    display: block;
    font-size: 0.65rem;
    color: var(--text-light);
    margin-top: 1px;
}

/* How It Works Steps */
.landing-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.landing-step {
    text-align: center;
    max-width: 260px;
    padding: 0 20px;
    position: relative;
}
.landing-step-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 18px;
}
.landing-step h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.landing-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
.landing-step-connector {
    display: flex;
    align-items: center;
    color: var(--border);
    padding-top: 60px;
    flex-shrink: 0;
}

/* Cost Comparison */
.landing-comparison {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 820px;
    margin: 0 auto;
}
.landing-comparison-card {
    flex: 1;
    max-width: 360px;
    background: #fafbfe;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
}
.landing-comparison-highsms {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
}
.landing-comparison-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.landing-comparison-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}
.landing-comparison-tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
    background: var(--border-light);
    color: var(--text-muted);
}
.landing-comparison-tag-primary {
    background: var(--primary-light);
    color: var(--primary);
}
.landing-comparison-price {
    margin-bottom: 24px;
}
.landing-comparison-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    display: block;
}
.landing-comparison-amount-primary {
    color: var(--primary);
}
.landing-comparison-per {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.landing-comparison-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}
.landing-comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.82rem;
    color: var(--text-muted);
}
.landing-comparison-row:last-child {
    border-bottom: none;
}
.landing-comparison-cost {
    font-weight: 600;
    color: var(--text);
}
.landing-comparison-cost-green {
    color: var(--success);
}
.landing-comparison-extras {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-light);
}
.landing-comparison-extras-green {
    color: var(--success);
    font-weight: 500;
}
.landing-comparison-vs {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    padding: 0 20px;
}

/* Savings callout */
.landing-savings {
    text-align: center;
    margin-top: 40px;
    padding: 28px;
    background: var(--primary-light);
    border-radius: 14px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.landing-savings-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.landing-savings-amount {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 8px 0;
    letter-spacing: -0.02em;
}

/* ROI Calculator */
.roi-calc { text-align: center; }
.roi-calc-title { font-size: 1.5rem; font-weight: 700; color: var(--text); margin: 0 0 6px; }
.roi-calc-subtitle { font-size: 0.9rem; color: var(--text-muted); margin: 0 0 32px; }
.roi-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; text-align: left; }
.roi-calc-inputs { display: flex; flex-direction: column; gap: 16px; }
.roi-calc-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.roi-calc-field input {
    width: 100%; padding: 10px 14px; border: 1px solid var(--border-light); border-radius: 8px;
    font-size: 0.9rem; color: var(--text); background: #fff; transition: border-color 0.15s;
}
.roi-calc-field input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.roi-calc-results {
    background: var(--bg); border: 1px solid var(--border-light); border-radius: 12px; padding: 24px;
    display: flex; flex-direction: column; justify-content: center; gap: 12px;
}
.roi-calc-result-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-muted); }
.roi-val { font-weight: 600; }
.roi-val-red { color: var(--danger); }
.roi-val-green { color: var(--success); }
.roi-calc-divider { border-top: 1px solid var(--border-light); }
.roi-calc-total { font-size: 1.05rem; font-weight: 700; color: var(--text); padding-top: 4px; }
.roi-calc-total .roi-val { font-size: 1.15rem; color: var(--primary); }
.roi-calc-annual { font-size: 0.9rem; color: var(--text-muted); }
.roi-calc-annual .roi-val { font-weight: 700; color: var(--primary); }
@media (max-width: 768px) {
    .roi-calc-grid { grid-template-columns: 1fr; }
}

/* Feature Icons (shared with GHL section) */
.landing-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
}
.landing-feature-icon-ghl {
    background: rgba(5, 150, 105, 0.08);
    color: var(--success);
}

/* ============ FEATURE SHOWCASE ============ */
.showcase {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 28px;
    align-items: stretch;
}
.showcase-tabs {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.showcase-tab {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    width: 100%;
    font-family: inherit;
}
.showcase-tab:hover {
    background: var(--primary-light);
}
.showcase-tab.active {
    background: white;
    border-color: var(--border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.showcase-tab-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.showcase-tab.active .showcase-tab-icon {
    background: var(--primary);
    color: white;
}
.showcase-tab-text h3 {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 2px;
    line-height: 1.3;
}
.showcase-tab-text p {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}
.showcase-tab-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--primary);
    width: 0;
    border-radius: 0 0 12px 12px;
}
.showcase-tab.active .showcase-tab-progress {
    animation: showcaseProgress 5s linear forwards;
}
@keyframes showcaseProgress {
    from { width: 0; }
    to { width: 100%; }
}

/* Showcase Display */
.showcase-display {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    position: relative;
    min-height: 400px;
    overflow: hidden;
}
.showcase-mockup {
    position: absolute;
    inset: 0;
    padding: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.showcase-mockup.active {
    opacity: 1;
    pointer-events: auto;
}

/* ---- Mockup: SMS Gateway ---- */
.mock-sms-field {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 12px;
    opacity: 0;
    animation: mockFadeUp 0.4s ease forwards;
}
.mock-sms-field:nth-child(1) { animation-delay: 0.1s; }
.mock-sms-field:nth-child(2) { animation-delay: 0.3s; }
.mock-sms-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.mock-sms-value {
    font-size: 0.82rem;
    color: var(--text);
}
.mock-device-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin: 8px 0 16px;
    opacity: 0;
    animation: mockFadeUp 0.4s ease 0.5s forwards;
}
.mock-device-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}
.mock-stats-row {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    opacity: 0;
    animation: mockFadeUp 0.4s ease 0.7s forwards;
}
.mock-stats-row .mock-stat {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.mock-stats-row .mock-stat strong {
    color: var(--text);
    font-weight: 600;
    margin-right: 4px;
}

/* ---- Mockup: AI Auto-Reply ---- */
.mock-chat {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mock-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.82rem;
    line-height: 1.5;
    opacity: 0;
}
.mock-bubble-in {
    background: var(--bg);
    border: 1px solid var(--border);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    animation: mockSlideLeft 0.4s ease 0.2s forwards;
}
.mock-bubble-out {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    animation: mockSlideRight 0.4s ease 1.4s forwards;
}
.mock-bubble-sender {
    font-size: 0.68rem;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.7;
}
.mock-typing {
    display: flex;
    gap: 4px;
    align-self: flex-end;
    padding: 10px 16px;
    background: rgba(37,99,235,0.08);
    border-radius: 16px;
    opacity: 0;
    animation: mockFade 0.3s ease 0.7s forwards, mockFadeOut 0.3s ease 1.3s forwards;
}
.mock-typing span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: mockBounce 1.2s ease infinite;
}
.mock-typing span:nth-child(2) { animation-delay: 0.15s; }
.mock-typing span:nth-child(3) { animation-delay: 0.3s; }
.mock-ai-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 8px;
    padding: 3px 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

/* ---- Mockup: SMS Campaigns ---- */
.mock-campaign-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    opacity: 0;
    animation: mockFadeUp 0.4s ease 0.1s forwards;
}
.mock-campaign-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.mock-campaign-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
}
.mock-status-badge {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}
.mock-status-active {
    background: var(--success-light);
    color: var(--success);
}
.mock-progress-track {
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}
.mock-progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    width: 0;
    animation: mockFillBar 1.2s ease 0.5s forwards;
}
@keyframes mockFillBar { to { width: 67%; } }
.mock-progress-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.mock-campaign-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}
.mock-campaign-stats .mock-stat {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.mock-campaign-stats .mock-stat strong {
    color: var(--text);
    display: block;
    font-size: 0.9rem;
}
.mock-recipients {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mock-recipient {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text);
    opacity: 0;
    animation: mockFadeUp 0.3s ease forwards;
}
.mock-recipient:nth-child(1) { animation-delay: 0.8s; }
.mock-recipient:nth-child(2) { animation-delay: 1s; }
.mock-recipient:nth-child(3) { animation-delay: 1.2s; }
.mock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.mock-dot-green { background: var(--success); }
.mock-dot-yellow { background: var(--warning); }

/* ---- Mockup: SMS Warmup ---- */
.mock-warmup-chart {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    height: 200px;
    padding: 0 12px;
    margin-bottom: 20px;
}
.mock-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}
.mock-bar {
    width: 100%;
    border-radius: 6px 6px 0 0;
    height: 0;
    animation: mockGrowBar 0.6s ease forwards;
}
.mock-bar-active { background: var(--primary); }
.mock-bar-current { animation-name: mockGrowBarPulse; }
.mock-bar-future {
    background: transparent;
    border: 2px dashed var(--border);
}
.mock-bar-wrap:nth-child(1) .mock-bar { animation-delay: 0.1s; }
.mock-bar-wrap:nth-child(2) .mock-bar { animation-delay: 0.25s; }
.mock-bar-wrap:nth-child(3) .mock-bar { animation-delay: 0.4s; }
.mock-bar-wrap:nth-child(4) .mock-bar { animation-delay: 0.55s; }
.mock-bar-wrap:nth-child(5) .mock-bar { animation-delay: 0.7s; }
.mock-bar-wrap:nth-child(6) .mock-bar { animation-delay: 0.85s; }
.mock-bar-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}
@keyframes mockGrowBar { to { height: var(--bar-h); } }
@keyframes mockGrowBarPulse {
    0% { height: 0; }
    70% { height: var(--bar-h); }
    85% { height: calc(var(--bar-h) - 3%); }
    100% { height: var(--bar-h); box-shadow: 0 0 12px rgba(37,99,235,0.3); }
}
.mock-warmup-status {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    padding: 10px 16px;
    background: var(--bg);
    border-radius: 8px;
    border: 1px solid var(--border);
    opacity: 0;
    animation: mockFadeUp 0.4s ease 1s forwards;
}

/* ---- Mockup: GHL Integration ---- */
.mock-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.mock-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
}
.mock-node:nth-child(1) { animation: mockNodeIn 0.4s ease 0.2s forwards; }
.mock-node:nth-child(3) { animation: mockNodeIn 0.4s ease 0.8s forwards; }
.mock-node:nth-child(5) { animation: mockNodeIn 0.4s ease 1.4s forwards; }
.mock-node-circle {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
}
.mock-node-ghl .mock-node-circle { background: var(--success); }
.mock-node-hsms .mock-node-circle { background: var(--primary); }
.mock-node-phone .mock-node-circle { background: #6B7280; }
.mock-node-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
}
.mock-arrow {
    color: var(--border);
    padding: 0 8px;
    opacity: 0;
}
.mock-arrow:nth-child(2) { animation: mockFade 0.3s ease 0.6s forwards; }
.mock-arrow:nth-child(4) { animation: mockFade 0.3s ease 1.2s forwards; }

/* ---- Mockup: Missed-Call Text-Back ---- */
.mock-missed-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.mock-notif {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 340px;
    opacity: 0;
}
.mock-notif-missed {
    background: var(--danger-light);
    border: 1px solid rgba(220,38,38,0.15);
    animation: mockSlideDown 0.5s ease 0.2s forwards;
}
.mock-notif-sent {
    background: var(--success-light);
    border: 1px solid rgba(5,150,105,0.15);
    animation: mockSlideDown 0.5s ease 1s forwards;
}
.mock-notif-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mock-notif-icon-red { background: rgba(220,38,38,0.12); }
.mock-notif-icon-green { background: rgba(5,150,105,0.12); }
.mock-notif-text strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text);
    margin-bottom: 2px;
}
.mock-notif-text span {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.mock-missed-arrow {
    color: var(--text-light);
    font-size: 1.2rem;
    opacity: 0;
    animation: mockFade 0.3s ease 0.8s forwards;
}
.mock-response-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--success);
    padding: 6px 14px;
    background: var(--success-light);
    border-radius: 20px;
    margin-top: 4px;
    opacity: 0;
    animation: mockFadeUp 0.4s ease 1.5s forwards;
}

/* ---- Mockup Shared Animations ---- */
@keyframes mockFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes mockSlideLeft {
    from { opacity: 0; transform: translateX(-16px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes mockSlideRight {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes mockSlideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes mockFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes mockFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
@keyframes mockBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}
@keyframes mockNodeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* Showcase More Grid */
.showcase-more-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 40px;
}
.showcase-more-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s ease;
}
.showcase-more-card:hover {
    border-color: rgba(37,99,235,0.2);
    box-shadow: 0 2px 12px rgba(37,99,235,0.05);
}
.showcase-more-card .landing-feature-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}
.showcase-more-text h3 {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 2px;
}
.showcase-more-text p {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Social Proof */

/* GHL Integration Section */
.landing-ghl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.landing-ghl-card {
    background: white;
    border: 1px solid rgba(5, 150, 105, 0.15);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: left;
    transition: all 0.2s ease;
}
.landing-ghl-card:hover {
    border-color: rgba(5, 150, 105, 0.3);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.08);
    transform: translateY(-2px);
}
.landing-ghl-card h3 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.landing-ghl-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Social Proof */
.landing-social-proof {
    padding: 28px 24px;
    background: white;
    border-bottom: 1px solid var(--border-light);
}
.landing-social-proof-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}
.landing-social-proof-stat {
    text-align: center;
}
.landing-social-proof-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}
.landing-social-proof-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Single Pricing Card */
.landing-pricing-single {
    display: flex;
    justify-content: center;
    max-width: 420px;
    margin: 0 auto;
}
.landing-pricing-single .landing-pricing-card {
    width: 100%;
}

/* Pricing */
.landing-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}
.landing-pricing-toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}
.landing-pricing-toggle-active {
    color: var(--text);
    font-weight: 600;
}
.landing-pricing-switch {
    position: relative;
    width: 48px;
    height: 26px;
    display: inline-block;
}
.landing-pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.landing-pricing-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--border-light);
    border-radius: 26px;
    transition: background 0.3s;
}
.landing-pricing-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.landing-pricing-switch input:checked + .landing-pricing-slider {
    background: var(--primary);
}
.landing-pricing-switch input:checked + .landing-pricing-slider::before {
    transform: translateX(22px);
}
.landing-pricing-save-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #16a34a;
    background: #dcfce7;
    padding: 3px 10px;
    border-radius: 20px;
}
.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.landing-pricing-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 18px;
    padding: 36px 28px;
    position: relative;
    transition: border-color 0.2s;
}
.landing-pricing-card-popular {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
}
.landing-pricing-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.landing-pricing-devices {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}
.landing-pricing-guarantee {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 20px;
}
.landing-pricing-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}
.landing-pricing-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.landing-pricing-price {
    margin: 12px 0 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}
.landing-pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
}
.landing-pricing-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}
.landing-pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}
.landing-pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.landing-pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text);
}
.landing-pricing-feature svg {
    color: var(--success);
    flex-shrink: 0;
}

/* FAQ */
.landing-faq-group-title {
    max-width: 700px;
    margin: 0 auto 16px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}
.landing-faq {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.landing-faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.landing-faq-item.open {
    border-color: rgba(37, 99, 235, 0.2);
}
.landing-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}
.landing-faq-question svg {
    flex-shrink: 0;
    color: var(--text-light);
    transition: transform 0.2s ease;
}
.landing-faq-item.open .landing-faq-question svg {
    transform: rotate(180deg);
}
.landing-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.landing-faq-item.open .landing-faq-answer {
    max-height: 300px;
}
.landing-faq-answer p {
    padding: 0 22px 18px;
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Final CTA */
.landing-cta {
    padding: 80px 24px;
    text-align: center;
    background: linear-gradient(135deg, #eff6ff 0%, #fafbfe 100%);
}
.landing-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.landing-cta-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Legal & Contact Pages */
.landing-legal-page {
    padding: 60px 24px 80px;
}
.landing-legal-inner {
    max-width: 720px;
    margin: 0 auto;
}
.landing-legal-inner h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.landing-legal-updated {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 36px;
}
.landing-legal-inner h2 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 32px;
    margin-bottom: 12px;
}
.landing-legal-inner h3 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 20px;
    margin-bottom: 8px;
}
.landing-legal-inner p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}
.landing-legal-inner ul {
    padding-left: 20px;
    margin-bottom: 12px;
}
.landing-legal-inner li {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}
.landing-legal-inner a {
    color: var(--primary);
}
.landing-contact-card {
    text-align: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 36px;
    margin-top: 32px;
}
.landing-contact-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 20px;
}
.landing-contact-card h2 {
    margin-top: 0 !important;
    margin-bottom: 8px;
}
.landing-contact-card p {
    max-width: 400px;
    margin: 0 auto 24px;
}
.landing-contact-email {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 12px 32px;
    background: var(--primary-light);
    border-radius: 10px;
    transition: all 0.2s ease;
}
.landing-contact-email:hover {
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary-hover);
}

/* Footer */
.landing-footer {
    background: #111827;
    color: #d1d5db;
    padding: 56px 24px 32px;
}
.landing-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.landing-footer-col h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}
.landing-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.landing-footer-col ul li a {
    font-size: 0.82rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}
.landing-footer-col ul li a:hover {
    color: #ffffff;
}
.landing-footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #1f2937;
}
.landing-footer-bottom p {
    margin: 0;
    color: #6b7280;
    font-size: 0.78rem;
}

/* ---- Landing Responsive ---- */
@media (max-width: 992px) {
    .landing-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .landing-hero-split {
        text-align: center;
    }
    .landing-hero-text {
        max-width: 100%;
    }
    .landing-hero-text .d-flex {
        justify-content: center;
    }
    .landing-demo-card {
        max-width: 380px;
    }
    .landing-comparison {
        flex-direction: column;
        align-items: center;
    }
    .landing-comparison-card {
        max-width: 100%;
        width: 100%;
    }
    .landing-comparison-vs {
        padding: 16px 0;
    }
    .landing-ghl-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .showcase {
        grid-template-columns: 1fr;
    }
    .showcase-tabs {
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }
    .showcase-tab {
        flex-shrink: 0;
        min-width: auto;
        padding: 12px 16px;
    }
    .showcase-tab-text p {
        display: none;
    }
    .showcase-display {
        min-height: 340px;
    }
}

@media (max-width: 768px) {
    .landing-nav-links {
        display: none !important;
    }
    .landing-title {
        font-size: 2rem;
    }
    .landing-hero {
        padding: 50px 20px 60px;
    }
    .landing-section {
        padding: 60px 20px;
    }
    .landing-section-title {
        font-size: 1.6rem;
    }
    .showcase-more-grid {
        grid-template-columns: 1fr;
    }
    .mock-flow {
        flex-direction: column;
    }
    .mock-arrow svg {
        transform: rotate(90deg);
    }
    .landing-steps {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .landing-step-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }
    .landing-cta {
        padding: 60px 20px;
    }
    .landing-cta-title {
        font-size: 1.6rem;
    }
    .landing-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .landing-social-proof-stats {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .landing-title {
        font-size: 1.6rem;
    }
    .showcase-tab {
        padding: 10px 12px;
    }
    .showcase-tab-icon {
        width: 32px;
        height: 32px;
    }
    .showcase-tab-text h3 {
        font-size: 0.78rem;
    }
    .showcase-mockup {
        padding: 20px;
    }
    .showcase-display {
        min-height: 300px;
    }
    .landing-comparison-card {
        padding: 24px 20px;
    }
    .landing-pricing-card {
        padding: 28px 22px;
    }
    .landing-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Landing - All Plans Include section */
.landing-pricing-all-features {
    max-width: 900px;
    margin: 48px auto 0;
    text-align: center;
}
.landing-pricing-all-features-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}
.landing-pricing-all-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 32px;
    text-align: left;
}
.landing-pricing-all-features-grid .landing-pricing-feature {
    font-size: 0.85rem;
}
@media (max-width: 768px) {
    .landing-pricing-all-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 20px;
    }
}
@media (max-width: 480px) {
    .landing-pricing-all-features-grid {
        grid-template-columns: 1fr;
    }
}


/* ====== V2 LAYOUT OVERRIDES ====== */

/* --- Page Background --- */
.landing-v2 {
    background: #ffffff;
}

/* --- Hero --- */
.landing-v2 .landing-hero {
    padding-top: 95px;
    padding-bottom: 120px;
}

/* --- Section Alternation --- */
.landing-v2 .landing-section-alt {
    background: #f8f9fb;
}

/* --- Steps: Card Grid with Number Badges --- */
.landing-v2 .v2-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.landing-v2 .v2-step-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow 0.2s ease;
}

.landing-v2 .v2-step-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.landing-v2 .v2-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.landing-v2 .v2-step-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.landing-v2 .v2-step-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* --- GHL: 2-column Grid --- */
.landing-v2 .v2-ghl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.landing-v2 .v2-ghl-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow 0.2s ease;
}

.landing-v2 .v2-ghl-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.landing-v2 .v2-ghl-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #eff6ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-v2 .v2-ghl-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 4px;
}

.landing-v2 .v2-ghl-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* --- Showcase: Horizontal Tabs on Top (overrides app.css vertical sidebar) --- */
.landing-v2 .showcase {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.landing-v2 .showcase-tabs {
    display: flex;
    flex-direction: row;
    gap: 0;
    overflow-x: auto;
    border-bottom: 1px solid #e5e7eb;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.landing-v2 .showcase-tabs::-webkit-scrollbar {
    display: none;
}

.landing-v2 .showcase-tab {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
    overflow: visible;
    font-family: inherit;
    width: auto;
}

.landing-v2 .showcase-tab:hover {
    background: rgba(37, 99, 235, 0.03);
    box-shadow: none;
}

.landing-v2 .showcase-tab.active {
    background: transparent;
    border-color: transparent;
    border-bottom-color: var(--primary);
    box-shadow: none;
}

.landing-v2 .showcase-tab .showcase-tab-text p {
    display: none;
}

.landing-v2 .showcase-tab .showcase-tab-text h3 {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin: 0;
    white-space: nowrap;
}

.landing-v2 .showcase-tab.active .showcase-tab-text h3 {
    color: var(--primary);
    font-weight: 600;
}

.landing-v2 .showcase-tab .showcase-tab-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f3f4f6;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-v2 .showcase-tab.active .showcase-tab-icon {
    background: var(--primary);
    color: white;
}

/* Progress bar — horizontal bottom fill */
.landing-v2 .showcase-tab .showcase-tab-progress {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--primary);
    width: 0;
    border-radius: 0;
}

.landing-v2 .showcase-tab.active .showcase-tab-progress {
    animation: showcaseProgress 5s linear forwards;
}

/* Display area — connects to tab bar */
.landing-v2 .showcase-display {
    background: #f8f9fb;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    min-height: 380px;
}

/* --- Bento Grid: 3-column Feature Cards --- */
.landing-v2 .v2-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.landing-v2 .v2-bento-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: box-shadow 0.2s ease;
}

.landing-v2 .v2-bento-card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.landing-v2 .v2-bento-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f3f4f6;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-v2 .v2-bento-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 3px;
}

.landing-v2 .v2-bento-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* --- Pricing: Cleaner cards with more breathing room --- */
.landing-v2 .landing-pricing-card {
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.landing-v2 .landing-pricing-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}

.landing-v2 .landing-pricing-card-popular {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
}

.landing-v2 .landing-pricing-header {
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.landing-v2 .landing-pricing-amount {
    font-size: 3.2rem;
    letter-spacing: -0.04em;
}

.landing-v2 .landing-pricing-devices {
    background: #f8f9fb;
    border-radius: 10px;
    padding: 10px 0;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.landing-v2 .landing-pricing-all-features {
    background: #f8f9fb;
    border-radius: 20px;
    padding: 40px 48px;
    max-width: 960px;
}

.landing-v2 .landing-pricing-all-features-title {
    font-size: 1.15rem;
    margin-bottom: 28px;
}

.landing-v2 .landing-pricing-all-features-grid {
    gap: 12px 40px;
}

.landing-v2 .landing-pricing-all-features-grid .landing-pricing-feature {
    font-size: 0.88rem;
    padding: 4px 0;
}

.landing-v2 .landing-pricing-all-features-grid .landing-pricing-feature svg {
    color: var(--primary);
}

/* --- ROI: Cleaner calculator --- */
.landing-v2 .roi-calc-grid {
    gap: 32px;
}

.landing-v2 .roi-calc-inputs {
    background: #f8f9fb;
    border-radius: 16px;
    padding: 28px 24px;
}

.landing-v2 .roi-calc-field input {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.92rem;
    background: #ffffff;
}

.landing-v2 .roi-calc-field input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}

.landing-v2 .roi-calc-results {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.landing-v2 .roi-calc-result-row {
    font-size: 0.88rem;
    padding: 4px 0;
}

.landing-v2 .roi-calc-total {
    font-size: 1.1rem;
    padding-top: 8px;
}

.landing-v2 .roi-calc-total .roi-val {
    font-size: 1.2rem;
}

/* --- Page top padding for subpages --- */
.landing-v2 .landing-section:first-of-type {
    padding-top: 80px;
}

/* --- Subpage Hero Header: Light bg banner for all subpages --- */
.landing-v2 .v2-page-hero {
    background: #f8f9fb;
    padding: 80px 24px 48px;
    text-align: center;
}

.landing-v2 .v2-page-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}

.landing-v2 .v2-page-hero p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    max-width: 480px;
    margin: 0 auto;
}

/* --- Legal Pages: Clean content, no card box --- */
.landing-v2 .landing-legal-page {
    padding: 40px 24px 80px;
}

.landing-v2 .landing-legal-inner {
    max-width: 740px;
}

.landing-v2 .landing-legal-inner h1 {
    display: none;
}

.landing-v2 .landing-legal-updated {
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.landing-v2 .landing-legal-inner h2 {
    font-size: 1.08rem;
    margin-top: 36px;
}

.landing-v2 .landing-legal-inner p {
    font-size: 0.9rem;
    line-height: 1.75;
}

.landing-v2 .landing-legal-inner li {
    font-size: 0.9rem;
    line-height: 1.75;
}

/* --- Contact Page --- */
.landing-v2 .landing-contact-card {
    background: #f8f9fb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 56px 40px;
    box-shadow: none;
    margin-top: 32px;
}

.landing-v2 .landing-contact-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: #eff6ff;
}

.landing-v2 .landing-contact-email {
    border-radius: 12px;
    padding: 14px 36px;
    font-size: 1.05rem;
}

/* --- CTA: Flat background (no gradient) --- */
.landing-v2 .landing-cta {
    background: #f0f4ff;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .landing-v2 .v2-steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .landing-v2 .v2-ghl-grid {
        grid-template-columns: 1fr;
    }
    .landing-v2 .v2-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .landing-v2 .v2-bento-grid {
        grid-template-columns: 1fr;
    }
    .landing-v2 .showcase-tab {
        padding: 10px 14px;
    }
    .landing-v2 .showcase-tab .showcase-tab-icon {
        width: 28px;
        height: 28px;
    }
    .landing-v2 .showcase-tab .showcase-tab-text h3 {
        font-size: 0.78rem;
    }
}
