/* --- PRODUCT HERO SECTION --- */
:root {
    --product-primary: #0030DB;
    --product-accent: #6366F1;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --transition: all 0.3s ease;

    /* Responsive Typography Scale */
    --fs-display: clamp(2.5rem, 7vw, 4rem); /* 40px to 64px */
    --fs-h2: clamp(2rem, 5vw, 2.75rem);      /* 32px to 44px */
    --fs-h3: clamp(1.5rem, 3vw, 1.75rem);    /* 24px to 28px */
    --fs-body: 1.125rem;                     /* 18px */
    --fs-sm: 0.875rem;                       /* 14px */
    --fs-xs: 0.75rem;                        /* 12px */
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.product-hero {
    padding: 100px 0;
    background: radial-gradient(circle at 100% 0%, rgba(99, 102, 241, 0.03) 0%, transparent 40%);
    overflow: hidden;
}

.product-hero-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.product-hero-content h1 {
    font-size: var(--fs-display);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: var(--text-main);
}

.product-hero-content h1 span {
    color: var(--product-primary);
}

.product-hero-content p {
    font-size: var(--fs-body);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.product-hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.product-hero-btns .btn-primary {
    padding: 16px 32px;
    background: var(--product-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 48, 219, 0.15);
}

.product-hero-btns .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 48, 219, 0.2);
}

.product-hero-btns .btn-secondary {
    padding: 16px 32px;
    background: white;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-hero-btns .btn-secondary:hover {
    background: #F8FAFC;
    border-color: var(--product-primary);
}

.product-trust {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-trust i {
    color: #10B981;
}

/* --- MEETING MOCKUP & AI SIDEBAR --- */
.product-hero-visual {
    position: relative;
}

.meeting-mockup {
    width: 100%;
    height: 480px;
    background: #0F172A;
    border-radius: 20px;
    border: 8px solid #334155;
    display: flex;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

/* Main Meeting Content */
.meeting-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.meeting-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.meeting-header span {
    color: #94A3B8;
    font-size: 14px;
    font-weight: 500;
}

.meeting-video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    flex: 1;
}

.data-item {
    background: #111827;
    border-radius: 12px;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.data-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 48, 219, 0.1);
    color: var(--product-primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.transcript-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.transcript-lines .line {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    width: 100%;
}

.transcript-lines .line.short { width: 40%; }
.transcript-lines .line.medium { width: 70%; }

.report-stats {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.stat-bar {
    flex: 1;
    background: linear-gradient(to top, var(--product-primary), var(--product-accent));
    border-radius: 3px 3px 0 0;
    animation: bar-grow 2s ease-out forwards;
    transform-origin: bottom;
}

@keyframes bar-grow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* AI Intelligence Sidebar */
.ai-sidebar {
    width: 240px;
    background: white;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-left: 1px solid #F1F5F9;
}

.ai-sidebar-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--product-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-sidebar label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.ai-summary-box p {
    font-size: 12px;
    line-height: 1.6;
    color: #475569;
}

.action-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-list li {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
}

.action-list li .check {
    width: 14px;
    height: 14px;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    flex-shrink: 0;
}

.action-list li .check.active {
    background: var(--product-primary);
    border-color: var(--product-primary);
    position: relative;
}

.check.active::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ai-status {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--product-primary);
    font-weight: 600;
}

.active-dot {
    width: 6px;
    height: 6px;
    background: var(--product-primary);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

/* --- VALUE PROOF SECTION --- */
.value-proof {
    padding: 80px 0;
    background: var(--product-primary);
    color: white;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.proof-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.proof-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.proof-text h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: 4px;
}

.proof-text p {
    font-size: var(--fs-sm);
    opacity: 0.8;
}

/* --- DEMO DASHBOARD SECTION --- */
.demo-dashboard {
    padding: 100px 0;
    background: #F8FAFC;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: var(--fs-h2);
    margin-bottom: 16px;
    color: var(--text-main);
}

.dashboard-mockup {
    width: 100%;
    height: 750px;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08), 0 10px 40px rgba(0, 48, 219, 0.05);
    display: flex;
    overflow: hidden;
    position: relative;
}

/* Sidebar */
.dashboard-sidebar {
    width: 260px;
    background: #FFFFFF;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 32px 0;
}

.sidebar-logo {
    padding: 0 32px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--text-main);
    font-size: 20px;
}

.logo-box {
    width: 32px;
    height: 32px;
    background: var(--product-primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 16px;
}

.dashboard-sidebar .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: var(--fs-xs);
    font-weight: 500;
    border-radius: 10px;
    transition: var(--transition);
}

.dashboard-sidebar .nav-item i {
    width: 18px;
}

.dashboard-sidebar .nav-item:hover {
    background: rgba(0, 48, 219, 0.03);
    color: var(--product-primary);
}

.dashboard-sidebar .nav-item.active {
    background: var(--product-primary);
    color: white;
}

.sidebar-footer {
    margin-top: auto;
    padding: 24px 16px 0;
    border-top: 1px solid var(--border-color);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 36px;
    height: 36px;
    background: #6366F1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.user-details .name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.user-details .email {
    font-size: 11px;
    color: var(--text-muted);
}

/* Content Area */
.dashboard-content {
    flex: 1;
    background: #F1F5F9;
    position: relative;
    overflow-y: auto;
}

.view {
    display: none;
    height: 100%;
    flex-direction: column;
}

.view.active {
    display: flex;
}

.view-header {
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.view-header h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--text-main);
}

.view-header .header-actions {
    display: flex;
    gap: 12px;
}

/* Chat View */
#view-chat {
    background: white;
}

