/* CSS Custom Properties */
:root {
    /* Harmonized Color System */
    --cta-primary: #1f066b;
    --cta-primary-hover: #2d4bb8;
    --cta-secondary: #1f066b;
    --cta-secondary-hover: #2d4bb8;
    
    --emphasis-purple: #6b46c1;
    --emphasis-purple-hover: #5b21b6;
    
    --accent-purple: #f3f0ff;
    --accent-blue: #3b56c7;
    --accent-blue-hover: #2d4bb8;
    
    /* Legacy colors for gradual migration */
    --primary-blue: #e3ecfb;
    --primary-blue-hover: #c5d9f5;
    --primary-black: #000;
    --primary-white: #fff;
    --background-gray: #f8f9fa;
    --dark-background: #1a1a1a;
    --dark-blue: #1a1a2e;
    --end-call-red: #ff6b6b;
    --end-call-red-hover: #ff5252;
    --text-light: #e0e0e0;
    --text-muted: #666;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s ease;
}

/* General Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--primary-white);
    padding-top: 70px; /* Account for fixed header */
}

/* Navigation Header */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-white);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 40px;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav-logo:hover .logo {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}

.nav-link {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1f066b;
}

.nav-link-disabled {
    color: #999999 !important;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

.nav-link.active {
    color: #1f066b;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #1f066b;
    border-radius: 1px;
}


.nav-demo-btn {
    background: #1f066b;
    color: var(--primary-white);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-demo-btn:hover {
    background: var(--emphasis-purple);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

/* Page Management */
.page {
    display: none;
    min-height: 100vh;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.page.active {
    display: block;
    opacity: 1;
}



#chat-interface {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#chat-interface.active {
    opacity: 1;
    transform: scale(1);
}

/* Landing Page Styles */
.header {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-black);
    line-height: 1.1;
}

.main-title em {
    color: #3b56c7;
    font-style: italic;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--primary-black);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Video Section */
.video-section {
    padding: 20px 20px;
    display: flex;
    justify-content: center;
}

/* Mobile/Desktop video/image switching */
.mobile-image {
    display: none;
}

.desktop-video {
    display: block;
}

@media (max-width: 768px) {
    .mobile-image {
        display: block;
    }
    
    .desktop-video {
        display: none;
    }
}

.video-container {
    position: relative;
    max-width: 900px;
    width: 100%;
}

.video-player {
    display: flex;
    flex-direction: column;
    background: var(--background-gray);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    position: relative;
}

.video-player::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #e3ecfb 0%, #d1e3f7 100%);
    border-radius: 30px;
    z-index: -1;
}

.video-left {
    flex: 1;
    background: var(--dark-blue);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.video-right {
    flex: 1;
    background: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

/* Win/Loss Analysis - Top/Bottom Layout */
.video-top {
    flex: 1;
    background: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.video-bottom {
    flex: 0.5;
    background: var(--dark-blue);
    padding: 15px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
}

.ai-indicator, .participant-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
}

.participant-indicator {
    color: #000;
    align-self: flex-end;
}

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

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.speech-bubble {
    background: #2d3748;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    position: relative;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #2d3748;
}

.speech-bubble p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

.waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: auto;
}

.wave-bar {
    width: 4px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 2px;
    animation: wave 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { height: 20px; }
    50% { height: 40px; }
}

.participant-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.participant-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.participant-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #000;
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.participant-speech-bubbles {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 250px;
}

.participant-bubble {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 15px;
    margin: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.participant-bubble::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid rgba(255, 255, 255, 0.95);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.participant-bubble p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.participant-bubble .waveform {
    margin-top: 8px;
    margin-bottom: 0;
}

.participant-bubble .wave-bar {
    background: var(--primary-blue);
    height: 15px;
}

.participant-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    position: relative;
}

.avatar-placeholder::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 35px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.avatar-placeholder::after {
    content: '';
    position: absolute;
    top: 45px;
    left: 50px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* Value Proposition Section */
.value-proposition-section {
    padding: 60px 20px;
    background: var(--primary-white);
    text-align: center;
}

.value-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.value-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-black);
    line-height: 1.2;
}

.value-subtitle {
    font-size: 1.1rem;
    color: var(--primary-black);
    line-height: 1.5;
    margin: 0;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: var(--primary-white);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 236, 251, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
    background: var(--primary-white);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.value-icon svg {
    color: var(--primary-black);
    width: 28px;
    height: 28px;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: #3b56c7;
}

.value-card:hover .value-icon svg {
    color: var(--primary-white);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-black);
    transition: var(--transition);
}

.value-card:hover h3 {
    color: #3b56c7;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Demo Section */
.demo-section {
    padding: 60px 20px;
    text-align: center;
    background: var(--background-gray);
}

.demo-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.demo-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.1;
}

.demo-subtitle {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 50px;
}

.scenario-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.scenario-card {
    background: var(--primary-white);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    transition: var(--transition);
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 236, 251, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.scenario-card:hover::before {
    left: 100%;
}

.scenario-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b56c7;
    background: var(--primary-white);
}

.scenario-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: #3b56c7;
}

