/* ============================================
   GeoDB Landing Page V2 - High Conversion Design
   ============================================ */

:root {
    --primary-teal: #26a69a;
    --primary-teal-dark: #1d7a70;
    --secondary-teal: #4db6ac;
    --light-teal: #b2dfdb;
    --light-green: #81c784;
    --dark-gray: #333;
    --light-gray: #f8f9fa;
    --success-green: #28a745;
    --warning-yellow: #ffc107;
    --danger-red: #dc3545;
    --info-blue: #17a2b8;
    --purple: #6f42c1;
}

/* Custom Color Utilities */
.bg-primary-soft { background-color: rgba(38, 166, 154, 0.1); }
.bg-success-soft { background-color: rgba(40, 167, 69, 0.1); }
.bg-info-soft { background-color: rgba(23, 162, 184, 0.1); }
.bg-warning-soft { background-color: rgba(255, 193, 7, 0.1); }
.bg-danger-soft { background-color: rgba(220, 53, 69, 0.1); }
.bg-purple-soft { background-color: rgba(111, 66, 193, 0.1); }

.text-purple { color: var(--purple); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #5600ea 0%, #26a69a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.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.05'%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");
    opacity: 0.3;
    pointer-events: none; /* Allow clicks to pass through the decorative background */
}

.hero-title {
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-text {
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
    opacity: 0.98;
}

.hero-highlight {
    color: #b2dfdb !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-highlight-alt {
    color: #81c784 !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-subtext i {
    color: #81c784 !important;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
}

.hero-btn-outline {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    text-shadow: none;
}

.hero-btn-outline:hover {
    background: white;
    border-color: white;
    color: #5600ea;
}

/* Hero section row heights - accounting for navbar (approx 70px) */
.hero-top-row {
    min-height: calc(75vh - 52.5px); /* 75% of (100vh - 70px navbar) */
}

.hero-bottom-row {
    min-height: calc(25vh - 17.5px); /* 25% of (100vh - 70px navbar) */
}

.hero-card-stack {
    position: relative;
    width: 100%;
    height: 400px;
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    width: 300px;
    text-align: center;
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 10 !important;
}

.hero-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.hero-card p {
    margin: 0;
    color: #6c757d;
}

.card-1 {
    top: 50px;
    left: 0;
    transform: rotate(-5deg);
    z-index: 3;
}

.card-1:hover {
    transform: translateY(-10px) translateX(20px) rotate(-2deg) scale(1.05);
}

.card-2 {
    top: 150px;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    z-index: 2;
}

.card-2:hover {
    transform: translateX(-50%) translateY(-10px) scale(1.05);
}

.card-3 {
    top: 250px;
    right: 0;
    transform: rotate(5deg);
    z-index: 1;
}

.card-3:hover {
    transform: translateY(-10px) translateX(-20px) rotate(2deg) scale(1.05);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: white;
    padding: 4rem 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ============================================
   BLM HERO BANNER (Bottom row aligned with buttons)
   ============================================ */
.blm-banner-hero-card {
    display: block;
    background: white;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    max-width: 100%;
}

.blm-banner-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(38, 166, 154, 0.25);
    border-color: var(--primary-teal);
}

.blm-banner-hero-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(38, 166, 154, 0.25);
}

.blm-banner-hero-icon i {
    font-size: 2rem;
    color: white;
}

.blm-banner-hero-card h5 {
    font-size: 1.25rem;
    color: var(--dark-gray);
}

.blm-banner-hero-card .text-muted {
    font-size: 1rem;
    line-height: 1.4;
}

.blm-banner-hero-arrow {
    font-size: 2.5rem;
    color: var(--primary-teal);
    transition: transform 0.3s ease;
}

.blm-banner-hero-card:hover .blm-banner-hero-arrow {
    transform: translateX(8px);
}

@media (max-width: 991px) {
    .blm-banner-hero-card {
        padding: 1.5rem;
    }

    .blm-banner-hero-icon {
        width: 60px;
        height: 60px;
    }

    .blm-banner-hero-icon i {
        font-size: 1.5rem;
    }
}

.trust-stat {
    padding: 1rem;
}

/* ============================================
   PROBLEM/SOLUTION SECTION
   ============================================ */
.problem-solution-section {
    background: var(--light-gray);
    padding: 6rem 0;
}

.problem-item,
.solution-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.problem-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.solution-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-item h5,
.solution-item h5 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark-gray);
}

/* ============================================
   FEATURES GRID SECTION
   ============================================ */
.features-grid-section {
    background: white;
    padding: 6rem 0;
}

.feature-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-teal);
}

