/* ============================================
   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, #5600ea 0%, #26a69a 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;
}

/* Base pricing card - clean, premium look */
.pricing-card-v2 {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card-v2:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

/* Card body with proper spacing - uniform height */
.pricing-card-v2 .card-body {
    min-height: 560px;
    height: 100%;
    padding: 2.5rem 2rem !important;
    display: flex;
    flex-direction: column;
}

/* Plan name styling */
.pricing-card-v2 .card-title {
    color: #1a1a2e;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 1.5rem;
    min-height: 2.5rem;
}

/* Description text */
.pricing-card-v2 .plan-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price display - bold and prominent */
.pricing-card-v2 .price-display {
    padding: 1.25rem 0;
    min-height: 100px;
}

.pricing-card-v2 .price-amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
    letter-spacing: -1px;
}

.pricing-card-v2 .price-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
    margin-right: 2px;
}

.pricing-card-v2 .price-period {
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.pricing-card-v2 .price-savings {
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

/* Feature list - clean checkmarks with uniform height */
.pricing-card-v2 .feature-list {
    min-height: 220px;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-card-v2 .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.9rem;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-card-v2 .feature-list li:last-child {
    border-bottom: none;
}

.pricing-card-v2 .feature-list .feature-icon {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA buttons - refined styling */
.pricing-card-v2 .btn-select-plan {
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
}

.pricing-card-v2 .btn-select-plan.btn-outline-primary {
    border: 2px solid #e5e7eb;
    color: #374151;
    background: transparent;
}

.pricing-card-v2 .btn-select-plan.btn-outline-primary:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    background: rgba(38, 166, 154, 0.05);
}

.pricing-card-v2 .btn-select-plan.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #1e8e7f 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 14px rgba(38, 166, 154, 0.4);
}

.pricing-card-v2 .btn-select-plan.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 166, 154, 0.5);
}

/* ============================================
   POPULAR CARD - Teal gradient background
   ============================================ */
.popular-card {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #1e8e7f 100%);
    border: none;
    box-shadow: 0 8px 40px rgba(38, 166, 154, 0.35);
}

.popular-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 56px rgba(38, 166, 154, 0.45);
}

/* Popular card text colors - white on teal */
.popular-card .card-title {
    color: #ffffff;
}

.popular-card .plan-description {
    color: rgba(255, 255, 255, 0.8);
}

.popular-card .price-amount {
    color: #ffffff;
}

.popular-card .price-period {
    color: rgba(255, 255, 255, 0.7);
}

.popular-card .price-savings {
    color: #a7f3d0;
}

.popular-card .feature-list li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.popular-card .feature-list .feature-icon {
    color: #a7f3d0;
}

/* Popular card button - white outline on teal */
.popular-card .btn-select-plan.btn-primary {
    background: #ffffff;
    color: var(--primary-teal);
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.popular-card .btn-select-plan.btn-primary:hover {
    background: #f0fdfa;
    color: #1e8e7f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Popular badge - gold accent on teal card */
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a2e;
    padding: 0.5rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    white-space: nowrap;
}

/* ============================================
   ENTERPRISE CARD - Distinguished look
   ============================================ */
.enterprise-card {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.enterprise-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.enterprise-card .card-title {
    color: #ffffff;
}

.enterprise-card .plan-description {
    color: rgba(255, 255, 255, 0.6);
}

.enterprise-card .price-amount {
    color: #ffffff;
    font-size: 2.5rem;
}

.enterprise-card .price-period {
    color: rgba(255, 255, 255, 0.5);
}

.enterprise-card .feature-list li {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.enterprise-card .feature-list .feature-icon {
    color: #10b981;
}

.enterprise-card .btn-select-plan {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.enterprise-card .btn-select-plan:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS - Wider cards
   ============================================ */

/* Extra large screens - 5 cards in a row, wider */
@media (min-width: 1400px) {
    .pricing-section-v2 .container {
        max-width: 1400px;
    }

    .pricing-section-v2 .col-xl {
        flex: 0 0 19%;
        max-width: 19%;
    }

    .pricing-card-v2 .card-body {
        padding: 2rem 1.5rem !important;
    }
}

/* Large screens */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .pricing-section-v2 .container {
        max-width: 1200px;
    }

    .pricing-section-v2 .col-xl {
        flex: 0 0 19%;
        max-width: 19%;
    }

    .pricing-card-v2 .card-body {
        padding: 1.75rem 1.25rem !important;
    }

    .pricing-card-v2 .price-amount {
        font-size: 3rem;
    }
}

/* Medium-large screens - 3 cards per row */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .pricing-section-v2 .col-lg-4 {
        flex: 0 0 32%;
        max-width: 32%;
    }
}

/* Tablet - 2 cards per row */
@media (max-width: 991.98px) and (min-width: 768px) {
    .pricing-section-v2 .col-md-6 {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .popular-card {
        transform: none;
    }

    .popular-card:hover {
        transform: translateY(-12px);
    }

    .popular-badge {
        top: -12px;
    }
}

/* Mobile - single column */
@media (max-width: 767.98px) {
    .pricing-card-v2 .card-body {
        min-height: auto;
        padding: 2rem 1.5rem !important;
    }

    .pricing-card-v2 .feature-list {
        min-height: auto;
    }

    .popular-card {
        transform: none;
    }

    .popular-badge {
        top: -12px;
    }
}

/* ============================================
   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;
}