.scenario-card:hover h3 {
    color: #3b56c7;
}

.scenario-card:hover p {
    color: var(--text-muted);
}

/* Demo CTA Section */
.demo-cta {
    margin-top: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.book-demo-btn {
    padding: 15px 30px;
    background: #1f066b;
    color: var(--primary-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 220px;
    height: 54px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-demo-btn:hover {
    background: var(--emphasis-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(107, 70, 193, 0.3);
}

.sample-report-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: var(--primary-white);
    color: #3b56c7;
    border: 2px solid #3b56c7;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 220px;
    height: 54px;
    max-width: 100%;
    text-decoration: none;
}

.sample-report-btn:hover {
    background: var(--emphasis-purple);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(107, 70, 193, 0.3);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    transition: var(--transition);
}

.onboarding-icon {
    background: #3b56c7;
    color: white;
}

.churn-icon {
    background: #ff6b6b;
    color: white;
}

.success-icon {
    background: #4caf50;
    color: white;
}

.scenario-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.scenario-card p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* Try It Now Section */
.try-it-now-section {
    background: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
}

.try-it-now-section .container {
    max-width: 600px;
    margin: 0 auto;
}

.try-it-now-content {
    max-width: 600px;
    margin: 0 auto;
}

.try-it-now-header {
    margin-bottom: 40px;
}

.try-demo-badge {
    display: inline-block;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #6c757d;
    border-radius: 20px;
    color: #495057;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.try-it-now-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    line-height: 1.2;
}

.try-it-now-title em {
    color: #3b56c7;
    font-style: italic;
}

.try-it-now-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 15px 0 0 0;
    line-height: 1.4;
}

.try-it-now-form {
    margin-bottom: 0;
}

.form-row {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
    align-items: center;
}

.try-it-now-form input {
    padding: 15px 20px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    background: var(--primary-white);
    color: #495057;
    outline: none;
    transition: all 0.3s ease;
    width: 300px;
    max-width: 100%;
}

.try-it-now-form input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 86, 199, 0.1);
}

.try-it-now-form input::placeholder {
    color: #6c757d;
}

