/* Global Variables */
:root {
    /* Brand Colors */
    --primary-dark: #044EA3;
    --accent-blue-light: #4DA6FC;
    --accent-lime: #4DA6FC;
    --accent-yellow: #4DA6FC;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --light-gray: #F4F6F8;
    --gray: #E1E4E8;
    --dark-gray: #6B7280;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #044EA3 0%, #4DA6FC 100%);
    --gradient-blue-light: linear-gradient(135deg, #4DA6FC 0%, #FFFFFF 100%);
    --gradient-lime: linear-gradient(135deg, #4DA6FC 0%, #FFFFFF 100%);
    --gradient-hero: linear-gradient(180deg, #FFFFFF 0%, #F8F9FF 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(4, 78, 163, 0.05);
    --shadow-md: 0 4px 12px rgba(4, 78, 163, 0.08);
    --shadow-lg: 0 10px 30px rgba(4, 78, 163, 0.12);
    --shadow-xl: 0 20px 50px rgba(4, 78, 163, 0.15);
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Animation */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--primary-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Thinner default weights for body copy (keep headings bold) */
p,
.hero-description,
.metrics-subtitle,
.metric-desc,
.feature-text p,
.section-desc,
.activity-feed .action,
.stat,
.stat-change,
.type,
.footer-brand p,
.footer-column a {
    font-weight: 300;
    letter-spacing: 0.01em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, #044EA3 0%, #4DA6FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-dark {
    color: var(--primary-dark);
}

.text-light {
    color: var(--dark-gray);
}

/* Simple Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 160px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 30px;
    transition: var(--transition-base);
    border: 1px solid rgba(4, 78, 163, 0.1);
}

.btn-login:hover {
    background: var(--light-gray);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-header-cta {
    background: var(--accent-blue-light);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(77, 166, 252, 0.3);
}

/* Hero Section */
.hero {
    padding: 200px 0 120px;
    position: relative;
    overflow: hidden;
    background: white;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(77, 166, 252, 0.1) 0%, 
        rgba(4, 78, 163, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
}

.title-line {
    display: block;
    margin-bottom: 8px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.hero-description strong {
    color: var(--dark-gray);
    font-weight: 700;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-base);
    box-shadow: 0 6px 24px rgba(77, 166, 252, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(77, 166, 252, 0.4);
}

.btn-primary i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

/* Hero Circles Container */
.hero-circles-container {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(4, 78, 163, 0.3);
    border: 8px solid white;
    transition: var(--transition-base);
}

.hero-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
}

.hero-circle-main {
    width: 500px;
    height: 500px;
    top: 10%;
    left: 10%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-circle-main:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 25px 70px rgba(4, 78, 163, 0.4);
}

/* Live Indicator */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--dark-gray);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* Hero Bubbles */
.hero-bubble {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 30px rgba(4, 78, 163, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-base);
    z-index: 3;
    border: 1px solid rgba(77, 166, 252, 0.1);
}

.hero-bubble:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(4, 78, 163, 0.25);
}

.bubble-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.bubble-content {
    line-height: 1.4;
}

.bubble-content strong {
    display: block;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
}

.bubble-content p {
    color: var(--dark-gray);
    font-size: 13px;
    margin: 0;
}

/* Bubble Positions - Distributed around the circle */
.bubble-1 {
    top: 3%;
    right: 3%;
}

.bubble-2 {
    top: 15%;
    left: 7%;
}

.bubble-3 {
    bottom: 15%;
    left: 5%;
}

.bubble-4 {
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
}

.bubble-5 {
    bottom: 15%;
    right: 5%;
}

.bubble-6 {
    top: 50%;
    right: -20%;
    transform: translateY(-50%);
}

/* Team Bubble */
.bubble-team {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-avatars {
    display: flex;
    align-items: center;
}

.team-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    margin-left: -10px;
}

.team-avatar:first-child {
    margin-left: 0;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.team-count {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-blue-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-left: -10px;
    border: 2px solid white;
}

.bubble-team span {
    font-size: 13px;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Stat Bubble */
.bubble-stat {
    text-align: center;
    padding: 8px 12px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--dark-gray);
    margin-top: 4px;
}

/* Floating Animation for Bubbles */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

.bubble-1 { animation: float 3s ease-in-out infinite; }
.bubble-2 { animation: float 4s ease-in-out infinite 0.5s; }
.bubble-3 { animation: float 3.5s ease-in-out infinite 1s; }
.bubble-4 { animation: floatCentered 4.5s ease-in-out infinite 1.5s; }
.bubble-5 { animation: float 3.8s ease-in-out infinite 2s; }
.bubble-6 { animation: floatCentered 4.2s ease-in-out infinite 2.5s; }

/* Responsive visibility */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* AI Features with Tabs */
.ai-features {
    padding: 80px 0;
    background: var(--off-white);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Feature Tabs Navigation */
.feature-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    border-bottom: 2px solid var(--gray);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover {
    background: var(--light-gray);
}

.tab-btn.active {
    border-bottom-color: var(--primary-dark);
}

.tab-icon {
    display: none;
}

.tab-content h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--dark-gray);
}

.tab-btn.active .tab-content h4 {
    color: var(--primary-dark);
    font-weight: 600;
}

.tab-content p {
    display: none;
}

/* Tab Panels */
.tab-content-wrapper {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

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

/* Reception Activity Dashboard */
.reception-activity {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-card {
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    background: white;
    border: 1px solid var(--gray);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

.stat-label {
    font-size: 12px;
    color: var(--dark-gray);
}

.tasks-completed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tasks-completed h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-gray);
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.task-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 8px;
    align-items: center;
    transition: transform 0.2s;
}

.task-item:hover {
    transform: translateX(4px);
}

.task-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.task-icon.success {
    background: #22C55E;
    color: white;
}

.task-icon.filtered {
    background: #6B7280;
    color: white;
}

.task-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.task-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-dark);
}

.task-meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.task-agent {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.task-agent.parker {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

.task-agent.isabella {
    background: rgba(139, 92, 246, 0.15);
    color: #8B5CF6;
}

.task-time {
    font-size: 11px;
    color: var(--dark-gray);
}

/* Lead Pipeline Styles */
.lead-pipeline {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0;
}

.pipeline-column {
    min-width: 180px;
    flex: 1;
    background: var(--light-gray);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pipeline-column.success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.column-header h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

.lead-count {
    background: var(--dark-gray);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 22px;
    text-align: center;
}

.column-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lead-card {
    background: white;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lead-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.lead-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.lead-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.lead-meta .channel {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.lead-meta .channel.email {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue-light);
}

.lead-meta .channel.phone {
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
}

.lead-meta .channel.sms {
    background: rgba(168, 85, 247, 0.1);
    color: #A855F7;
}

.lead-meta .ai-agent {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.lead-meta .ai-agent.michael {
    background: rgba(34, 197, 94, 0.15);
    color: #16A34A;
}

.lead-meta .ai-agent.donna {
    background: rgba(168, 85, 247, 0.15);
    color: #9333EA;
}

.lead-meta .badge.deal {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    background: #22C55E;
    color: white;
}

/* Staff Calendar Styles */
.staff-calendar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray);
}

.calendar-controls h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

.calendar-legend {
    display: flex;
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--dark-gray);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.legend-dot.morning {
    background: #F59E0B;
}

.legend-dot.afternoon {
    background: var(--accent-blue-light);
}

.legend-dot.evening {
    background: #8B5CF6;
}

.calendar-grid-schedule {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--gray);
    border-radius: 8px;
    overflow: hidden;
}

.calendar-row {
    display: grid;
    grid-template-columns: 150px repeat(5, 1fr);
    gap: 1px;
    background: white;
}

.calendar-row.header-row {
    background: var(--light-gray);
}

.calendar-row.header-row .day-cell,
.calendar-row.header-row .caregiver-name {
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    padding: 12px 8px;
    font-size: 13px;
}

.caregiver-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
}

.caregiver-avatar {
    width: 36px;
    height: 36px;
    background: var(--accent-blue-light);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

.caregiver-details {
    display: flex;
    flex-direction: column;
}

.caregiver-details strong {
    font-size: 13px;
    color: var(--primary-dark);
}

.caregiver-details span {
    font-size: 11px;
    color: var(--dark-gray);
}

.day-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    background: white;
    position: relative;
}

.day-cell.off {
    color: var(--dark-gray);
    font-size: 12px;
    font-style: italic;
}

.shift {
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.shift.morning {
    background: #F59E0B;
}

.shift.afternoon {
    background: var(--accent-blue-light);
}

.shift.evening {
    background: #8B5CF6;
}

.shift.urgent {
    box-shadow: 0 0 0 2px #EF4444;
}

.day-cell i {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 10px;
    color: #EF4444;
}

.schedule-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray);
}

.schedule-note {
    font-size: 12px;
    color: var(--dark-gray);
    font-style: italic;
}

.ai-agent.james {
    background: var(--primary-dark);
    color: white;
}

/* Results Banner */
.results-banner {
    padding: 48px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.results-content {
    text-align: center;
}

.results-title {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.result-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.result-item.featured {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.result-number {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1;
}

.result-label {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.result-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Impact Metrics Section */
.impact-metrics {
    padding: 80px 0;
    background: var(--off-white);
}

.metrics-header {
    text-align: center;
    margin-bottom: 60px;
}

.metrics-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 16px auto 0;
    line-height: 1.6;
}

.section-title {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 0;
    background: linear-gradient(135deg, #044EA3 0%, #4DA6FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
}

.metrics-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metric-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--gray);
    position: relative;
    overflow: hidden;
}


.metric-card.featured {
    border-color: var(--accent-blue-light);
    box-shadow: 0 10px 40px rgba(77, 166, 252, 0.1);
}

.metric-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
}

.metric-icon-bg.lime {
    background: var(--gradient-blue-light);
}

.metric-icon-bg.purple {
    background: var(--gradient-primary);
}

.metric-icon {
    position: relative;
    font-size: 28px;
    color: var(--primary-dark);
    z-index: 1;
}

.metric-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.metric-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.metric-desc {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.metric-desc strong {
    color: var(--primary-dark);
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features.alt-bg {
    background: var(--off-white);
}

.features.dark-bg {
    background: var(--primary-dark);
    color: white;
}

.features.dark-bg .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.features.dark-bg .section-tag {
    background: rgba(77, 166, 252, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.features.dark-bg .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.features.dark-bg .feature-text h4 {
    color: white;
}

.features.dark-bg .feature-text p {
    color: rgba(255, 255, 255, 0.8);
}

/* Demo window adjustments for dark backgrounds */
.features.dark-bg .demo-window {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features.dark-bg .window-header {
    background: var(--accent-blue-light);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.features.dark-bg .window-content {
    background: rgba(248, 250, 252, 0.98);
}

.features.dark-bg .activity-item {
    background: white;
    border: 1px solid rgba(4, 78, 163, 0.1);
    box-shadow: 0 2px 8px rgba(4, 78, 163, 0.08);
}

.features.dark-bg .activity-item.new {
    border: 2px solid var(--accent-blue-light);
    box-shadow: 0 4px 12px rgba(77, 166, 252, 0.2);
}

/* Feature icons for dark background */
.features.dark-bg .feature-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.features.dark-bg .icon-bg {
    background: rgba(77, 166, 252, 0.3);
    opacity: 1;
}

.features.dark-bg .feature-icon i {
    color: white;
}

.feature-section {
    margin-bottom: 120px;
}

.feature-section:last-child {
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(77, 166, 252, 0.1);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-grid.reverse .feature-content {
    order: 2;
}

.feature-grid.reverse .feature-visual {
    order: 1;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-icon {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
}

.icon-bg.lime {
    background: var(--gradient-blue-light);
}

.icon-bg.purple {
    background: var(--gradient-primary);
}

.feature-icon i {
    position: relative;
    font-size: 20px;
    color: var(--primary-dark);
    z-index: 1;
}

.feature-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 500; /* thinner titles for feature items */
}

.feature-text p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Demo Windows */
.demo-window, .window {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

/* Compact demo window for activity monitor */
.demo-window {
    max-height: 400px;
}

.window-header {
    background: var(--primary-dark);
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28CA42; }

.window-title {
    font-size: 14px;
    font-weight: 500;
}

.window-content {
    padding: 20px;
    background: var(--light-gray);
}

.activity-feed.compact .window-content {
    padding: 16px;
}

/* Activity Feed */
.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-feed.compact {
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.activity-item {
    background: white;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 16px;
    transition: var(--transition-base);
}

.activity-feed.compact .activity-item {
    padding: 12px;
    gap: 12px;
}

.activity-item.new {
    border: 2px solid var(--accent-blue-light);
}

/* Clean static styling */

.activity-time {
    font-size: 12px;
    color: var(--dark-gray);
    min-width: 80px;
}

.lead-info {
    margin-bottom: 4px; /* tighter to avoid extra gap before agent label */
}

.ai-action {
    margin-top: 0;
    line-height: 1.4;
}

.activity-content {
    line-height: 1.4;
}

.lead-info strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.channel {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 2px;
}

.channel.email { background: rgba(74, 144, 226, 0.1); color: #4A90E2; }
.channel.sms { background: rgba(52, 199, 89, 0.1); color: #34C759; }
.channel.phone { background: rgba(255, 159, 10, 0.1); color: #FF9F0A; }

.ai-agent {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
}

.ai-agent.michael { background: var(--accent-blue-light); color: white; }
.ai-agent.donna { background: var(--primary-dark); color: white; }

.action {
    font-size: 14px;
    color: var(--dark-gray);
}

.action.success { color: #34C759; }

/* Mini Calendar */
.mini-calendar {
    margin-bottom: 16px;
}

.calendar-month {
    text-align: center;
    margin-bottom: 12px;
}

.calendar-month h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    margin-bottom: 4px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    color: var(--dark-gray);
    padding: 4px 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--gray);
    border-radius: 4px;
    overflow: hidden;
}

.calendar-day {
    background: white;
    text-align: center;
    padding: 6px 4px;
    font-size: 12px;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
}

.calendar-day.other-month {
    color: var(--dark-gray);
    opacity: 0.3;
}

.calendar-day.today {
    background: var(--accent-blue-light);
    color: white;
    font-weight: 600;
}

.calendar-day.has-appointment {
    background: rgba(77, 166, 252, 0.1);
}

.calendar-day.has-appointment::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent-blue-light);
    border-radius: 50%;
}

.calendar-day.today.has-appointment::after {
    background: white;
}

.calendar-day:hover:not(.other-month) {
    background: var(--light-gray);
}

/* Today's Appointments */
.today-appointments {
    border-top: 1px solid var(--gray);
    padding-top: 12px;
}

.appointments-header {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.appointment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: rgba(77, 166, 252, 0.05);
    border-radius: 6px;
    font-size: 12px;
}

.appointment-time {
    font-weight: 600;
    color: var(--accent-blue-light);
    min-width: 50px;
}

.appointment-client {
    flex: 1;
    color: var(--primary-dark);
    font-weight: 500;
}

.appointment-agent {
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
}

.appointment-agent.michael {
    background: var(--accent-blue-light);
    color: white;
}

/* Platform Section - Dashboard */
.platform {
    padding: 80px 0;
    background: var(--off-white);
}

.platform-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-desc {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.dashboard-tabs {
    display: flex;
    background: var(--primary-dark);
    padding: 0;
}

.tab {
    flex: 1;
    padding: 16px 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition-base);
    font-weight: 500;
}

.tab.active {
    background: white;
    color: var(--primary-dark);
}

.tab:hover:not(.active) {
    color: white;
}

.dashboard-content {
    padding: 24px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-box {
    background: white;
    padding: 16px;
    border-radius: 12px;
    transition: var(--transition-base);
    border: 1px solid var(--gray);
    box-shadow: var(--shadow-sm);
}

.stat-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stat-header span {
    font-size: 14px;
    color: var(--dark-gray);
}

.trend-up {
    color: #10B981;
    font-size: 16px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.stat-change {
    font-size: 12px;
    color: #10B981;
    font-weight: 500;
}

/* Dashboard Chart */
.dashboard-chart {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--gray);
    box-shadow: var(--shadow-sm);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.chart-header h4 {
    font-size: 16px;
    color: var(--primary-dark);
    font-weight: 600;
}

.chart-controls {
    display: flex;
    gap: 8px;
}

.chart-controls button {
    padding: 4px 12px;
    border: 1px solid var(--gray);
    background: white;
    border-radius: 16px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition-base);
    min-width: 32px;
}

.chart-controls button.active {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
}

/* Pipeline Visual */
.pipeline-visual { display: flex; flex-direction: column; gap: 8px; }

.pipeline-stage {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stage-bar-container {
    flex: 1;
    max-width: 300px;
}

.stage-name {
    min-width: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-dark);
}

.stage-bar {
    height: 24px;
    background: linear-gradient(90deg, var(--accent-blue-light) 0%, #6BB6FF 100%);
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 12px;
    transition: var(--transition-base);
    box-shadow: 0 2px 4px rgba(77, 166, 252, 0.2);
    min-width: 60px;
}

.stage-bar.converted {
    background: linear-gradient(90deg, var(--primary-dark) 0%, #2563EB 100%);
    box-shadow: 0 2px 4px rgba(4, 78, 163, 0.3);
}

.stage-count {
    font-weight: 600;
    color: white;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Platform Features */
.platform-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-highlight {
    text-align: center;
    max-width: 300px;
}

.feature-highlight i {
    font-size: 40px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.feature-highlight h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-highlight p {
    font-size: 14px;
    color: var(--dark-gray);
}


/* Integration Section */
.integration {
    padding: 80px 0;
    background: white;
}

.integration-header {
    text-align: center;
    margin-bottom: 60px;
}

.integration-selector {
    max-width: 1000px;
    margin: 0 auto;
}

.integration-categories {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.category-section h4 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 12px;
    display: block;
}

.integration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.integration-option {
    display: block;
    cursor: pointer;
}

.integration-option input {
    display: none;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 36px 12px 12px; /* add right padding so check icon never overlaps text */
    background: var(--light-gray);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition-base);
    position: relative;
}

.option-content img {
    width: 28px;
    height: 28px;
}

.option-content span:last-child {
    font-weight: 500;
    color: var(--primary-dark);
    font-size: 12px;
    opacity: 0.9;
}

.check-icon {
    position: absolute;
    right: 16px;
    color: var(--accent-blue-light);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-base);
}

.integration-option input:checked + .option-content {
    background: white;
    border-color: var(--accent-blue-light);
    box-shadow: var(--shadow-md);
}

.integration-option input:checked + .option-content .check-icon {
    opacity: 1;
    transform: scale(1);
}

.integration-option:hover .option-content {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Integration CTA */
.integration-cta {
    text-align: center;
    padding: 40px;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: white;
}

.integration-message {
    font-size: 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.integration-message span {
    display: inline;
    white-space: normal;
}

.integration-message i {
    font-size: 24px;
    color: var(--accent-blue-light);
    flex-shrink: 0;
}

.selected-count {
    font-weight: 700;
}

.btn-integration {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: white;
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-integration:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: var(--off-white);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--off-white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
    border: 2px solid var(--accent-blue-light);
    transform: scale(1.05);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #FFB800;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--gray);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--primary-dark);
}

.cta-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-title {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--dark-gray);
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.benefit i {
    color: var(--accent-blue-light);
    font-size: 20px;
}

.btn-primary.large {
    padding: 18px 40px;
    font-size: 18px;
}

.cta-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 16px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 24px;
    color: white;
}

.stat-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.stat-info p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--accent-blue-light);
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h5 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 6px 0;
    font-size: 15px;
    transition: var(--transition-base);
}

.footer-column a:hover {
    color: var(--accent-blue-light);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badges {
    display: flex;
    gap: 16px;
    font-size: 14px;
    opacity: 0.8;
}

/* AI Workforce Section */
.ai-workforce {
    padding: 80px 0;
    background: white;
}

.workforce-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.employee-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--gray);
    display: flex;
    flex-direction: column;
}

.employee-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-blue-light);
}

.employee-image-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(77, 166, 252, 0.1) 0%, rgba(4, 78, 163, 0.05) 100%);
    position: relative;
}

.employee-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: var(--transition-base);
}

.employee-card:hover .employee-image {
    transform: scale(1.05);
}

.employee-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    z-index: 1;
}

.employee-video.playing {
    display: block;
}

.employee-image.hidden {
    display: none;
}

.play-video-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(4, 78, 163, 0.7);
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    z-index: 2;
}

.play-video-btn:hover {
    background: rgba(4, 78, 163, 0.9);
    transform: scale(1.05);
}

.play-video-btn i {
    font-size: 12px;
}

.play-video-btn.hidden {
    display: none;
}

.employee-info {
    padding: 24px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.employee-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.employee-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-blue-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.employee-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-gray);
    font-weight: 300;
}

/* Coming Soon Card */
.employee-card.coming-soon {
    border: 2px dashed rgba(77, 166, 252, 0.4);
    background: var(--off-white);
}

.employee-card.coming-soon:hover {
    border-color: var(--accent-blue-light);
    background: white;
    transform: translateY(-4px);
}

.employee-card.coming-soon .employee-image {
    filter: grayscale(0%);
    opacity: 1;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(77, 166, 252, 0.3) 0%, 
        rgba(77, 166, 252, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
    opacity: 0.95;
}

.coming-soon-badge {
    background: white;
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon-badge i {
    font-size: 18px;
    color: var(--accent-blue-light);
}

.employee-card.coming-soon .employee-name {
    color: var(--dark-gray);
}

.employee-card.coming-soon .employee-role {
    color: var(--dark-gray);
    opacity: 0.7;
}

.employee-card.coming-soon .employee-description {
    color: var(--dark-gray);
    opacity: 0.6;
    font-style: italic;
}

.employee-card.coming-soon:hover .employee-image {
    opacity: 0.5;
}

.employee-card.coming-soon:hover .coming-soon-overlay {
    opacity: 1;
}

.coming-soon-wrapper {
    background: linear-gradient(135deg, rgba(77, 166, 252, 0.05) 0%, rgba(4, 78, 163, 0.03) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.coming-soon-content i {
    font-size: 80px;
    color: var(--accent-blue-light);
    opacity: 0.3;
    transition: var(--transition-base);
}

.employee-card.coming-soon:hover .coming-soon-content i {
    opacity: 0.6;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Hero Circles - Tablet */
    .hero-circles-container {
        height: 500px;
    }
    
    .hero-circle-main {
        width: 380px;
        height: 380px;
    }
    
    /* Adjust bubble sizes for tablet */
    .hero-bubble {
        padding: 12px 16px;
    }
    
    .bubble-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .bubble-content strong {
        font-size: 13px;
    }
    
    .bubble-content p {
        font-size: 12px;
    }
    
    /* Reposition bubbles for tablet */
    .bubble-1 {
        top: 3%;
        right: 12%;
    }
    
    .bubble-2 {
        top: 3%;
        left: 12%;
    }
    
    .bubble-3 {
        bottom: 8%;
        left: 6%;
    }
    
    .bubble-4 {
        top: 50%;
        left: 0%;
    }
    
    .bubble-5 {
        bottom: 8%;
        right: 6%;
    }
    
    .bubble-6 {
        top: 50%;
        right: 0%;
    }
    
    .feature-grid.reverse .feature-content,
    .feature-grid.reverse .feature-visual {
        order: unset;
    }
    
    .metrics-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Results Banner Tablet */
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card.featured {
        transform: scale(1);
    }
    
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    /* AI Workforce Tablet */
    .workforce-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    body { overflow-x: hidden; }
    
    /* Tighter spacing for mobile */
    .channel { margin-left: 0px; font-size: 11px; }
    
    /* Fix spacing in Lead Activity Monitor */
    .activity-item:first-child .lead-info { margin-bottom: -2px; }
    .lead-info { margin-bottom: 4px; }
    .ai-action { margin-top: 0; line-height: 1.2; }
    .activity-content { line-height: 1.2; }
    /* Header */
    .header {
        padding: 8px 0; /* reduce top spacing */
    }
    
    .logo {
        height: 96px; /* slightly smaller logo on mobile to pull hero up */
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .btn-login {
        display: none;
    }
    
    .btn-header-cta {
        display: inline-flex;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Hero */
    .hero {
        padding: 120px 0 32px; /* tighten hero vertical spacing */
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
        margin-top: 8px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-cta {
        display: none;
    }
    
    /* Force all hero bubbles to show immediately in mobile */
    .hero-bubble[data-aos] {
        animation-delay: 0s !important;
        transition-delay: 0s !important;
    }
    
    .hero-circle-main[data-aos] {
        animation-delay: 0s !important;
        transition-delay: 0s !important;
    }
    
    /* Mobile Hero Circles */
    .hero-circles-container {
        height: 250px;
        margin-top: 12px;
    }
    
    .hero-circle-main {
        width: 220px;
        height: 220px;
        border: 3px solid white;
        top: 10%;
        left: 25%;
        transform: translate(-50%, -50%);
    }
    
    /* Mobile Bubbles - Smaller and repositioned */
    .hero-bubble {
        padding: 5px 5px;
        border-radius: 10px;
        font-size: 10px;
    }
    
    .bubble-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    
    .bubble-content strong {
        font-size: 10px;
    }
    
    .bubble-content p {
        font-size: 9px;
    }
    
    /* Reposition bubbles for mobile - around the circle */
    .bubble-1 {
        top: 2%;
        right: 15%;
    }
    
    .bubble-2 {
        top: 2%;
        left: 25%;
    }
    
    .bubble-3 {
        bottom: 2%;
        left: 15%;
    }
    
    .bubble-4 {
        top: 45%;
        left: 10%;
        transform: translateY(-50%);
    }
    
    .bubble-5 {
        bottom: 2%;
        right: 8%;
    }
    
    .bubble-6 {
        top: 40%;
        right: 6%;
        transform: translateY(-50%);
    }
    
    /* Team avatars smaller */
    .team-avatar {
        width: 22px;
        height: 22px;
    }
    
    .team-count {
        width: 22px;
        height: 22px;
        font-size: 8px;
    }
    
    .bubble-team span {
        font-size: 9px;
    }
    
    /* Stat bubble smaller */
    .stat-number {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 8px;
    }
    
    .live-indicator {
        font-size: 9px;
    }
    
    .pulse-dot {
        width: 6px;
        height: 6px;
    }
    
    /* Results Banner Mobile */
    .results-banner {
        padding: 32px 0;
    }
    
    .results-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .result-item {
        padding: 16px 12px;
    }
    
    .result-number {
        font-size: 32px;
        margin-bottom: 6px;
    }
    
    .result-label {
        font-size: 13px;
        margin-bottom: 2px;
    }
    
    .result-desc {
        font-size: 11px;
    }
    
    /* Metrics */
    .metrics-showcase {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .metric-card {
        padding: 24px;
    }
    
    /* Features */
    .features { padding: 40px 0; }
    
    .feature-section { margin-bottom: 48px; }
    
    .feature-grid {
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    
    .feature-grid > .feature-visual {
        order: 1;
        margin-bottom: 40px;
    }
    
    .feature-grid > .feature-content {
        order: 2;
        margin-bottom: 0;
    }
    
    /* More breathing room between feature items */
    .feature-item { flex-direction: row; text-align: left; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
    .feature-text h4 { margin-bottom: 6px; }
    .feature-text p { font-size: 14px; text-align: left; }
    
    /* Mobile visibility and spacing */
    .mobile-only { display: block; }
    .desktop-only { display: none; }
    
    /* Spacing for the monitor placed above the grid */
    .features .feature-visual.mobile-only { margin-bottom: 44px; }
    .features.alt-bg .feature-visual.mobile-only { margin-bottom: 64px; }
    .features.dark-bg .feature-visual.mobile-only { margin-bottom: 64px; }
    
    .feature-icon {
        align-self: center;
    }
    
    /* Mini Calendar Mobile */
    .mini-calendar {
        margin-bottom: 8px;
    }
    
    .calendar-grid {
        gap: 1px;
    }
    
    .calendar-day {
        padding: 4px 2px;
        font-size: 10px;
    }
    
    .today-appointments {
        padding-top: 6px;
    }
    
    .appointments-header {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .appointment-item {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        padding: 6px;
        font-size: 11px;
    }
    
    .appointment-time {
        font-size: 12px;
        min-width: 45px;
        flex-shrink: 0;
    }
    
    .appointment-client {
        font-size: 11px;
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .appointment-agent {
        font-size: 9px;
        padding: 1px 4px;
        flex-shrink: 0;
    }
    
    .window-content {
        padding: 16px;
    }
    
    /* Demo Window Mobile */
    .demo-window {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .window-header {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .window-title {
        font-size: 14px;
    }
    
    .window-content {
        padding: 16px;
        background: var(--light-gray);
    }
    
    .window-content.calendar-view {
        padding: 20px 16px;
    }
    
    .activity-feed {
        font-size: 14px;
    }
    
    /* Section Headers Mobile */
    .section-header {
        text-align: center;
        margin-bottom: 40px;
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .section-tag {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .section-desc {
        font-size: 16px;
        line-height: 1.6;
        max-width: none;
        margin: 16px auto 0;
        padding: 0 16px;
    }
    
    /* Dashboard */
    .dashboard-tabs {
        overflow-x: auto;
    }
    
    .tab {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 16px; }
    .stat-box { padding: 12px; }
    .stat-header { margin-bottom: 6px; }
    .stat-value { font-size: 20px; margin-bottom: 4px; }
    .stat-change { font-size: 11px; }
    
    .dashboard-content {
        padding: 16px;
    }
    
    .dashboard-chart {
        padding: 16px;
        overflow-x: auto;
    }
    
    .chart-controls button {
        padding: 3px 8px;
        font-size: 11px;
        min-width: 24px;
    }
    
    .chart-header h4 {
        font-size: 14px;
    }
    
    .pipeline-stage {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stage-name {
        min-width: auto;
    }
    
    .stage-bar-container {
        width: 100%;
        max-width: none;
    }
    
    /* Integration */
    .integration-selector { max-width: none; overflow: hidden; }
    .integration-options { grid-template-columns: 1fr; gap: 12px; margin: 0; }
    .option-content { padding: 14px 40px 14px 14px; gap: 12px; min-width: 0; }
    .option-content img { width: 32px; height: 32px; flex-shrink: 0; }
    .option-content span:last-child { font-size: 14px; font-weight: 500; line-height: 1.4; white-space: normal; }
    .check-icon { right: 14px; font-size: 18px; }
    
    /* Testimonials */
    .testimonial-card {
        padding: 24px;
    }
    
    /* CTA */
    .cta-wrapper {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-visual {
        display: none;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer - make link columns one row */
    .footer-links { grid-template-columns: 1fr 1fr; gap: 40px; text-align: center; }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column a {
        display: inline-block;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    /* General */
    .container {
        padding: 0 16px;
    }
    
    section { padding: 48px 0; }
    
    /* Platform features 2-up with last centered */
    .platform-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .platform-features .feature-highlight:nth-child(3) { grid-column: 1 / -1; justify-self: center; }
    
    /* AI Features Tabs Mobile */
    .ai-features {
        padding: 48px 0;
    }
    
    .features-header {
        margin-bottom: 40px;
    }
    
    .tab-nav {
        gap: 0;
        margin-bottom: 40px;
    }
    
    .tab-btn {
        padding: 12px 16px;
        flex: 1;
    }
    
    .tab-content h4 {
        font-size: 13px;
        text-align: center;
    }
    
    /* Mobile demo windows */
    /* Pipeline mobile styles */
    .lead-pipeline {
        gap: 6px;
        padding: 4px 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pipeline-column {
        min-width: 105px;
        padding: 8px;
        gap: 6px;
        border-radius: 6px;
    }
    
    .column-header {
        gap: 6px;
        margin-bottom: 8px;
    }
    
    .column-header h5 {
        font-size: 10px;
        font-weight: 600;
    }
    
    .lead-count {
        font-size: 8px;
        padding: 2px 5px;
        border-radius: 8px;
    }
    
    .lead-card {
        padding: 6px;
        border-radius: 6px;
    }
    
    .lead-name {
        font-size: 10px;
        margin-bottom: 4px;
        font-weight: 600;
    }
    
    .lead-meta {
        gap: 3px;
        flex-wrap: wrap;
    }
    
    .lead-meta .channel,
    .lead-meta .ai-agent,
    .lead-meta .badge.deal {
        font-size: 8px;
        padding: 2px 5px;
        border-radius: 4px;
    }
    
    /* Reception Activity mobile styles */
    .reception-activity {
        gap: 16px;
    }
    
    .activity-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .stat-card {
        padding: 10px 8px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 9px;
        line-height: 1.2;
    }
    
    .tasks-completed h5 {
        font-size: 12px;
        padding-bottom: 6px;
    }
    
    .task-list {
        gap: 6px;
    }
    
    .task-item {
        padding: 10px;
        gap: 10px;
    }
    
    .task-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .task-title {
        font-size: 12px;
    }
    
    .task-meta {
        gap: 6px;
    }
    
    .task-agent {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    .task-time {
        font-size: 10px;
    }
    
    .calendar-controls {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .calendar-legend {
        flex-wrap: wrap;
    }
    
    .calendar-row {
        grid-template-columns: 100px repeat(5, 1fr);
        font-size: 11px;
    }
    
    .caregiver-avatar {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    .caregiver-details strong {
        font-size: 11px;
    }
    
    .caregiver-details span {
        font-size: 10px;
    }
    
    .shift {
        padding: 4px 6px;
        font-size: 10px;
    }
    
    .schedule-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* AI Features Tablet */
    .ai-workforce {
        padding: 48px 0;
    }
    
    .workforce-header {
        margin-bottom: 40px;
    }
    
    .workforce-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .employee-card {
        border-radius: 12px;
    }
    
    .employee-info {
        padding: 16px;
    }
    
    .employee-name {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .employee-role {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    .employee-description {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .play-video-btn {
        padding: 10px 12px;
        font-size: 12px;
        bottom: 12px;
        right: 12px;
    }
    
    .play-video-btn span {
        display: none;
    }
    
    .play-video-btn i {
        font-size: 14px;
    }
    
    .coming-soon-content i {
        font-size: 50px;
    }
    
    .coming-soon-badge {
        padding: 8px 16px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    
    .coming-soon-badge i {
        font-size: 12px;
    }
    
    .coming-soon-overlay {
        padding-bottom: 24px;
    }
}