.chat-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
}

.chat-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.chat-welcome {
    text-align: center;
    max-width: 600px;
}

.chat-welcome h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--text-main);
}

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.chat-suggestions span {
    padding: 10px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.chat-suggestions span:hover {
    border-color: var(--product-primary);
    color: var(--product-primary);
    background: rgba(0, 48, 219, 0.02);
}

.chat-input-area {
    padding: 32px;
    background: white;
}

.chat-input {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: #F8FAFC;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 12px 20px;
    gap: 16px;
}

.chat-input input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--text-main);
}

.chat-input button {
    background: var(--product-primary);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
}

/* Reports View Extras */
.search-filters {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.search-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F1F5F9;
    padding: 10px 16px;
    border-radius: 10px;
}

.search-bar input {
    background: transparent;
    border: none;
    outline: none;
    font-size: 13px;
    width: 100%;
}

.filter-pills {
    display: flex;
    gap: 8px;
}

.pill {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pill.active {
    border-color: var(--product-accent);
    color: var(--product-accent);
}

.data-table-container {
    padding: 32px;
}

.data-table {
    width: 100%;
    background: white;
    border-radius: 16px;
    border-collapse: collapse;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.data-table th {
    text-align: left;
    padding: 16px 24px;
    background: #F8FAFC;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.data-table td {
    padding: 20px 24px;
    border-top: 1px solid #F1F5F9;
    font-size: 14px;
}

.report-title {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.participants {
    font-size: 12px;
    color: var(--text-muted);
}

.owner-tag {
    width: 28px;
    height: 28px;
    background: #8B5CF6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.tag-folder {
    padding: 4px 10px;
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.tag-folder.sales {
    background: rgba(236, 72, 153, 0.1);
    color: #EC4899;
}

/* Action Items View Extras */
.action-tabs {
    padding: 20px 32px;
    display: flex;
    gap: 24px;
    border-bottom: 1px solid var(--border-color);
}

.action-tabs span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    padding-bottom: 8px;
    position: relative;
}

.action-tabs span.active {
    color: var(--product-primary);
}

.action-tabs span.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--product-primary);
}

.action-cards {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.action-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.action-main {
    flex: 1;
}

.action-title {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.action-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.action-assignee {
    font-size: 13px;
    color: var(--text-main);
    font-weight: 500;
    min-width: 120px;
}

.action-status-pill {
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.action-status-pill.high { background: #FEF2F2; color: #EF4444; }
.action-status-pill.medium { background: #FFFBEB; color: #F59E0B; }
.action-status-pill.pending { background: #F1F5F9; color: #64748B; }

/* Folder View Extras */
.folder-grid {
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.folder-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.folder-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.folder-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.folder-icon.crm { background: #EEF2FF; color: #4F46E5; }
.folder-icon.marketing { background: #FFF1F2; color: #E11D48; }
.folder-icon.sales { background: #F0FDF4; color: #16A34A; }

.folder-card h4 {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.folder-card p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Calendar View Extras */
.calendar-tabs {
    padding: 20px 32px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 24px;
}

.calendar-tabs span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
}

.calendar-tabs span.active {
    color: var(--product-accent);
    font-weight: 700;
}

.calendar-list {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calendar-row {
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid transparent;
    transition: var(--transition);
}

.calendar-row:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateX(4px);
}

.cal-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #F1F5F9;
    border-radius: 12px;
    flex-shrink: 0;
}

.day-num {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.day-name {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

.cal-info {
    flex: 1;
}

.cal-title {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.cal-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.status-pill {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

.status-pill.confirmed { background: #F0FDF4; color: #16A34A; }

/* Integrations View Styles */
.integration-grid {
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.int-card {
    background: white;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.int-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--product-accent);
}

.int-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.int-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #F8FAFC;
    border: 1px solid var(--border-color);
}

.int-logo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.status-connected {
    font-size: 11px;
    font-weight: 700;
    color: #10B981;
    background: #ECFDF5;
    padding: 4px 10px;
    border-radius: 100px;
}

.int-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.int-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-text {
    background: none;
    border: none;
    color: var(--product-primary);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
}

/* --- DASHBOARD WRAPPER & OVERLAY --- */
.dashboard-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
}

.dashboard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.dashboard-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.1);
}

.overlay-content {
    text-align: center;
    max-width: 550px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    animation: contentFadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes contentFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.overlay-content h3 {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.overlay-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

#launch-demo {
    padding: 20px 40px;
    font-size: 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    background: var(--product-primary);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 48, 219, 0.3);
    border: none;
    cursor: pointer;
    color: white;
    font-weight: 700;
}

#launch-demo i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

#launch-demo:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 48, 219, 0.4);
}

#launch-demo:hover i {
    transform: translateX(4px) scale(1.2);
}

#launch-demo:active {
    transform: scale(0.98);
}

/* Pulsing Glow Animation */
#launch-demo {
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 48, 219, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 48, 219, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 48, 219, 0); }
}

/* --- DEMO DASHBOARD SECTION (ULTRA-CLEAN) --- */
.demo-dashboard {
    padding: 120px 0;
    background: #F1F5F9;
}

.section-header h2 {
    font-size: var(--fs-h2);
    font-weight: 700;
    letter-spacing: -2px;
}

.dashboard-mockup {
    width: 100%;
    height: 750px;
    background: white;
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: 0; /* Handled by wrapper */
}

.calendar-empty {
    padding: 100px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid #E2E8F0;
    border-top-color: var(--product-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* General Buttons */
.btn-primary-sm {
    padding: 10px 20px;
    background: var(--product-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.btn-outline {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}


/* --- SCROLLING MARQUEE INTEGRATIONS (1400PX) --- */
.integrations-section.marquee-style {
    padding: 160px 0 100px;
    background: #ffffff;
    background-image:
        radial-gradient(at 0% 0%, rgba(0, 48, 219, 0.02) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 48, 219, 0.02) 0, transparent 50%),
        linear-gradient(rgba(248, 250, 252, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248, 250, 252, 0.4) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.product-container.wide-1400 {
    max-width: 1400px;
    position: relative;
    z-index: 2;
}

.integrations-marquee {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    padding: 30px 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-tile {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.03),
        0 10px 30px rgba(0, 48, 219, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    flex-shrink: 0;
}

.logo-tile img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
}

.logo-tile:hover {
    transform: translateY(-8px) scale(1.02);
    background: #ffffff;
    box-shadow:
        0 20px 40px rgba(0, 48, 219, 0.08),
        0 0 0 1px rgba(0, 48, 219, 0.1);
}

.logo-tile:hover img {
    transform: scale(1.1);
}

.integrations-centered-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.integrations-centered-content h2 {
    font-size: 56px;
    font-weight: 850;
    color: var(--text-main);
    margin: 28px 0;
    letter-spacing: -2.5px;
    line-height: 1.05;
}

.integrations-centered-content p {
    font-size: 20px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.integrations-section a {
    text-decoration: none !important;
}

.integrations-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.integrations-btn-blue {
    background: var(--product-primary);
    color: white;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 48, 219, 0.2);
    display: inline-block;
}

.integrations-btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 48, 219, 0.3);
    background: #0026ad;
}

/* Responsive */
@media (max-width: 1400px) {
    .product-container.wide-1400 {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .integrations-section.marquee-style {
        padding: 100px 0;
    }
    .integrations-centered-content h2 {
        font-size: 38px;
        letter-spacing: -1.2px;
    }
    .logo-tile {
        width: 90px;
        height: 90px;
        border-radius: 18px;
    }
    .logo-tile img {
        width: 44px;
        height: 44px;
    }
    .marquee-track {
        gap: 24px;
    }
}

.immersive-cta {
    padding: 100px 0;
    background: var(--product-primary);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.immersive-cta-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.immersive-cta h2 {
    font-size: 36px;
    font-weight: 850;
    line-height: 1.1;
    margin: 20px 0 20px;
    letter-spacing: -1.5px;
    color: white;
}

.immersive-cta h2 span {
    color: #ffffff; /* Soft light blue/cyan for contrast */
}

.immersive-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* Dual Actions */
.cta-dual-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 56px;
}

.btn-primary-large {
    background: white;
    color: var(--product-primary);
    padding: 18px 42px;
    border-radius: 99px;
    font-size: 1.05rem;
    font-weight: 800;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: #f8fafc;
}

.btn-text-white {
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-text-white:hover {
    transform: translateX(5px);
    opacity: 0.8;
}

/* Floating Trust Badges */
.cta-floating-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.trust-badge i {
    color: #ffffff;
    display: flex;
    align-items: center;
    line-height: 1;
    font-size: 16px;
    margin-top: -1px;
}

@media (max-width: 992px) {
    .immersive-cta h2 {
        font-size: 28px;
        letter-spacing: -1px;
    }
}


/* --- ZIG-ZAG FEATURE SECTION --- */
.features-zigzag-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    margin-bottom: 150px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.reverse .feature-content {
    order: 2;
}

.feature-block.reverse .feature-visual {
    order: 1;
}

.feature-content h2 {
    font-size: 48px;
    font-weight: 850;
    color: var(--text-main);
    margin: 24px 0;
    letter-spacing: -2px;
    line-height: 1.1;
}

.feature-tag {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.feature-tag.blue { background: rgba(0, 48, 219, 0.08); color: var(--product-primary); }
.feature-tag.purple { background: rgba(124, 58, 237, 0.08); color: #7c3aed; }
.feature-tag.green { background: rgba(16, 185, 129, 0.08); color: #10b981; }
.feature-tag.indigo { background: rgba(79, 70, 229, 0.08); color: #4f46e5; }

.feature-points {
    list-style: none;
    padding: 0;
}

.feature-points li {
    font-size: 19px;
    color: #475569;
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
    line-height: 1.6;
}

.feature-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--product-primary);
    font-weight: 900;
    font-size: 24px;
    line-height: 1;
}

.feature-visual {
    perspective: 1000px;
}

.visual-container {
    width: 600px;
    height: 440px;
    border-radius: 32px;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 48, 219, 0.08);
}

.visual-container:hover {
    transform: translateY(-15px) rotateX(2deg) rotateY(-2deg);
}

/* 1. Capture Visual */
/* Feature Visual Backgrounds */
.capture-visual { background: linear-gradient(135deg, #f0f4ff, #e0e9ff); }
.transcription-visual { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }
.mom-visual { background: linear-gradient(135deg, #ecfdf5, #d1fae5); }
.tasks-visual { background: linear-gradient(135deg, #eef2ff, #e0e7ff); }
.storage-visual { background: linear-gradient(135deg, #f0f9ff, #e0f2fe); }

/* Minimal Visual Styles */

/* 1. Capture Visual */
.minimal-window {
    width: 85%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: perspective(800px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.4s ease;
}
.visual-container:hover .minimal-window { transform: translateY(-10px); }

.window-header-simple {
    background: #f8fafc;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #edf2f7;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
}
.recording-dot { width: 8px; height: 8px; background: #ef4444; border-radius: 50%; opacity: 0.8; }

.window-body-simple {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.avatar-row { display: flex; justify-content: center; margin-left: 10px; }
.avatar-circle { width: 40px; height: 40px; border-radius: 50%; background: #e2e8f0; border: 2px solid white; margin-left: -10px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #475569; }
.avatar-circle.jesto { background: var(--product-primary); color: white; }

.active-speaker-text {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    margin-top: 10px;
}

.wave-indicator { display: flex; gap: 4px; align-items: flex-end; height: 16px; margin-top: 5px; }
.wave-indicator span { width: 4px; background: var(--product-primary); border-radius: 2px; animation: gentleWave 1.2s ease-in-out infinite alternate; }
.wave-indicator span:nth-child(1) { height: 8px; animation-delay: 0s; }
.wave-indicator span:nth-child(2) { height: 16px; animation-delay: 0.2s; }
.wave-indicator span:nth-child(3) { height: 12px; animation-delay: 0.4s; }
@keyframes gentleWave { from { height: 4px; } to { height: 16px; } }

/* 2. Transcription Combo Visual */
.transcription-combo-visual {
    width: 95%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.ai-summary-box, .transcript-box {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.ai-summary-box { background: linear-gradient(to right, #ffffff, #fbfbfe); border-left: 3px solid #6366f1; }
.box-title { font-size: 11px; font-weight: 800; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.box-title i { color: #6366f1; }
.ai-summary-box p { font-size: 13px; color: #334155; line-height: 1.5; margin: 0; font-weight: 500; }

.transcript-box { border: 1px solid #f1f5f9; box-shadow: none; }
.transcript-box .t-line {
    font-size: 12px;
    color: #475569;
    padding: 6px 0;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    background: transparent;
    margin: 0;
    line-height: 1.4;
}
.transcript-box .t-line:last-child { border-bottom: none; }
.transcript-box .t-line.highlight {
    background: rgba(124, 58, 237, 0.05);
    padding: 6px 10px;
    border-radius: 6px;
    border-left: 2px solid #7c3aed;
    color: #334155;
    margin-top: 4px;
}

/* 3. MoM Visual */
.minimal-doc {
    width: 85%;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.doc-title-simple {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 5px 0;
}
.doc-date-simple {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 15px;
}
.doc-points-simple {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.doc-points-simple li {
    font-size: 13px;
    color: #475569;
    padding-left: 14px;
    position: relative;
    font-weight: 500;
}
.doc-points-simple li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
}
.doc-points-simple li.highlight {
    color: #10b981;
    font-weight: 700;
}
.doc-points-simple li.highlight::before {
    background: #10b981;
}

/* 4. Action Items Visual */
.minimal-tasks {
    width: 85%;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.task-row { display: flex; align-items: center; gap: 12px; }
.task-row .circle { width: 16px; height: 16px; border: 2px solid #cbd5e1; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 10px; color: white; }
.task-row .circle.check { background: #6366f1; border-color: #6366f1; }
.task-text { font-size: 13px; font-weight: 600; color: #334155; }
.task-text.done { text-decoration: line-through; color: #94a3b8; }

/* 5. Storage Visual */
.minimal-player {
    width: 90%;
    background: #0f172a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.player-main { height: 160px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.05); }
.play-icon-large { width: 40px; height: 40px; background: white; border-radius: 50%; position: relative; }
.play-icon-large::after {
    content: "";
    position: absolute;
    top: 50%; left: 55%;
    transform: translate(-50%, -50%);
    border-left: 10px solid #0f172a;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.player-bar-simple { padding: 15px; display: flex; flex-direction: column; gap: 10px; }
.progress-simple { height: 4px; width: 100%; background: rgba(255, 255, 255, 0.2); border-radius: 2px; position: relative; }
.progress-simple::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 40%; background: #38bdf8; border-radius: 2px; }
.player-meta-simple { font-size: 11px; color: rgba(255, 255, 255, 0.6); font-weight: 600; font-family: 'JetBrains Mono', monospace; text-align: center; }

/* Responsive Features */
@media (max-width: 1100px) {
    .feature-block { gap: 60px; }
    .visual-container { width: 100%; height: 320px; }
}

@media (max-width: 768px) {
    .integrations-section.marquee-style {
        padding: 100px 0;
    }
    .integrations-centered-content h2 {
        font-size: 38px;
        letter-spacing: -1.2px;
    }
    .logo-tile {
        width: 90px;
        height: 90px;
        border-radius: 18px;
    }
    .logo-tile img {
        width: 44px;
        height: 44px;
    }
    .marquee-track {
        gap: 24px;
    }
    .features-zigzag-section { padding: 100px 0; }
    .feature-block { grid-template-columns: 1fr; gap: 40px; margin-bottom: 100px; }
    .feature-block.reverse .feature-content { order: 1; }
    .feature-block.reverse .feature-visual { order: 2; }
    .visual-container { height: 320px; }
    .feature-content h2 { font-size: 36px; }

    .immersive-cta {
        padding: 60px 0;
    }
    .immersive-cta h2 {
        font-size: 24px;
    }
    .cta-dual-actions {
        flex-direction: column;
        gap: 16px;
    }
    .btn-primary-large {
        width: 100%;
        text-align: center;
    }
    .cta-floating-trust {
        gap: 12px;
    }
    .trust-badge {
        width: 100%;
        justify-content: center;
    }
}


/* Sidebar CTA Button */
.sidebar-cta {
    padding: 20px;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
}

.btn-trial-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--product-primary);
    color: white;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 48, 219, 0.15);
}

.btn-trial-sidebar:hover {
    background: #0028b8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 48, 219, 0.25);
}

/* --- RESPONSIVENESS REFINED --- */
@media (max-width: 1200px) {
    .proof-grid {
        gap: 20px;
    }
    .dashboard-sidebar {
        width: 80px;
    }
    .sidebar-logo span, .user-details {
        display: none;
    }
    .dashboard-sidebar .nav-item span {
        display: none;
    }
    .dashboard-sidebar .nav-item {
        justify-content: center;
        padding: 16px;
    }
}

@media (max-width: 1024px) {
    .product-hero-split {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .product-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .product-hero-btns {
        justify-content: center;
    }
    .product-trust {
        justify-content: center;
    }
    /* Typography now handled by fluid scale */
    .meeting-mockup {
        max-width: 800px;
        margin: 0 auto;
    }
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    .proof-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .proof-item::after {
        display: none !important;
    }
    .dashboard-mockup {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .ai-sidebar {
        display: none;
    }
    .dashboard-mockup {
        flex-direction: column;
        height: auto;
    }
    .dashboard-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 12px 0;
    }
    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        padding: 0 16px 4px;
        gap: 8px;
        -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }
    .sidebar-nav::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }
    .dashboard-sidebar .nav-item {
        flex-shrink: 0;
        padding: 10px 16px;
        white-space: nowrap;
        background: transparent;
        color: var(--text-muted);
        position: relative;
    }
    .dashboard-sidebar .nav-item.active {
        background: transparent;
        color: var(--product-primary);
    }
    .dashboard-sidebar .nav-item.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 16px;
        right: 16px;
        height: 3px;
        background: var(--product-primary);
        border-radius: 10px;
    }
    .sidebar-footer {
        display: none;
    }
    .view-header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .view-header .header-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .view-header .header-actions button {
        width: 100%;
        padding: 12px;
        justify-content: center;
    }

    /* Table to Cards on Mobile */
    .data-table-container {
        padding: 16px;
    }


    .data-table, .data-table thead, .data-table tbody, .data-table th, .data-table td, .data-table tr {
        display: block;
    }
    .data-table thead {
        display: none;
    }
    .data-table tr {
        background: white;
        border-radius: 16px;
        margin-bottom: 16px;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        border: 1px solid var(--border-color);
    }
    .data-table td {
        padding: 8px 0;
        border-top: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .data-table td::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 12px;
        color: var(--text-muted);
        text-transform: uppercase;
    }
    .data-table td:first-child {
        display: block;
        padding-bottom: 16px;
        margin-bottom: 12px;
        border-bottom: 1px solid #F1F5F9;
    }
    .data-table td:first-child::before {
        display: none;
    }

    .search-filters {
        padding: 16px;
        flex-direction: column;
        gap: 16px;
    }
    .filter-pills {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }
}

@media (max-width: 600px) {
    .product-hero {
        padding: 60px 0;
    }
    /* Typography now handled by fluid scale */
    .product-hero-btns {
        flex-direction: column;
    }
    .product-hero-btns a {
        width: 100%;
        text-align: center;
    }
    .meeting-mockup {
        height: 300px;
    }
    .value-proof {
        padding: 60px 0;
    }
    .proof-grid {
        gap: 48px 24px;
    }
    .proof-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
        border-radius: 12px;
    }

    /* Scrollable Sub-Tabs */
    .action-tabs, .calendar-tabs {
        padding: 16px;
        overflow-x: auto;
        white-space: nowrap;
        gap: 20px;
        scrollbar-width: none;
    }
    .action-tabs::-webkit-scrollbar, .calendar-tabs::-webkit-scrollbar {
        display: none;
    }
    .action-tabs span, .calendar-tabs span {
        font-size: 13px;
        padding-bottom: 4px;
    }

    /* Grid Optimization */
    .folder-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 16px;
    }
    .integration-grid {
        padding: 16px;
        grid-template-columns: 1fr;
    }

    /* Typography now handled by fluid scale */
    .action-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .folder-grid {
        grid-template-columns: 1fr;
    }
    .overlay-content h3 {
        letter-spacing: -0.5px;
    }
    #launch-demo {
        padding: 16px 24px;
        width: 100%;
        justify-content: center;
    }
}

/* --- PRICING SECTION --- */
.pricing-section {
    padding: 120px 0;
    background: #F8FAFC;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    background: white;
    padding: 10px 24px;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.toggle-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--text-main);
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #E2E8F0;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

input:checked + .slider {
    background-color: var(--product-primary);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.discount-badge {
    background: #10B981;
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 6px;
    vertical-align: middle;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 48, 219, 0.08);
}

.pricing-card.popular {
    border-color: var(--product-primary);
    box-shadow: 0 20px 50px rgba(0, 48, 219, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--product-primary), var(--product-accent));
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 48, 219, 0.3);
}

.card-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.card-header h3 {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 16px;
    font-weight: 700;
}

.price {
    display: flex;
    align-items:baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.price .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
}

.price .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    letter-spacing: -1px;
}

.price .amount.text-lg {
    font-size: 36px;
}

.price .period {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-features li {
    font-size: 14px;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.plan-features i {
    color: var(--product-primary);
    font-size: 14px;
    margin-top: 3px;
}

.btn-secondary.full-width, .btn-primary.full-width {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 24px;
    display: flex;
    text-decoration: none;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
    }
    .pricing-card.popular {
        transform: none;
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 100px 0;
    background: #F8FAFC;
    border-top: 1px solid var(--border-color);
}

.testimonials-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 1400px;
}

.testimonials-track {
    display: flex;
    width: max-content;
    gap: 32px;
    animation: scroll-testimonials 60s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 16px)); }
}

.testimonial-card {
    width: 450px;
    flex-shrink: 0;
    background: #ffffff;
    border: none;
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.testimonial-card.highlight {
    background: var(--product-primary);
    color: white;
    box-shadow: 0 15px 40px rgba(0, 48, 219, 0.15);
}

.testimonial-card.highlight:hover {
    box-shadow: 0 20px 50px rgba(0, 48, 219, 0.2);
}

.testimonial-card.highlight p, .testimonial-card.highlight .author-info strong {
    color: white;
}

.testimonial-card.highlight .author-info span {
    color: rgba(255,255,255,0.7);
}

.testimonial-card.highlight .quote-icon {
    color: rgba(255,255,255,0.2);
}

.testimonial-content {
    margin-bottom: 24px;
}

.quote-icon {
    font-size: 24px;
    color: var(--product-primary);
    opacity: 0.2;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #E2E8F0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .testimonial-card {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 300px;
    }
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 120px 0;
    background: #f8faff;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--product-primary);
    box-shadow: 0 10px 30px rgba(0, 48, 219, 0.05);
}

.faq-item.active {
    border-color: var(--product-primary);
    box-shadow: 0 15px 40px rgba(0, 48, 219, 0.08);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(0, 48, 219, 0.01);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--product-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust based on content */
    padding-bottom: 32px;
}

.faq-answer p {
    padding: 0 32px 0 32px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    .faq-question {
        padding: 20px 24px;
    }
    .faq-question h4 {
        font-size: 16px;
    }
    .faq-answer p {
        padding: 0 24px;
        font-size: 15px;
    }
    .faq-item.active .faq-answer {
        padding-bottom: 24px;
    }
}

