/* Landing Page Specific Styles */
/* Extends style.css with conversion-optimized components */

/* ============================================
   PROSPECT HERO (Company-Specific)
   ============================================ */
.prospect-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prospect-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.company-logo-large {
    max-width: 200px;
    max-height: 80px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.company-logo-large.color-logo {
    filter: none;
    background: white;
    padding: 1rem;
    border-radius: 8px;
}

.amount-display {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 3rem;
    display: inline-block;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.amount-value {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.amount-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.urgency-badge {
    background: rgba(255, 193, 7, 0.9);
    color: #1a1a2e;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* ============================================
   DEMO SECTION
   ============================================ */
.demo-section {
    padding: 4rem 0;
    background: white;
}

.demo-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-placeholder:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================
   HOW IT WORKS (Landing Variant)
   ============================================ */
.how-it-works-landing {
    padding: 4rem 0;
    background: white;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
}

.step-connector {
    position: absolute;
    top: 55px;
    left: 60%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.3;
}

.process-step:last-child .step-connector {
    display: none;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.faq-accordion .accordion-item {
    background: white;
    border: none;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    background: white;
    color: #333;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(9, 0, 163, 0.05) 0%, rgba(26, 15, 209, 0.05) 100%);
    color: var(--primary-color);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta .amount-highlight {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin: 1rem 0;
}

.final-cta .btn-light {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 1.5rem;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-proof-section {
    padding: 3rem 0;
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.proof-stat {
    text-align: center;
}

.proof-stat .value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.proof-stat .label {
    color: #666;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* ============================================
   INDUSTRY HERO VARIANTS
   ============================================ */
.industry-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.industry-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.industry-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.industry-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============================================
   INDUSTRY PAIN POINTS
   ============================================ */
.pain-points-section {
    padding: 4rem 0;
    background: #fff5f5;
}

.pain-point {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #dc3545;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pain-point i {
    color: #dc3545;
    margin-right: 0.75rem;
}

.solution-point {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #28a745;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.solution-point i {
    color: #28a745;
    margin-right: 0.75rem;
}

/* ============================================
   SECURITY BADGES
   ============================================ */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.security-badge i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* ============================================
   MINIMAL NAVIGATION (Landing Pages)
   ============================================ */
.navbar-landing {
    background: transparent;
    box-shadow: none;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.navbar-landing .navbar-brand {
    color: white;
}

.navbar-landing .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-landing .nav-link:hover {
    color: white;
}

.navbar-landing.scrolled {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: fixed;
}

.navbar-landing.scrolled .navbar-brand {
    color: #333;
}

.navbar-landing.scrolled .nav-link {
    color: #333;
}

/* ============================================
   STICKY CTA BAR (Mobile)
   ============================================ */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.sticky-cta-bar .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

@media (max-width: 767.98px) {
    .sticky-cta-bar {
        display: block;
    }

    .amount-value {
        font-size: 3rem;
    }

    .amount-display {
        padding: 1.5rem 2rem;
    }

    .proof-stats {
        gap: 2rem;
    }

    .proof-stat .value {
        font-size: 2rem;
    }

    .step-connector {
        display: none;
    }

    .industry-hero h1 {
        font-size: 2rem;
    }

    .final-cta h2 {
        font-size: 1.75rem;
    }

    .final-cta .amount-highlight {
        font-size: 2rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ============================================
   FOOTER (Landing Minimal)
   ============================================ */
.footer-landing {
    background: var(--dark-color);
    color: #aaa;
    padding: 2rem 0;
    text-align: center;
}

.footer-landing a {
    color: #aaa;
    text-decoration: none;
}

.footer-landing a:hover {
    color: white;
}

/* ============================================
   DEMO HERO SECTION (Top of Page)
   ============================================ */
.demo-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.demo-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.demo-video-container {
    position: relative;
}

.video-placeholder-large {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.video-placeholder-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.video-placeholder-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.play-button-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.video-placeholder-large:hover .play-button-large {
    transform: scale(1.1);
}

.video-overlay-text {
    position: relative;
    z-index: 1;
}

.video-overlay-text h4 {
    margin-bottom: 0.25rem;
}

/* ============================================
   SCREENSHOT PLACEHOLDERS
   ============================================ */
.screenshot-placeholder {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.screenshot-content {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.screenshot-header {
    background: #f1f1f1;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.screenshot-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.screenshot-header .dot.red { background: #ff5f57; }
.screenshot-header .dot.yellow { background: #ffbd2e; }
.screenshot-header .dot.green { background: #28c940; }

.screenshot-header .screenshot-title {
    margin-left: auto;
    font-size: 0.8rem;
    color: #666;
}

.screenshot-body {
    padding: 20px;
    min-height: 200px;
}

/* Mock UI Elements */
.mock-search-bar {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.mock-search-bar i {
    color: #999;
}

.mock-search-bar span {
    color: #333;
    font-weight: 500;
}

.mock-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-result-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.state-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Mock Finding Card */
.mock-finding-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.match-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.match-badge.high {
    background: #d4edda;
    color: #155724;
}

.match-badge.medium {
    background: #fff3cd;
    color: #856404;
}

.finding-details {
    flex: 1;
}

.finding-details strong {
    display: block;
    font-size: 0.9rem;
}

.finding-details small {
    color: #666;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.action-buttons button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-approve {
    background: #d4edda;
    color: #155724;
}

.btn-reject {
    background: #f8d7da;
    color: #721c24;
}

/* Mock Document List */
.mock-doc-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.mock-doc-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

.mock-doc-item i {
    font-size: 1.25rem;
}

.mock-doc-item span:first-of-type {
    flex: 1;
}

.doc-tag {
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
}

.mock-upload-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Mock Workflow */
.mock-workflow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 10px;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.workflow-step i {
    font-size: 1.5rem;
}

.workflow-step.completed i {
    color: #28a745;
}

.workflow-step.active i {
    color: var(--primary-color);
}

.workflow-step.pending i {
    color: #ccc;
}

.workflow-connector {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    margin: 0 -10px;
    margin-bottom: 20px;
}

.mock-timeline-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

/* Mock Stats Row */
.mock-stats-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.mock-stat-box {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.mock-stat-box .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.mock-stat-box .stat-label {
    font-size: 0.75rem;
    color: #666;
    margin-top: 4px;
}

/* Mock Chart */
.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 4px 4px 0 0;
}

/* ============================================
   STEP BADGES
   ============================================ */
.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-list-inline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-inline li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #555;
}

/* ============================================
   MONITORING SECTION
   ============================================ */
.monitoring-section {
    background: #f8f9fa;
}

.monitoring-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.monitoring-benefit {
    text-align: center;
}

.monitoring-benefit h5 {
    margin-bottom: 0.25rem;
}

.us-map-placeholder {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-visual {
    position: relative;
    text-align: center;
    padding: 40px;
}

.map-visual > i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.pulse-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .monitoring-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .demo-hero-section {
        padding: 100px 0 60px;
    }

    .video-placeholder-large {
        padding: 60px 30px;
    }

    .play-button-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .screenshot-placeholder {
        margin-top: 2rem;
    }

    .mock-workflow {
        flex-wrap: wrap;
        gap: 10px;
    }

    .workflow-connector {
        display: none;
    }

    .workflow-step {
        width: 45%;
    }

    .mock-stats-row {
        flex-wrap: wrap;
    }

    .mock-stat-box {
        min-width: 45%;
    }
}