.try-it-now-btn {
    padding: 15px 30px;
    background: #3b56c7;
    color: var(--primary-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 200px;
    max-width: 100%;
}

.try-it-now-btn:hover {
    background: var(--emphasis-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(107, 70, 193, 0.3);
}

.try-it-now-disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0;
}

.contact-success-text {
    color: var(--primary-blue);
    font-size: 1.1rem;
    text-align: center;
    margin: 20px 0;
}

.try-again-container {
    text-align: center;
    padding: 10px 0;
}

.demo-completed-text {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.try-again-btn {
    padding: 15px 30px;
    background: #3b56c7;
    color: var(--primary-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.try-again-btn:hover {
    background: var(--emphasis-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(107, 70, 193, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 40px 20px 80px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    min-width: 44px;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary-blue);
    color: var(--primary-black);
}

.btn-secondary:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
}



/* Chat Interface Styles */
#chat-interface {
    background: var(--primary-black);
    color: var(--primary-white);
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#chat-interface.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.chat-container {
    width: 100%;
    max-width: 800px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

.context-box {
    background: var(--dark-background);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.context-box h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-white);
    text-align: center;
}

.context-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
}

.highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

.vapi-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vapi-placeholder {
    text-align: center;
    position: relative;
}

.central-glow {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(227, 236, 251, 0.3) 0%, rgba(227, 236, 251, 0.1) 50%, transparent 100%);
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.vapi-placeholder p {
    color: #888;
    font-size: 1rem;
}

/* Close Chat Button */
.close-chat-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.close-chat-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.close-chat-btn svg {
    color: var(--primary-white);
    width: 20px;
    height: 20px;
}

.close-chat-btn:hover svg {
    color: #ff6b6b;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--primary-white);
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e5e7eb;
    background: #f8f9fa;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0;
    letter-spacing: 0.5px;
}

.close {
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: 300;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover {
    background: #e9ecef;
    color: #495057;
}

.modal-body {
    padding: 0;
    max-height: calc(90vh - 80px);
    overflow: hidden;
}

.calendar-iframe {
    border: none;
    border-radius: 0 0 15px 15px;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-title {
        font-size: 1rem;
    }
    
    .modal-body {
        max-height: calc(95vh - 60px);
    }
    
    .calendar-iframe {
        height: 500px;
    }
}

.end-call-btn {
    background: var(--end-call-red);
    color: var(--primary-white);
    padding: 15px 40px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    align-self: center;
}

.end-call-btn:hover {
    background: var(--end-call-red-hover);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .video-container {
        max-width: 800px;
    }
    
    .scenario-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Navigation Header Mobile */
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .nav-logo .logo {
        height: 35px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .nav-demo-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    body {
        padding-top: 60px; /* Adjust for smaller header */
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .marketing-title, .demo-title {
        font-size: 2rem;
    }
    
    .video-player {
        flex-direction: column;
    }
    
    .video-left, .video-right, .video-top {
        min-height: 300px;
    }
    
    .video-bottom {
        min-height: 150px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .scenario-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-header {
        margin-bottom: 40px;
    }
    
    .value-title {
        font-size: 2rem;
    }
    
    .value-subtitle {
        font-size: 1rem;
    }
    
    .value-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .value-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }
    
    .value-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
    }
    
    .value-card p {
        font-size: 0.95rem;
    }
    
    .chat-container {
        padding: 20px 10px;
        height: 100vh;
        max-width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    #chat-interface {
        padding: 10px;
    }
    
    .context-box {
        padding: 20px;
        margin-bottom: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1002;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: calc(100% - 20px);
        max-width: none;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .central-glow {
        width: 150px;
        height: 150px;
    }
    
    .end-call-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .try-it-now-title {
        font-size: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .try-it-now-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    /* Navigation Header Small Mobile */
    .nav-container {
        padding: 0 10px;
        height: 55px;
    }
    
    .nav-logo .logo {
        height: 30px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .nav-demo-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    body {
        padding-top: 55px; /* Adjust for smaller header */
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .video-left, .video-right, .video-top {
        padding: 20px;
        min-height: 250px;
    }
    
    .video-bottom {
        padding: 10px 20px 20px 20px;
        min-height: 125px;
    }
    
    .speech-bubble {
        padding: 15px;
    }
    
    .speech-bubble p {
        font-size: 0.9rem;
    }
    
    .scenario-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }
    
    .scenario-card h3 {
        font-size: 1.1rem;
    }
    
    .scenario-card p {
        font-size: 0.8rem;
    }
    
    .value-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .value-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
    
    .value-header {
        margin-bottom: 30px;
    }
    
    .value-title {
        font-size: 1.8rem;
    }
    
    .value-subtitle {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .central-glow {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
    
    .vapi-placeholder p {
        font-size: 0.9rem;
    }
    
    /* Chat interface mobile optimizations */
    #chat-interface {
        padding: 10px;
    }
    
    .chat-container {
        padding: 15px 10px;
        height: 100vh;
        max-width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .context-box {
        padding: 15px;
        margin-bottom: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1002;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: calc(100% - 20px);
        max-width: none;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .context-box h3 {
        font-size: 0.9rem;
    }
    
    .context-box p {
        font-size: 0.9rem;
    }
    
    .central-glow {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .end-call-btn {
        padding: 10px 25px;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .marketing-title, .demo-title {
        font-size: 1.6rem;
    }
    
    .marketing-text {
        font-size: 1rem;
    }
    
    .demo-subtitle {
        font-size: 1rem;
    }
    
    .video-left, .video-right, .video-top {
        padding: 15px;
        min-height: 200px;
    }
    
    .video-bottom {
        padding: 8px 15px 15px 15px;
        min-height: 100px;
    }
    
    .scenario-card {
        padding: 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Mobile Error Styles */
.mobile-error {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.error-content {
    text-align: center;
    color: #ff6b6b;
}

.error-content svg {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    color: #ff6b6b;
}

.error-content p {
    margin: 10px 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.retry-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.retry-btn:hover {
    background: #ff5252;
}

/* Mobile-specific VAPI widget styles */
@media (max-width: 768px) {
    vapi-widget {
        width: 100% !important;
        height: 100% !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 1000 !important;
    }
    
    /* Ensure video doesn't go full screen when VAPI is closed */
    .participant-background {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        z-index: 1 !important;
    }
    
    /* Ensure video container stays within bounds */
    .video-right {
        position: relative !important;
        overflow: hidden !important;
    }
    
    .mobile-error {
        margin: 10px;
        padding: 15px;
    }
    
    .error-content p {
        font-size: 0.85rem;
    }
    
    .retry-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Shadcn Table Styles */
.table-container {
    width: 100%;
    margin-top: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.shadcn-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.shadcn-table thead {
    background-color: #f9fafb;
}

.shadcn-table th {
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.shadcn-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}

.shadcn-table tbody tr:last-child td {
    border-bottom: none;
}

.shadcn-table tbody tr:hover {
    background-color: #f9fafb;
}

.shadcn-table tbody tr:hover td {
    background-color: #f9fafb;
}

/* Legal Pages Styles */
.legal-page {
    min-height: 100vh;
    background-color: var(--primary-white);
}

.legal-header {
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin: 20px 0 10px 0;
    text-align: center;
}

.legal-header .last-updated {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-bottom: 20px;
}

.back-link:hover {
    color: #3b56c7;
}

.back-link svg {
    width: 20px;
    height: 20px;
}

.legal-content {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--primary-black);
}

.content-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: var(--primary-black);
}

.content-wrapper h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: var(--primary-black);
}

.content-wrapper p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.content-wrapper ul, .content-wrapper ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper li {
    margin-bottom: 10px;
}

.content-wrapper strong {
    font-weight: 600;
    color: var(--primary-black);
}

.content-wrapper a {
    color: #3b56c7;
    text-decoration: none;
    font-weight: 500;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

/* Mobile responsive for legal pages */
@media (max-width: 768px) {
    .legal-header {
        padding: 30px 0;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 40px 0;
    }
    
    .content-wrapper {
        padding: 0 20px;
    }
    
    .content-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.2rem;
    }
}

/* Additional styles for legal pages */
.summary-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #c5d9f5 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
}

.summary-box h2 {
    color: var(--primary-black);
    margin-top: 0;
}

.summary-box ul {
    margin: 20px 0;
}

.summary-box li {
    margin-bottom: 12px;
    color: var(--primary-black);
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3b56c7;
    margin: 20px 0;
}

.contact-info p {
    margin: 0;
    line-height: 1.6;
}

.content-wrapper h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
    color: var(--primary-black);
}

.content-wrapper section {
    margin-bottom: 40px;
}

.content-wrapper ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper ol ul {
    margin: 10px 0;
    padding-left: 20px;
}

.intro-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #3b56c7;
    margin: 30px 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.final-note {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    margin: 30px 0;
    font-style: italic;
}

.note-box {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    margin: 20px 0;
}

.note-box p {
    margin: 0;
    color: #1565c0;
}

.note-box a {
    color: #0d47a1;
    text-decoration: underline;
}

.note-box a:hover {
    color: #002171;
}

/* B2B Page Styles */
.b2b-page {
    min-height: 100vh;
    background-color: var(--primary-white);
}

.b2b-hero {
    padding: 120px 20px 80px;
    background: url('assets/enhanced_gradient.webp');
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 84px;
    align-items: center;
    justify-items: center;
    max-width: 1470px;
    margin: 0 auto;
    width: 100%;
    min-height: 600px;
}

.hero-content {
    text-align: left;
    width: 100%;
    max-width: 630px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--primary-black);
    margin-bottom: 0;
    line-height: 1.1;
}

.hero-title-bold {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1f066b;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--primary-black);
    margin-bottom: 40px;
    line-height: 1.4;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-demo-btn {
    background: #1f066b;
    color: var(--primary-white);
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-demo-btn:hover {
    background: var(--emphasis-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
}

.hero-try-btn {
    background: var(--accent-purple);
    color: var(--cta-primary);
    border: 2px solid var(--cta-primary);
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-try-btn:hover {
    background: var(--emphasis-purple);
    color: var(--primary-white);
    border: 2px solid var(--emphasis-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
}

.hero-video {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.recording-indicator {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 20px;
    z-index: 5;
}

.recording-indicator .recording-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.recording-indicator span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.hero-video-player {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-video-mobile {
    display: none;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* AI Interviewer Interface */
.ai-interviewer-interface {
    position: absolute;
    background: #16092e;
    border: none;
    border-radius: 16px;
    padding: 16px;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 320px;
    box-shadow: 0 8px 25px rgba(59, 86, 199, 0.15);
    z-index: 10;
}

.ai-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.recording-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.ai-indicator span {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.speech-bubble {
    background: #2d3748;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.speech-bubble p {
    margin: 0;
    font-size: 0.9rem;
    color: white;
    line-height: 1.4;
}

.waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    justify-content: center;
}

.wave-bar {
    width: 4px;
    background: white;
    border-radius: 2px;
    animation: wave 1.2s infinite ease-in-out;
}

.wave-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 12px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 10px; animation-delay: 0.4s; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes wave {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: #3b56c7;
    color: var(--primary-white);
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-primary:hover {
    background: var(--emphasis-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(107, 70, 193, 0.3);
}

.cta-secondary {
    background: var(--primary-white);
    color: #3b56c7;
    border: 2px solid #3b56c7;
    border-radius: 8px;
    padding: 13px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.cta-secondary:hover {
    background: var(--emphasis-purple);
    color: var(--primary-white);
    border: 2px solid var(--emphasis-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(107, 70, 193, 0.3);
}

.b2b-value-prop {
    padding: 80px 20px;
    background: var(--primary-white);
}

/* Traditional Analysis Section - Black Background */
.traditional-analysis-section {
    background: #000000 !important;
    padding: 60px 20px;
}

/* Quote Container Styles */
.quote-container {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.testimonial-quote {
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 0 20px 0;
    font-style: italic;
    position: relative;
}

.quote-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--cta-primary);
    position: absolute;
    top: -20px;
    left: -30px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.quote-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--cta-primary);
    position: absolute;
    bottom: -40px;
    right: -30px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.quote-attribution {
    font-size: 1rem;
    color: #cccccc;
    font-style: normal;
    font-weight: 500;
    display: block;
    margin-top: 10px;
}

/* Testimonial Quote Container for Meet the Interviewer Section */
.testimonial-quote-container {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.testimonial-quote-container .testimonial-quote {
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
}

.testimonial-quote-container .quote-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-black);
    line-height: 1.4;
    margin: 0 0 20px 0;
    font-style: italic;
    position: relative;
}

.testimonial-quote-container .quote-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--cta-primary);
    position: absolute;
    top: -20px;
    left: -30px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-quote-container .quote-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--cta-primary);
    position: absolute;
    bottom: -40px;
    right: -30px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-quote-container .quote-attribution {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 500;
    display: block;
    margin-top: 10px;
}

/* Interviewer CTA Section */
.interviewer-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.interviewer-cta .cta-primary {
    background: var(--cta-primary);
    color: var(--primary-white);
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.interviewer-cta .cta-primary:hover {
    background: var(--emphasis-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
}

.interviewer-cta .cta-secondary {
    background: transparent;
    color: var(--cta-secondary);
    border: 2px solid var(--cta-secondary);
    border-radius: 12px;
    padding: 16px 38px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.interviewer-cta .cta-secondary:hover {
    background: var(--emphasis-purple);
    color: var(--primary-white);
    border: 2px solid var(--emphasis-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
}

.traditional-analysis-title {
    color: #ffffff !important;
    text-align: center;
    margin-bottom: 40px;
}

/* Value cards within traditional analysis section */
.traditional-analysis-section .value-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    color: #ffffff;
    padding: 20px 25px;
    min-height: auto;
}

.traditional-analysis-section .value-card h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.traditional-analysis-section .value-card p {
    color: #cccccc;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Quote styling for traditional analysis section */
.traditional-analysis-section .quote-text::before,
.traditional-analysis-section .quote-text::after {
    color: var(--accent-purple) !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-black);
    line-height: 1.1;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--primary-white);
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #3b56c7;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-icon svg {
    color: var(--primary-black);
    width: 32px;
    height: 32px;
}

.value-card:hover .value-icon {
    background: #3b56c7;
    transform: scale(1.1);
}

.value-card:hover .value-icon svg {
    color: var(--primary-white);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.value-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.b2b-use-cases {
    padding: 80px 20px;
    background: var(--background-gray);
}

.b2b-use-cases .hero-cta {
    margin-top: 50px;
    text-align: center;
}

/* New Interviewer Columns Layout */
.interviewer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.interviewer-column {
    display: flex;
    flex-direction: column;
}

.column-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.column-header::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.feature-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-box {
    background: linear-gradient(135deg, var(--emphasis-purple) 0%, #a855f7 100%);
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.feature-icon svg {
    color: white;
    width: 20px;
    height: 20px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.feature-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

.column-image {
    text-align: center;
    margin-bottom: 30px;
}

.column-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.column-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.b2b-cta {
    padding: 80px 20px;
    background: var(--primary-white);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* B2B Page Mobile Responsive */
@media (max-width: 768px) {
    .b2b-hero {
        padding: 80px 20px 60px;
        min-height: 70vh;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-title-bold {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .hero-demo-btn,
    .hero-try-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .hero-video-player {
        display: none;
    }
    
    .hero-video-mobile {
        display: block;
    }
    
    .recording-indicator {
        top: 10px;
        left: 10px;
        padding: 6px 10px;
    }
    
    .recording-indicator .recording-dot {
        width: 6px;
        height: 6px;
    }
    
    .recording-indicator span {
        font-size: 0.8rem;
    }
    
    .ai-interviewer-interface {
        bottom: -100px;
        width: 85%;
        padding: 15px;
    }
    
    .speech-bubble p {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Interviewer columns mobile */
    .interviewer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .column-header {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .column-header::after {
        width: 80px;
        height: 3px;
        bottom: -10px;
    }
    
    .feature-boxes {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .feature-box {
        padding: 18px;
    }
    
    .feature-header {
        gap: 10px;
        margin-bottom: 8px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    .column-image {
        margin-bottom: 25px;
    }
    
    .column-image img {
        max-width: 300px;
    }
    
    /* Testimonial quote mobile styles */
    .testimonial-quote-container {
        margin: 40px auto 0;
        padding: 0 20px;
    }
    
    .testimonial-quote-container .quote-text {
        font-size: 1.2rem;
    }
    
    .testimonial-quote-container .quote-text::before,
    .testimonial-quote-container .quote-text::after {
        font-size: 3rem;
    }
    
    .testimonial-quote-container .quote-text::before {
        top: -12px;
        left: -20px;
    }
    
    .testimonial-quote-container .quote-text::after {
        bottom: -30px;
        right: -20px;
    }
    
    .testimonial-quote-container .quote-attribution {
        font-size: 0.9rem;
    }
    
    /* Interviewer CTA mobile styles */
    .interviewer-cta {
        margin-top: 30px;
    }
    
    .interviewer-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .interviewer-cta .cta-primary,
    .interviewer-cta .cta-secondary {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-image {
        margin: 30px 0;
    }
    
    .cta-screenshot {
        border-radius: 8px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Quote mobile styles */
    .quote-container {
        margin: 40px auto 0;
        padding: 0 20px;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
    
    .quote-text::before,
    .quote-text::after {
        font-size: 3rem;
    }
    
    .quote-text::before {
        top: -15px;
        left: -20px;
    }
    
    .quote-text::after {
        bottom: -30px;
        right: -20px;
    }
    
    .quote-attribution {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title-bold {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .use-case-card {
        padding: 20px;
    }
    
    /* Interviewer columns small mobile */
    .column-header {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .column-header::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }
    
    .feature-box {
        padding: 16px;
    }
    
    .feature-header {
        gap: 8px;
        margin-bottom: 6px;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
    }
    
    .feature-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .feature-title {
        font-size: 0.95rem;
    }
    
    .feature-description {
        font-size: 0.8rem;
    }
    
    .column-image {
        margin-bottom: 20px;
    }
    
    .column-image img {
        max-width: 250px;
    }
    
    /* Testimonial quote small mobile styles */
    .testimonial-quote-container {
        margin: 30px auto 0;
        padding: 0 15px;
    }
    
    .testimonial-quote-container .quote-text {
        font-size: 1.1rem;
    }
    
    .testimonial-quote-container .quote-text::before,
    .testimonial-quote-container .quote-text::after {
        font-size: 2.5rem;
    }
    
    .testimonial-quote-container .quote-text::before {
        top: -10px;
        left: -15px;
    }
    
    .testimonial-quote-container .quote-text::after {
        bottom: -25px;
        right: -15px;
    }
    
    .testimonial-quote-container .quote-attribution {
        font-size: 0.85rem;
    }
    
    /* Interviewer CTA small mobile styles */
    .interviewer-cta {
        margin-top: 25px;
    }
    
    .interviewer-cta .cta-primary,
    .interviewer-cta .cta-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-image {
        margin: 25px 0;
    }
    
    .cta-screenshot {
        border-radius: 6px;
    }
}

/* Final CTA Section Styles */
.final-cta {
    padding: 100px 20px;
    background: var(--accent-purple);
    text-align: center;
}

.final-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 40px;
    line-height: 1.1;
}

.cta-image {
    margin: 40px 0;
    text-align: center;
}

.cta-screenshot {
    max-width: 50%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-screenshot:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.cta-button {
    background: var(--cta-primary);
    color: var(--primary-white);
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--emphasis-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
}

/* Mobile responsive for final CTA */
@media (max-width: 768px) {
    .final-cta {
        padding: 80px 20px;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .final-cta {
        padding: 60px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    /* Quote small mobile styles */
    .quote-text {
        font-size: 1.1rem;
    }
    
    .quote-text::before,
    .quote-text::after {
        font-size: 2.5rem;
    }
    
    .quote-text::before {
        top: -10px;
        left: -15px;
    }
    
    .quote-text::after {
        bottom: -25px;
        right: -15px;
    }
    
    .quote-attribution {
        font-size: 0.85rem;
    }
}

/* How It Works Section Styles */
.how-it-works {
    padding: 80px 20px;
    background: #fafafa;
}

.step-actions {
    text-align: center;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-cta-btn {
    background: transparent;
    color: var(--cta-primary);
    border: 2px solid var(--cta-primary);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.step-cta-btn:hover {
    background: var(--emphasis-purple);
    color: white;
    border: 2px solid var(--emphasis-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.step-screenshot {
    margin-top: 20px;
    text-align: center;
    align-self: flex-start;
    width: 100%;
    display: flex;
    justify-content: center;
}

.screenshot-image {
    width: 100%;
    max-width: 330px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.screenshot-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

.step-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary-white);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    border-color: var(--emphasis-purple);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--cta-primary);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-icon {
    color: var(--cta-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
    line-height: 1.1;
}

.step-description {
    font-size: 1rem;
    color: var(--primary-black);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.integration-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
    align-items: center;
}

.integration-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-white);
    border: 2px solid var(--cta-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(31, 6, 107, 0.1);
}

.integration-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.2);
    border-color: var(--emphasis-purple);
}

.integration-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Mobile responsive for how it works */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-description {
        max-width: none;
    }
    
    .integration-icons {
        gap: 10px;
    }
    
    .integration-icon {
        width: 45px;
        height: 45px;
    }
    
    .integration-icon img {
        width: 24px;
        height: 24px;
    }
    
    .step-cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .screenshot-image {
        max-width: 275px;
    }
    
    .how-it-works-quote .quote-text {
        font-size: 1.2rem;
    }
    
    .how-it-works-quote .quote-text::before,
    .how-it-works-quote .quote-text::after {
        font-size: 3rem;
    }
    
    .how-it-works-quote .quote-text::before {
        top: -12px;
        left: -20px;
    }
    
    .how-it-works-quote .quote-text::after {
        bottom: -30px;
        right: -20px;
    }
    
    .how-it-works-quote .quote-attribution {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
    
    .step-card {
        padding: 25px 15px;
    }
    
    .integration-icon {
        width: 40px;
        height: 40px;
    }
    
    .integration-icon img {
        width: 20px;
        height: 20px;
    }
    
    .how-it-works-quote .quote-text {
        font-size: 1.1rem;
    }
    
    .how-it-works-quote .quote-text::before,
    .how-it-works-quote .quote-text::after {
        font-size: 2.5rem;
    }
    
    .how-it-works-quote .quote-text::before {
        top: -10px;
        left: -15px;
    }
    
    .how-it-works-quote .quote-text::after {
        bottom: -25px;
        right: -15px;
    }
    
    .how-it-works-quote .quote-attribution {
        font-size: 0.85rem;
    }
}

/* Buyer Intelligence Section Styles */
.buyer-intelligence {
    padding: 80px 20px;
    background: var(--primary-white);
}

.intelligence-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.intelligence-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.intelligence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.win-loss-card {
    background: var(--primary-white);
    border: 2px solid var(--cta-primary);
}

.churn-card {
    background: var(--primary-white);
    border: 2px solid var(--cta-primary);
}

.card-content {
    display: flex;
    align-items: flex-start;
    padding: 40px;
    gap: 40px;
}

.card-left {
    flex: 0 0 35%;
    min-width: 0;
}

.card-right {
    flex: 0 0 65%;
    min-width: 0;
    padding-right: 20px;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cta-primary);
    margin: 0 0 15px 0;
    line-height: 1.1;
}

.card-tag {
    display: inline-block;
    background: var(--cta-primary);
    color: var(--primary-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--cta-primary);
}

.card-description {
    font-size: 1.1rem;
    color: var(--primary-black);
    line-height: 1.6;
    margin: 0;
}

.highlight-text {
    color: var(--cta-primary);
    font-weight: 700;
}

/* Mobile responsive for buyer intelligence */
@media (max-width: 768px) {
    .buyer-intelligence {
        padding: 60px 20px;
    }
    
    .intelligence-cards {
        gap: 20px;
    }
    
    .card-content {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-description {
        font-size: 1rem;
    }
    
    /* Buyer Intelligence quote mobile styles */
    .buyer-intelligence-quote-container {
        margin: 40px auto 0;
        padding: 0 20px;
    }
    
    .buyer-intelligence-quote-container .quote-text {
        font-size: 1.2rem;
    }
    
    .buyer-intelligence-quote-container .quote-text::before,
    .buyer-intelligence-quote-container .quote-text::after {
        font-size: 3rem;
    }
    
    .buyer-intelligence-quote-container .quote-text::before {
        top: -12px;
        left: -20px;
    }
    
    .buyer-intelligence-quote-container .quote-text::after {
        bottom: -30px;
        right: -20px;
    }
    
    .buyer-intelligence-quote-container .quote-attribution {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .card-content {
        padding: 25px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    /* Buyer Intelligence quote small mobile styles */
    .buyer-intelligence-quote-container {
        margin: 30px auto 0;
        padding: 0 15px;
    }
    
    .buyer-intelligence-quote-container .quote-text {
        font-size: 1.1rem;
    }
    
    .buyer-intelligence-quote-container .quote-text::before,
    .buyer-intelligence-quote-container .quote-text::after {
        font-size: 2.5rem;
    }
    
    .buyer-intelligence-quote-container .quote-text::before {
        top: -10px;
        left: -15px;
    }
    
    .buyer-intelligence-quote-container .quote-text::after {
        bottom: -25px;
        right: -15px;
    }
    
    .buyer-intelligence-quote-container .quote-attribution {
        font-size: 0.85rem;
    }
    
}

/* Buyer Intelligence Quote Container */
.buyer-intelligence-quote-container {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.buyer-intelligence-quote-container .testimonial-quote {
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
}

.buyer-intelligence-quote-container .quote-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-black);
    line-height: 1.4;
    margin: 0 0 20px 0;
    font-style: italic;
    position: relative;
}

.buyer-intelligence-quote-container .quote-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--cta-primary);
    position: absolute;
    top: -20px;
    left: -30px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.buyer-intelligence-quote-container .quote-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--cta-primary);
    position: absolute;
    bottom: -40px;
    right: -30px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.buyer-intelligence-quote-container .quote-attribution {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 500;
    display: block;
    margin-top: 10px;
}

/* How it works Quote within section */
.how-it-works-quote {
    margin-top: 60px;
    text-align: center;
}

.how-it-works-quote .testimonial-quote {
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.how-it-works-quote .quote-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-black);
    line-height: 1.4;
    margin: 0 0 20px 0;
    font-style: italic;
    position: relative;
}

.how-it-works-quote .quote-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--cta-primary);
    position: absolute;
    top: -20px;
    left: -30px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.how-it-works-quote .quote-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--cta-primary);
    position: absolute;
    bottom: -40px;
    right: -30px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.how-it-works-quote .quote-attribution {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 500;
    display: block;
    margin-top: 10px;
}


/* Footer Styles */
.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 40px 0 20px 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* 50% 25% 25% layout */
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo-section {
    max-width: 500px;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.footer-section-header {
    color: #ffffff;
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links {
    flex-shrink: 0;
}

.footer-links ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.footer-links li {
    list-style: none !important;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #3b56c7;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #999999;
    margin: 0;
    font-size: 0.85rem;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo-section {
        max-width: none;
    }
    
    .footer-logo-text {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .footer-links {
        width: 100%;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
} 