/* --- 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 */
}

/* Prevent horizontal scroll — only on body to preserve sticky behavior */
body {
    overflow-x: clip;
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.product-hero {
    padding: 20px 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: 0.85fr 1.15fr;
    gap: 40px;
    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: #475569;
    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;
}

/* --- HERO IMAGE VISUAL --- */
.product-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
}

.hero-image-wrapper {
    position: relative;
    width: 120%;
    margin-right: -10%;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* --- 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;
}

/* --- WHAT IS AI NOTE TAKER SECTION --- */
.what-is-ai-note-taker {
    padding: 100px 0;
    background: #F8FAFC;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.what-is-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.what-is-header h2 {
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--text-main);
    margin: 20px 0 24px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.what-is-intro {
    font-size: var(--fs-body);
    line-height: 1.8;
    color: #475569;
}

.what-is-intro strong {
    color: var(--text-main);
    font-weight: 600;
}

.what-is-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.what-is-card {
    padding: 36px 32px;
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    position: relative;
}

.what-is-card:hover {
    border-color: rgba(0, 48, 219, 0.2);
    box-shadow: 0 16px 40px rgba(0, 48, 219, 0.08);
    transform: translateY(-6px);
}

.what-is-card-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 48, 219, 0.06);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.what-is-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 48, 219, 0.08);
    color: var(--product-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.what-is-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.what-is-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

@media (max-width: 992px) {
    .what-is-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .what-is-ai-note-taker {
        padding: 60px 0;
    }
    .what-is-header {
        margin-bottom: 32px;
    }
    .what-is-header h2 {
        font-size: 28px;
        letter-spacing: -1px;
    }
    .what-is-card {
        padding: 28px 24px;
    }
    .what-is-card-number {
        font-size: 36px;
        margin-bottom: 14px;
    }
}

/* --- DEMO DASHBOARD SECTION --- */
.demo-dashboard {
    padding: 100px 0;
    background: #F8FAFC;
}

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

.section-header p {
    color: #475569;
}

.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 (STACKING CARDS) --- */
.features-zigzag-section {
    padding: 100px 0 0;
    background: #ffffff;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: sticky;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.06);
}

/* Stacking: each card sticks below the product header (56px) + offset */
.feature-block:nth-of-type(2) { top: 60px; z-index: 2; }
.feature-block:nth-of-type(3) { top: 70px; z-index: 3; }
.feature-block:nth-of-type(4) { top: 80px; z-index: 4; }
.feature-block:nth-of-type(5) { top: 90px; z-index: 5; }
.feature-block:nth-of-type(6) { top: 100px; z-index: 6; }
.feature-block:nth-of-type(7) { top: 110px; z-index: 7; }

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

/* Alternating soft background colors — solid bases for stacking */
.feature-block.feature-green {
    background: linear-gradient(135deg, #f0fdf6 0%, #e6f9ee 100%);
    border-color: rgba(16, 185, 129, 0.12);
}

.feature-block.feature-orange {
    background: linear-gradient(135deg, #fffcf5 0%, #fef6e7 100%);
    border-color: rgba(245, 158, 11, 0.12);
}

.feature-block.feature-blue {
    background: linear-gradient(135deg, #f5f7ff 0%, #edf0fe 100%);
    border-color: rgba(0, 48, 219, 0.1);
}

.feature-block.feature-purple {
    background: linear-gradient(135deg, #f9f5ff 0%, #f3edfe 100%);
    border-color: rgba(124, 58, 237, 0.1);
}

.feature-block.feature-pink {
    background: linear-gradient(135deg, #fef5f9 0%, #fdedf3 100%);
    border-color: rgba(236, 72, 153, 0.1);
}

.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: 100%;
    height: 460px;
    border-radius: 20px;
    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: none;
}

/* Feature Visual Backgrounds */
.meetings-visual { background: #ffffff; border: 1px solid #e2e8f0; }
.transcription-visual { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }
.summary-visual { background: linear-gradient(135deg, #ecfdf5, #d1fae5); }
.action-visual { background: transparent; box-shadow: none; border: none; }
.chat-visual { background: transparent; box-shadow: none; border: none; }
.automation-visual { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }

/* Feature Description */
.feature-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 28px;
}

/* Visual Placeholder */
.feature-visual-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 100%;
    color: #94a3b8;
}
.feature-visual-placeholder i {
    font-size: 48px;
    opacity: 0.4;
}
.feature-visual-placeholder span {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.5;
}

/* --- MEETINGS DASHBOARD MOCKUP --- */
.meetings-visual { background: transparent; box-shadow: none; border: none; }

.mtg-mockup {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
}

.mtg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 0;
}

.mtg-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
}

.mtg-refresh {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #94a3b8;
    font-size: 12px;
}

.mtg-tabs {
    display: flex;
    gap: 24px;
    padding: 16px 24px 0;
    border-bottom: 1px solid #f1f5f9;
}

.mtg-tabs span {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    padding-bottom: 12px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.mtg-tabs span.active {
    color: var(--text-main);
    font-weight: 700;
    border-bottom-color: var(--text-main);
}

.mtg-badge {
    font-family: 'Poppins', sans-serif;
    background: var(--text-main);
    color: white;
    padding: 1px 8px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 4px;
}

.mtg-list {
    flex: 1;
    overflow: hidden;
    padding: 4px 0;
}

.mtg-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}

.mtg-item:last-child { border-bottom: none; }
.mtg-item:hover { background: #fafbfc; }

.mtg-icon {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    flex-shrink: 0;
}

.mtg-details {
    flex: 1;
    min-width: 0;
}

.mtg-name {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mtg-meta {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mtg-add {
    font-family: 'Poppins', sans-serif;
    background: var(--product-primary);
    color: white;
    border: none;
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
}

.mtg-add:hover { background: #0026ad; }
.mtg-add i { font-size: 10px; }

/* --- TRANSCRIPT MOCKUP --- */
.transcription-visual { background: transparent; box-shadow: none; border: none; }

.transcript-mockup {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
}

.transcript-top-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.transcript-back {
    color: #94a3b8;
    font-size: 12px;
}

.transcript-top-bar h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    flex: 1;
}

.transcript-rec-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: var(--product-primary);
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.transcript-rec-btn i { font-size: 9px; }

.transcript-tabs {
    display: flex;
    gap: 0;
    padding: 0 20px;
    border-bottom: 1px solid #f1f5f9;
}

.transcript-tabs span {
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    color: #94a3b8;
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.transcript-tabs span.active {
    color: var(--product-primary);
    font-weight: 600;
    border-bottom-color: var(--product-primary);
}

.transcript-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.transcript-info-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.transcript-info-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 48, 219, 0.08);
    color: var(--product-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.transcript-info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
}

.transcript-info-meta {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    color: #94a3b8;
}

.transcript-info-actions span {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #475569;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 5px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.transcript-info-actions span i { font-size: 8px; color: #94a3b8; }

.transcript-lines {
    flex: 1;
    overflow: hidden;
    padding: 6px 0;
}

.transcript-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 20px;
    border-bottom: 1px solid #f8fafc;
}

.transcript-line:last-child { border-bottom: none; }

.tl-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.tl-avatar.green { background: #16a34a; }
.tl-avatar.pink { background: #e11d48; }
.tl-avatar.blue { background: #2563eb; }

.tl-content {
    flex: 1;
    min-width: 0;
}

.tl-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 2px;
}

.tl-meta strong {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-main);
}

.tl-meta span {
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    color: #94a3b8;
}

.tl-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    line-height: 1.5;
    color: #475569;
    margin: 0;
}

/* Transcript responsive */
@media (max-width: 768px) {
    .transcript-tabs { overflow-x: auto; scrollbar-width: none; }
    .transcript-tabs::-webkit-scrollbar { display: none; }
    .transcript-tabs span { white-space: nowrap; }
    .transcript-info-actions { display: none; }
    .tl-meta strong { font-size: 10px; }
    .tl-content p { font-size: 10px; }
}

/* --- MEETING SUMMARY MOCKUP --- */
.summary-mockup {
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    height: 100%;
}

/* Left panel */
.summary-left {
    border-right: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.summary-title-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.summary-back {
    color: #94a3b8;
    font-size: 12px;
}

.summary-title-bar h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.summary-nav-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #f1f5f9;
    padding: 0 20px;
}

.summary-nav-tabs span {
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    color: #94a3b8;
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.summary-nav-tabs span.active {
    color: var(--product-primary);
    font-weight: 600;
    border-bottom-color: var(--product-primary);
}

.summary-body {
    padding: 16px 20px;
    flex: 1;
}

.summary-label {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--product-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.summary-label i {
    font-size: 11px;
}

.summary-text {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 16px;
}

.summary-stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    padding: 12px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.summary-stat {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #94a3b8;
}

.stat-label.green { color: #10B981; }
.stat-label.orange { color: #F59E0B; }

.summary-section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.summary-section-label i {
    color: var(--product-primary);
    font-size: 12px;
}

.summary-actions {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-actions li {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sa-check {
    width: 14px;
    height: 14px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    flex-shrink: 0;
}

.sa-check.done {
    background: var(--product-primary);
    border-color: var(--product-primary);
    position: relative;
}

.sa-check.done::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 0px;
    width: 4px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Right panel */
.summary-right {
    display: flex;
    flex-direction: column;
    background: #fafbfc;
}

.summary-video {
    padding: 16px;
}

.video-placeholder {
    background: #1e293b;
    border-radius: 10px;
    padding: 24px 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.video-avatars {
    display: flex;
    gap: 16px;
}

.vid-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.vid-avatar.blue { background: #3b82f6; }
.vid-avatar.purple { background: #8b5cf6; }

.video-bar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.video-time {
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.video-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.video-progress-fill {
    width: 73%;
    height: 100%;
    background: var(--product-primary);
    border-radius: 2px;
}

.summary-key-points {
    padding: 16px 20px;
    flex: 1;
}

.summary-key-points h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 10px;
}

.kp-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.kp-tabs span {
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    color: #94a3b8;
    padding-bottom: 8px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.kp-tabs span.active {
    color: var(--product-primary);
    font-weight: 600;
    border-bottom-color: var(--product-primary);
}

.kp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kp-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    line-height: 1.5;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.kp-list li i {
    font-size: 5px;
    color: var(--product-primary);
    margin-top: 5px;
    flex-shrink: 0;
}

/* Summary responsive */
@media (max-width: 768px) {
    .summary-mockup {
        grid-template-columns: 1fr;
    }
    .summary-left {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
    .summary-nav-tabs {
        overflow-x: auto;
        scrollbar-width: none;
    }
    .summary-nav-tabs::-webkit-scrollbar { display: none; }
    .summary-nav-tabs span { white-space: nowrap; }
}

/* --- SEARCH / CHAT WITH JESTO MOCKUP --- */
.search-mockup {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 28px 20px;
}

.search-mockup-hero {
    text-align: center;
    margin-bottom: 24px;
}

.search-jesto-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.search-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.search-ai-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--product-primary);
    background: rgba(0, 48, 219, 0.08);
    padding: 4px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-ai-badge i {
    font-size: 10px;
}

.search-mockup-hero h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.search-mockup-hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

.search-suggestions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    margin-bottom: 20px;
    flex: 1;
}

.search-suggestion-card {
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.search-suggestion-card:hover {
    border-color: var(--product-primary);
    background: rgba(0, 48, 219, 0.02);
}

.search-suggestion-card i {
    color: var(--product-primary);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.search-suggestion-card span {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.4;
}

.search-input-bar {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    padding: 12px 14px 12px 20px;
    margin-bottom: 10px;
}

.search-input-bar > i {
    color: #94a3b8;
    font-size: 13px;
    flex-shrink: 0;
}

.search-input-bar span {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #94a3b8;
    flex: 1;
}

.search-send {
    width: 32px;
    height: 32px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #94a3b8;
    flex-shrink: 0;
}

.search-footer-note {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    color: var(--product-primary);
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.search-footer-note i {
    font-size: 9px;
}

/* Search mockup responsive */
@media (max-width: 768px) {
    .search-mockup { padding: 24px 20px 16px; }
    .search-suggestions { grid-template-columns: 1fr; }
    .search-suggestion-card { padding: 10px 14px; }
}

/* --- HANDS-FREE MEETING MOCKUP V2 --- */
.automation-visual { background: transparent; box-shadow: none; border: none; }

.hf-mockup-v2 {
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    justify-content: center;
}

.hf-step {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hf-step-num {
    font-family: 'Poppins', sans-serif;
    width: 28px;
    height: 28px;
    background: var(--product-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.hf-step-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: var(--transition);
}

.hf-step-card:hover {
    border-color: rgba(0, 48, 219, 0.15);
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.hf-step-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.hf-step-icon.join { background: rgba(0, 48, 219, 0.08); color: var(--product-primary); }
.hf-step-icon.record { background: rgba(239, 68, 68, 0.08); color: #ef4444; }
.hf-step-icon.summary { background: rgba(124, 58, 237, 0.08); color: #7c3aed; }
.hf-step-icon.deliver { background: rgba(16, 185, 129, 0.08); color: #10b981; }

.hf-step-body {
    flex: 1;
    min-width: 0;
}

.hf-step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
}

.hf-step-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    color: #94a3b8;
}

.hf-step-status {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.hf-step-status i { font-size: 6px; }
.hf-step-status.live { background: rgba(0, 48, 219, 0.08); color: var(--product-primary); }
.hf-step-status.rec { background: rgba(239, 68, 68, 0.08); color: #ef4444; }

.hf-step-check {
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* Hands-free responsive */
@media (max-width: 768px) {
    .hf-mockup-v2 { padding: 20px 16px; gap: 10px; }
    .hf-step-card { padding: 12px 14px; gap: 10px; }
    .hf-step-icon { width: 32px; height: 32px; font-size: 13px; }
    .hf-step-title { font-size: 11px; }
    .hf-step-desc { font-size: 9.5px; }
    .hf-step-num { width: 24px; height: 24px; font-size: 10px; }
}

/* --- ACTION ITEMS MOCKUP --- */
.action-mockup {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #e2e8f0;
}

.action-mockup-header {
    padding: 20px 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.action-mockup-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
}

.action-filters {
    display: flex;
    gap: 6px;
}

.action-filter {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    color: var(--text-muted);
    background: #f1f5f9;
    cursor: pointer;
    transition: var(--transition);
}

.action-filter.active {
    background: var(--product-primary);
    color: white;
}

.action-table {
    padding: 16px 0 8px;
}

.action-table-head {
    display: grid;
    grid-template-columns: 1fr 90px 70px 60px;
    gap: 12px;
    padding: 0 24px 10px;
    border-bottom: 1px solid #f1f5f9;
}

.action-table-head span {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-table-row {
    display: grid;
    grid-template-columns: 1fr 90px 70px 60px;
    gap: 12px;
    padding: 11px 24px;
    align-items: center;
    border-bottom: 1px solid #f8fafc;
    transition: background 0.15s ease;
}

.action-table-row:last-child {
    border-bottom: none;
}

.action-table-row:hover {
    background: #fafbfc;
}

.action-table-row .col-item {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.action-table-row .col-item i {
    color: #cbd5e1;
    font-size: 14px;
    margin-top: 1px;
    flex-shrink: 0;
}

.action-table-row .col-item i.done {
    color: var(--product-primary);
}

.action-table-row .col-assignee {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #475569;
}

.action-table-row .col-date {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
}

.priority-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    display: inline-block;
}

.priority-tag.high {
    background: #FEF2F2;
    color: #EF4444;
}

.priority-tag.medium {
    background: #FFFBEB;
    color: #F59E0B;
}

.priority-tag.low {
    background: #F0FDF4;
    color: #22C55E;
}

/* Action mockup responsive */
@media (max-width: 768px) {
    .action-table-head {
        display: none;
    }
    .action-table-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 14px 20px;
    }
    .action-table-row .col-assignee,
    .action-table-row .col-date {
        font-size: 10px;
    }
    .action-filters {
        overflow-x: auto;
        scrollbar-width: none;
    }
    .action-filters::-webkit-scrollbar { display: none; }
}

/* Responsive Features */
@media (max-width: 1100px) {
    .feature-block { gap: 40px; padding: 40px; }
    .visual-container { width: 100%; height: 400px; }
    .feature-content h2 { font-size: 36px; }
}

@media (max-width: 768px) {
    /* All visuals: constrain to parent, fixed max height */
    .feature-visual {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .visual-container {
        height: auto;
        max-height: 380px;
        min-height: 0;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
        border-radius: 14px;
    }

    /* All inner mockups: fill width */
    .mtg-mockup,
    .transcript-mockup,
    .summary-mockup,
    .action-mockup,
    .search-mockup,
    .hf-mockup-v2 {
        width: 100%;
        border-radius: 14px;
        max-height: 380px;
        overflow: hidden;
    }

    /* Meetings mockup mobile */
    .mtg-header { padding: 14px 14px 0; }
    .mtg-header h3 { font-size: 14px; }
    .mtg-refresh { width: 28px; height: 28px; font-size: 10px; }
    .mtg-tabs { padding: 10px 14px 0; gap: 14px; }
    .mtg-tabs span { font-size: 11px; padding-bottom: 8px; }
    .mtg-item { padding: 10px 14px; gap: 10px; }
    .mtg-name { font-size: 11px; }
    .mtg-meta { font-size: 9px; }
    .mtg-add { padding: 4px 8px; font-size: 9px; gap: 4px; }
    .mtg-add i { font-size: 8px; }
    .mtg-icon { width: 26px; height: 26px; font-size: 10px; border-radius: 7px; }

    /* Transcript mockup mobile */
    .transcript-top-bar { padding: 12px 14px; }
    .transcript-top-bar h4 { font-size: 11px; }
    .transcript-rec-btn { font-size: 8px; padding: 4px 8px; }
    .transcript-tabs { padding: 0 14px; }
    .transcript-tabs span { font-size: 9.5px; padding: 8px 8px; }
    .transcript-info-bar { padding: 10px 14px; }
    .transcript-info-icon { width: 26px; height: 26px; font-size: 11px; }
    .transcript-info-title { font-size: 10px; }
    .transcript-info-meta { font-size: 9px; }
    .transcript-info-actions { display: none; }
    .transcript-line { padding: 7px 14px; gap: 8px; }
    .tl-avatar { width: 22px; height: 22px; font-size: 7px; }
    .tl-meta strong { font-size: 9.5px; }
    .tl-meta span { font-size: 8px; }
    .tl-content p { font-size: 9.5px; }

    /* Summary mockup mobile — single column */
    .summary-mockup { grid-template-columns: 1fr; max-height: 380px; }
    .summary-right { display: none; }
    .summary-title-bar { padding: 12px 14px; }
    .summary-title-bar h4 { font-size: 11px; }
    .summary-nav-tabs { padding: 0 14px; }
    .summary-nav-tabs span { font-size: 9.5px; padding: 8px 8px; }
    .summary-body { padding: 12px 14px; }
    .summary-label { font-size: 9px; }
    .summary-text { font-size: 10px; margin-bottom: 12px; }
    .summary-stats-row { gap: 16px; margin-bottom: 12px; padding: 10px 0; }
    .stat-num { font-size: 16px; }
    .stat-label { font-size: 9px; }
    .summary-section-label { font-size: 10px; }
    .summary-actions li { font-size: 10px; }

    /* Action items mockup mobile — simplified table */
    .action-mockup-header { padding: 14px 14px 0; flex-direction: column; align-items: flex-start; gap: 10px; }
    .action-mockup-header h3 { font-size: 14px; }
    .action-filters { gap: 4px; }
    .action-filter { font-size: 9px; padding: 3px 8px; }
    .action-table { padding: 8px 0; }
    .action-table-head { display: none; }
    .action-table-row {
        grid-template-columns: 1fr auto;
        padding: 10px 14px;
        gap: 4px;
    }
    .action-table-row .col-item { grid-column: 1 / -1; font-size: 10px; }
    .action-table-row .col-item i { font-size: 12px; }
    .action-table-row .col-assignee { font-size: 9px; }
    .action-table-row .col-priority { display: inline; }
    .action-table-row .col-date { font-size: 9px; }
    .priority-tag { font-size: 8px; padding: 2px 7px; }

    /* Search mockup mobile */
    .search-mockup { padding: 20px 14px 12px; }
    .search-logo-img { width: 28px; height: 28px; }
    .search-ai-badge { font-size: 9px; padding: 3px 8px; }
    .search-mockup-hero h3 { font-size: 15px; }
    .search-mockup-hero p { font-size: 11px; }
    .search-mockup-hero { margin-bottom: 16px; }
    .search-suggestions { grid-template-columns: 1fr; gap: 6px; }
    .search-suggestion-card { padding: 10px 12px; gap: 8px; }
    .search-suggestion-card i { font-size: 11px; }
    .search-suggestion-card span { font-size: 10px; }
    .search-input-bar { padding: 10px 12px 10px 14px; margin-bottom: 6px; }
    .search-input-bar > i { font-size: 11px; }
    .search-input-bar span { font-size: 10px; }
    .search-send { width: 28px; height: 28px; font-size: 10px; }
    .search-footer-note { font-size: 9px; }

    /* Hands-free mockup mobile */
    .hf-mockup-v2 { padding: 16px 12px; gap: 8px; }
    .hf-step { gap: 8px; }
    .hf-step-num { width: 22px; height: 22px; font-size: 9px; }
    .hf-step-card { padding: 10px 12px; gap: 8px; border-radius: 10px; }
    .hf-step-icon { width: 30px; height: 30px; font-size: 12px; border-radius: 8px; }
    .hf-step-title { font-size: 10.5px; }
    .hf-step-desc { font-size: 9px; }
    .hf-step-status { font-size: 8px; padding: 3px 7px; }
    .hf-step-check { width: 20px; height: 20px; font-size: 8px; }
}

@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: 60px 0; }
    .feature-block {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 20px;
        border-radius: 20px;
        position: relative !important;
        top: auto !important;
        z-index: auto !important;
        box-shadow: none;
        margin-bottom: 24px;
    }
    .feature-block.reverse .feature-content { order: 1; }
    .feature-block.reverse .feature-visual { order: 2; }
    .visual-container { height: auto; min-height: 300px; }
    .feature-content h2 { font-size: 24px; letter-spacing: -0.5px; margin: 16px 0; }
    .feature-tag { font-size: 11px; padding: 5px 12px; margin-bottom: 12px; }
    .feature-desc { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
    .feature-points li { font-size: 14px; padding-left: 22px; margin-bottom: 10px; line-height: 1.5; }
    .feature-points li::before { font-size: 20px; }

    .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 */
    .hero-image-wrapper {
        width: 100%;
        max-width: 500px;
        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) {
    .product-container {
        padding: 0 24px;
    }
    /* Hide dashboard on mobile */
    .demo-dashboard {
        display: none;
    }
    .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-container {
        padding: 0 16px;
    }
    .product-hero {
        padding: 40px 0;
    }
    .product-hero-content h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }
    .product-hero-content p {
        font-size: 15px;
    }
    .product-hero-btns {
        flex-direction: column;
    }
    .product-hero-btns a {
        width: 100%;
        text-align: center;
    }
    .hero-image-wrapper {
        width: 100%;
    }
    .value-proof {
        padding: 48px 0;
    }
    .proof-grid {
        gap: 32px 16px;
    }
    .proof-text h3 { font-size: 18px; }
    .proof-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
        border-radius: 12px;
    }
    .section-header h2 {
        font-size: 26px;
        letter-spacing: -1px;
    }

    /* 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;
    }
}

/* --- COMPARISON TABLE SECTION --- */
.comparison-section {
    padding: 100px 0;
    background: #F8FAFC;
    border-top: 1px solid #f1f5f9;
}

.comparison-table {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.comparison-header {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    background: #ffffff;
    border-bottom: 2px solid #f1f5f9;
}

.comparison-header .comp-col {
    padding: 24px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

.comparison-header .comp-col.jesto {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--product-primary);
}

.comp-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.comparison-row {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: #fafbfe;
}

.comparison-row .comp-col {
    padding: 18px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

.comparison-row .comp-col.aspect {
    font-weight: 600;
    color: var(--text-main);
    background: #fafbfc;
    border-right: 1px solid #f1f5f9;
}

.comparison-row .comp-col.traditional {
    color: #64748b;
}

.comparison-row .comp-col.jesto {
    color: #475569;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.comparison-row .comp-col.jesto i {
    color: #10B981;
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Comparison responsive */
@media (max-width: 992px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 140px 1fr 1fr;
    }
    .comparison-row .comp-col,
    .comparison-header .comp-col {
        padding: 14px 16px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .comparison-section { padding: 60px 0; }
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    .comparison-header .comp-col.aspect,
    .comparison-header .comp-col.traditional {
        display: none;
    }
    .comparison-header .comp-col.jesto {
        justify-content: center;
        padding: 16px;
    }
    .comparison-row {
        padding: 16px 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .comparison-row .comp-col {
        padding: 0;
    }
    .comparison-row .comp-col.aspect {
        background: transparent;
        border-right: none;
        font-size: 13px;
        font-weight: 700;
        color: var(--text-main);
    }
    .comparison-row .comp-col.traditional {
        font-size: 12px;
        color: #94a3b8;
        padding-left: 8px;
        border-left: 2px solid #e2e8f0;
    }
    .comparison-row .comp-col.jesto {
        font-size: 12px;
        padding-left: 8px;
        border-left: 2px solid #10B981;
    }
}

/* --- PRICING SECTION --- */
.pricing-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    border-top: 1px solid #f1f5f9;
}

/* --- PRICING V2 GRID --- */
.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-card-v2 {
    grid-column: span 4;
    padding: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card-v2:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.pricing-card-v2.featured {
    border: 2px solid var(--product-primary);
    border-radius: 16px;
    z-index: 2;
}

.pricing-card-v2.wide {
    grid-column: span 6;
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--product-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    z-index: 3;
}

.card-top {
    padding: 36px 28px 28px;
    border-bottom: 1px solid #f1f5f9;
}

.card-top h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
}

.plan-category {
    font-size: 13px;
    font-weight: 600;
    color: var(--product-primary);
    display: block;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}

.price-main {
    display: flex;
    align-items: baseline;
}

.price-main .currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
}

.price-main .amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    letter-spacing: -1.5px;
}

.enterprise-label {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.price-period {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.price-note {
    font-size: 13px;
    color: #475569;
    margin-bottom: 20px;
}

.price-note-highlight {
    color: var(--product-primary);
    font-weight: 700;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: var(--product-primary);
    color: white;
    text-align: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--product-primary);
}

.btn-pricing:hover {
    background: #0026ad;
    border-color: #0026ad;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 48, 219, 0.25);
}

.btn-pricing.outline {
    background: transparent;
    color: var(--product-primary);
    border: 2px solid var(--product-primary);
}

.btn-pricing.outline:hover {
    background: var(--product-primary);
    color: white;
}

.btn-pricing.featured {
    background: var(--product-primary);
    box-shadow: 0 4px 12px rgba(0, 48, 219, 0.25);
}

.card-features {
    padding: 24px 28px 32px;
    flex: 1;
}

.features-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-features ul li {
    font-size: 13px;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.card-features ul li i {
    color: var(--product-primary);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Pricing Responsive */
@media (max-width: 1200px) {
    .pricing-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card-v2,
    .pricing-card-v2.wide {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .pricing-section { padding: 60px 0; }
    .pricing-grid-v2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .card-top { padding: 28px 20px 20px; }
    .card-features { padding: 20px 20px 24px; }
}



/* --- 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: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    background: var(--product-primary);
    color: white;
    border-color: var(--product-primary);
    box-shadow: 0 20px 50px rgba(0, 48, 219, 0.2);
    transform: translateY(-5px);
}

.testimonial-card:hover .testimonial-content p,
.testimonial-card:hover .author-info strong {
    color: white;
}

.testimonial-card:hover .author-info span {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-card:hover .rating-value {
    color: white;
}

.testimonial-card:hover .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.15);
}

/* Override highlight class to be same as default (white) */
.testimonial-card.highlight {
    background: #ffffff;
    color: var(--text-main);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
}

.testimonial-card.highlight:hover {
    background: var(--product-primary);
    color: white;
    border-color: var(--product-primary);
    box-shadow: 0 20px 50px rgba(0, 48, 219, 0.2);
}

.testimonial-card.highlight .testimonial-content p,
.testimonial-card.highlight .author-info strong {
    color: var(--text-main);
}

.testimonial-card.highlight .author-info span {
    color: var(--text-muted);
}

.testimonial-card.highlight .rating-value {
    color: var(--text-main);
}

.testimonial-card.highlight:hover .testimonial-content p,
.testimonial-card.highlight:hover .author-info strong,
.testimonial-card.highlight:hover .rating-value {
    color: white;
}

.testimonial-card.highlight:hover .author-info span {
    color: rgba(255, 255, 255, 0.7);
}

.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);
}

.rating-stars {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-stars i {
    color: #ffb800;
    font-size: 14px;
}

.rating-value {
    margin-left: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
}

.testimonial-card.highlight .rating-stars i {
    color: #ffd700;
}

.testimonial-card.highlight .rating-value {
    color: white;
}

.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 (PM-STYLE) --- */
.nt-faq {
    padding: 120px 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
}

.nt-faq-grid {
    display: grid;
    grid-template-columns: 0.38fr 0.62fr;
    gap: 65px;
    align-items: start;
}

.nt-faq-info {
    position: sticky;
    top: 140px;
}

.nt-faq-heading {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 24px;
    letter-spacing: -3px;
    line-height: 1;
}

.nt-faq-subtext {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
}

.nt-faq-cta .btn-pricing {
    display: inline-block;
    width: auto;
    padding: 14px 32px;
}

.nt-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nt-faq-item {
    background: #F8F9FA;
    border: 1px solid transparent;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nt-faq-item:hover {
    background: #fff;
    border-color: rgba(0, 48, 219, 0.1);
    box-shadow: 0 10px 40px rgba(0, 48, 219, 0.05);
    transform: translateY(-2px);
}

.nt-faq-question {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    user-select: none;
    gap: 20px;
}

.nt-faq-question i {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--product-primary);
    font-size: 13px;
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.nt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nt-faq-answer p {
    padding: 0 32px 28px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.nt-faq-item.active {
    background: #fff;
    border-color: rgba(0, 48, 219, 0.2);
    box-shadow: 0 30px 60px rgba(0, 48, 219, 0.08);
}

.nt-faq-item.active .nt-faq-question {
    color: var(--product-primary);
}

.nt-faq-item.active .nt-faq-question i {
    transform: rotate(180deg);
    background: var(--product-primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 48, 219, 0.2);
}

.nt-faq-item.active .nt-faq-answer {
    max-height: 500px;
}

@media (max-width: 992px) {
    .nt-faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nt-faq-info {
        position: static;
        text-align: center;
    }
    .nt-faq-heading {
        letter-spacing: -2px;
    }
}

@media (max-width: 768px) {
    .nt-faq {
        padding: 60px 0;
    }
    .nt-faq-grid {
        gap: 24px;
    }
    .nt-faq-heading {
        font-size: 36px;
    }
    .nt-faq-subtext {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .nt-faq-item {
        border-radius: 16px;
    }
    .nt-faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }
    .nt-faq-question i {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    .nt-faq-answer p {
        padding: 0 24px 24px;
        font-size: 15px;
    }
}