.featured-card {
    border: 2px solid var(--success-green);
    position: relative;
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-modern i {
    font-size: 2.5rem;
}

.feature-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-modern li {
    padding: 0.5rem 0;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.feature-list-modern i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* ============================================
   VISUALIZATIONS SECTION
   ============================================ */
.visualizations-section {
    background: linear-gradient(to bottom, #f5f5f5 0%, #e8f0f2 100%);
    padding: 6rem 0;
}

.viz-placeholder {
    background: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px dashed #dee2e6;
}

.viz-feature-list {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

.viz-feature-list li {
    padding: 0.75rem 0;
}

/* ============================================
   INTEGRATIONS SECTION
   ============================================ */
.integrations-section {
    background: white;
    padding: 6rem 0;
}

.integration-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.integration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-teal);
}

.integration-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.integration-icon i {
    font-size: 3rem;
    color: white;
}

.integration-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.integration-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.integration-features i {
    color: var(--primary-teal);
    font-size: 1.1rem;
}

/* ============================================
   DATA TYPES SECTION
   ============================================ */
.data-types-section {
    background: linear-gradient(to bottom, #f5f5f5 0%, #e8f0f2 100%);
    padding: 6rem 0;
}

.data-type-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.data-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.data-type-header {
    padding: 2rem;
    color: white;
    text-align: center;
}

.data-type-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.data-type-header h4 {
    margin: 0;
    font-weight: 700;
}

.data-type-list {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.data-type-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.data-type-list li:last-child {
    border-bottom: none;
}

.data-type-list i {
    color: var(--primary-teal);
    font-size: 1.1rem;
}

/* ============================================
   ZERO DATA LOSS SECTION
   ============================================ */
.zero-data-loss-section {
    background: white;
    padding: 6rem 0;
}

.zero-data-icon {
    text-align: center;
}

.zero-data-icon i {
    font-size: 15rem;
    color: var(--danger-red);
    opacity: 0.1;
}

.zero-data-features {
    margin-top: 2rem;
}

.zero-data-feature {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.zero-data-feature i {
    font-size: 2rem;
    flex-shrink: 0;
}

.zero-data-feature h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ============================================
   PRICING SECTION V2
   ============================================ */
.pricing-section-v2 {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-section-v2::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.05'%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");
    opacity: 0.3;
    pointer-events: none; /* Allow clicks to pass through the decorative background */
}

/* Pricing toggle labels - better visibility */
.pricing-section-v2 #monthly-label,
.pricing-section-v2 #annual-label {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.pricing-section-v2 .billing-label-inactive {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: normal !important;
}

.pricing-card-v2 {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* Ensure all pricing cards have aligned buttons by giving feature lists consistent height */
.pricing-card-v2 .card-body {
    min-height: 650px; /* Ensure consistent card height */
}

.pricing-card-v2 .list-unstyled {
    min-height: 320px; /* Ensure feature lists take up consistent space */
}

.popular-card {
    border: 3px solid #ffc107;
    transform: scale(1.05);
}

.popular-card:hover {
    transform: scale(1.08) translateY(-10px);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    background: var(--light-gray);
    padding: 6rem 0;
}

.social-proof-item {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.social-proof-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ============================================
   EVERYTHING PROTECTED SECTION
   ============================================ */
.everything-protected-section {
    background: white;
    padding: 6rem 0;
}

.data-protected-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.data-protected-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-teal);
}

.data-protected-card i {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.data-protected-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.data-protected-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

/* ============================================
   GUIDED WORKFLOW SECTION
   ============================================ */
.guided-workflow-section {
    background: linear-gradient(to bottom, #f5f5f5 0%, #e8f0f2 100%);
    padding: 6rem 0;
}

.workflow-visual {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    border-color: var(--success-green);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
}

.workflow-step.step-final {
    background: linear-gradient(135deg, var(--success-green) 0%, var(--light-green) 100%);
}

.workflow-step.step-final .step-content h5,
.workflow-step.step-final .step-content p {
    color: white;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(38, 166, 154, 0.3);
}

.step-final .step-number {
    background: white;
    color: var(--success-green);
}

.step-content h5 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark-gray);
}

.step-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.workflow-connector {
    width: 3px;
    height: 20px;
    background: linear-gradient(to bottom, var(--primary-teal), var(--secondary-teal));
    margin-left: 25px;
}

.workflow-benefits {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

.workflow-benefits li {
    padding: 0.75rem 0;
    display: flex;
    align-items: start;
}

.workflow-benefits i {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* ============================================
   SMOOTH SCROLLING & ANIMATIONS
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* Fade-in animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card-modern,
.integration-card,
.data-type-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-top-row {
        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-bottom-row {
        min-height: auto;
        padding-top: 2rem;
    }

    .hero-card-stack {
        height: 300px;
    }

    .hero-card {
        width: 250px;
        padding: 1.5rem;
    }

    .card-1 { top: 20px; left: -20px; }
    .card-2 { top: 100px; }
    .card-3 { top: 180px; right: -20px; }

    .zero-data-icon i {
        font-size: 8rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .hero-card-stack {
        display: none;
    }
}

/* ============================================
   BUTTON ENHANCEMENTS
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-teal-dark), var(--primary-teal));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(38, 166, 154, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.shadow-lg {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

.section-heading {
    font-weight: 800;
    line-height: 1.2;
}
