* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    font-size: 14px;
    background: #fafafa;
    overflow-x: hidden;
} 

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #b91c1c;
    text-decoration: none;
}

.nav-center {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-center a {
    color: #374151;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-center a:hover {
    color: #b91c1c;
}

.nav-center a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #b91c1c;
    transition: width 0.2s ease;
}

.nav-center a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switcher {
    display: flex;
    background: white;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lang-switcher button {
    background: none;
    border: none;
    color: #6b7280;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.lang-switcher button.active,
.lang-switcher button:hover {
    background: #b91c1c;
    color: white;
}

.header-btn {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
}

.header-btn.secondary {
    background: white;
    color: #b91c1c;
    border: 2px solid #b91c1c;
}

.header-btn.secondary:hover {
    background: #b91c1c;
    color: white;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #374151;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.mobile-nav-menu a {
    color: #374151;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 16px 24px;
    border-radius: 12px;
}

.mobile-nav-menu a:hover {
    color: #b91c1c;
    background: rgba(185, 28, 28, 0.1);
    transform: translateY(-2px);
}

.mobile-header-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.mobile-header-buttons .lang-switcher {
    margin-bottom: 8px;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(107, 114, 128, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(107, 114, 128, 0.2);
    color: #374151;
}

/* Video Header */
.video-header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffffab;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(185, 28, 28, 0.1);
    color: #b91c1c;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #111827;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    padding: 16px 32px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: #b91c1c;
    color: #b91c1c;
    transform: translateY(-1px);
}

/* Enhanced Steps Section */
.steps {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(185, 28, 28, 0.03) 0%, transparent 60%),
        linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
}

.steps-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.step-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
}

.step-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, #b91c1c 0%, #991b1b 100%);
    z-index: 1;
    animation: drawLine 2s ease-in-out;
}

@keyframes drawLine {
    from { width: 0; }
    to { width: calc(100% - 120px); }
}

.step-item {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.4s; }
.step-item:nth-child(4) { animation-delay: 0.6s; }
.step-item:nth-child(5) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.step-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(185, 28, 28, 0.3);
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 8px 20px rgba(185, 28, 28, 0.3); }
    50% { box-shadow: 0 8px 30px rgba(185, 28, 28, 0.5); }
    100% { box-shadow: 0 8px 20px rgba(185, 28, 28, 0.3); }
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.step-desc {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    max-width: 180px;
    margin: 0 auto;
}

/* Section Titles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(185, 28, 28, 0.1);
    color: #b91c1c;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Services */
.services {
    padding: 120px 0;
    background: #991b1b33;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b91c1c, #991b1b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.service-desc {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.expand-trigger {
    color: #b91c1c;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.expand-trigger::after {
    content: '→';
    transition: transform 0.3s ease;
}

.expand-trigger:hover::after {
    transform: translateX(4px);
    animation: glow 1.5s infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 5px rgba(185, 28, 28, 0.5); }
    50% { text-shadow: 0 0 15px rgba(185, 28, 28, 0.8); }
}

.expand-trigger:hover {
    gap: 12px;
}

.service-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
    display: none;
}

.service-details.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-features {
    list-style: none;
    display: grid;
    gap: 8px;
}

.service-features li {
    color: #6b7280;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    width: 16px;
    height: 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Enhanced Pricing - New Modern Design */
.pricing {
    padding: 120px 0;
    background: #f5f2f2;
    position: relative;
}

.pricing-table-container {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: white;
    position: relative;
}

.pricing-toggle-container {
    text-align: center;
    padding: 40px 40px 20px;
    background: white;
    border-radius: 20px 20px 0 0;
}

.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    padding: 8px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    transition: color 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.toggle-label.active {
    color: #b91c1c;
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
    background: #e5e7eb;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: #b91c1c;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-slider.active {
    transform: translateX(28px);
}

.savings-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
}

.toggle-subtitle {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.pricing-table {
    width: 100%;
    min-width: 900px;
    border-collapse: separate;
    border-spacing: 0;
}

.pricing-row {
    display: grid;
    grid-template-columns: 300px repeat(4, 1fr);
    border-bottom: 1px solid #f1f5f9;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-header-row {
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}


.pricing-cell {
    padding: 24px 20px;
    display: flex;
    flex-direction: column; /* 🟢 Stack content vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    color: #374151;
    border-right: 1px solid #f1f5f9;
    position: relative;
}


    .pricing-cell-small {
        font-size: 11px;
    }

.pricing-cell:last-child {
    border-right: none;
}

.plan-selector {
    background: #f8fafc;
}

.plan-card {
    flex-direction: column;
    padding: 6px 16px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 20px;
}

.plan-card:hover {
    background: #f8fafc;
    transform: translateY(-4px);
}

.plan-card.essential {
    background: #ffffff;
    color: #374151;
}

.plan-card.growth {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: white;
    transform: scale(1.02);
    border: 2px solid #10b981;
}

.plan-card.growth.featured {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: white;
    transform: scale(1.02);
}

.plan-card.growth.featured:hover {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    transform: scale(1.02) translateY(-4px);
}

.plan-card.professional {
    background: #ffffff;
    color: #374151;
}

.plan-card.enterprise {
    background: #ffffff;
    color: #374151;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    white-space: nowrap;
}

.plan-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.plan-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: inherit;
}

.plan-card p {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
    color: inherit;
}

.plan-description {
    font-size: 13px;
    margin-bottom: 24px !important;
    opacity: 0.8;
}

.plan-cta {
    background: white;
    color: #b91c1c;
    border: 2px solid transparent;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.plan-card.featured .plan-cta {
    background: white;
    color: #b91c1c;
}

.plan-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.essential-btn {
    background: #b91c1c;
    color: white;
    border-color: #b91c1c;
}

.growth-btn {
    background: white;
    color: #b91c1c;
}

.professional-btn {
    background: #b91c1c;
    color: white;
    border-color: #b91c1c;
}

.enterprise-btn {
    background: #b91c1c;
    color: white;
    border-color: #b91c1c;
}

.learn-more {
    color: #6b7280;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.plan-card.featured .learn-more {
    color: rgba(255, 255, 255, 0.8);
}

.learn-more:hover {
    color: #b91c1c;
}

.plan-card.featured .learn-more:hover {
    color: white;
}

.pricing-section {
    border-top: 2px solid #e2e8f0;
}

.pricing-section .section-title {
    grid-column: 1 / -1;
    padding: 24px;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    justify-content: flex-start;
}

.feature-name {
    justify-content: flex-start;
    text-align: center;
    font-weight: 500;
    padding-left: 24px;
}

.price-cell {
    font-size: 18px;
    font-weight: 700;
    color: #b91c1c;
}

.yearly-price, .yearly-price-gr {
    display: none;
}

.monthly-price, .monthly-price-gr {
    display: inline;
}

.yearly-price.active, .yearly-price-gr.active {
    display: inline !important;
}

.monthly-price.hidden, .monthly-price-gr.hidden {
    display: none !important;
}

.checkmark {
    color: #10b981;
    font-size: 16px;
    font-weight: bold;
}

.green {
    color: #10b981;
    font-weight: 600;
}

.red {
    color: #dc2626;
    font-weight: 600;
}

.pricing-notes {
    max-width: 800px;
    margin: 48px auto 0;
    text-align: center;
    padding: 24px;
    background: rgba(185, 28, 28, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(185, 28, 28, 0.1);
}

.pricing-notes p {
    color: #374151;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.pricing-notes p:last-child {
    margin-bottom: 0;
}

.pricing-notes strong {
    color: #b91c1c;
}

/* Enhanced Calculator */
.calculator {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(185, 28, 28, 0.03) 0%, transparent 60%),
        linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.calculator-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.calculator-left {
    padding: 60px;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: white;
}

.calculator-right {
    padding: 60px;
    background: white;
}

.calculator-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.calculator-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.slider-container {
    position: relative;
    margin: 20px 0;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-value {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
    margin-top: 12px;
    font-weight: 600;
}

.business-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.business-type-option {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.business-type-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.business-type-option.active {
    background: white;
    border-color: white;
    color: #b91c1c;
}

.business-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.business-label {
    font-size: 12px;
    font-weight: 600;
}

.results-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    margin-top: 40px;
}

.results-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.results-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #b91c1c;
}

.result-label {
    font-weight: 600;
    color: #374151;
}

.result-value {
    font-size: 18px;
    font-weight: 700;
    color: #b91c1c;
}

/* Enhanced Insights */
.insights {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 60% 40%, rgba(185, 28, 28, 0.02) 0%, transparent 60%),
        linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.insights-container {
    position: relative;
    overflow: hidden;
}

.articles-scroll {
    display: flex;
    gap: 17px;
    overflow-x: auto;
    padding: 0px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.articles-scroll::-webkit-scrollbar {
    display: none;
}

.article-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 180px;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 16px;
    text-align: center;
}

.article-content {
    padding: 24px;
}

.article-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
    line-height: 1.4;
}

.article-excerpt {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.article-meta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 13px;
}

.scroll-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgb(171 171 171 / 90%);
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.scroll-arrows:hover {
    opacity: 1;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.scroll-left {
    left: 24px;
}

.scroll-right {
    right: 24px;
}

/* Footer */
footer {
    background: 
        radial-gradient(circle at 30% 30%, rgba(185, 28, 28, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section p,
.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #b91c1c;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.copyright-icon {
    font-size: 16px;
    color: #b91c1c;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 700px;
    max-height: 90%;
    overflow-y: auto;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 32px 32px 0;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #991b1b;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    color: #ffffff;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #e5e7eb;
    color: #374151;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.modal-body {
    padding: 0 32px 32px;
}

.modal-text {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

.modal-text p {
    margin-bottom: 16px;
}

/* Language Content */
.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}

/* Sticky Calculator Results on Desktop */
@media (min-width: 769px) {
    .calculator-left {
        position: sticky;
        top: 100px;
        height: fit-content;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        padding: 0 20px;
    }
    
    /* Show mobile menu button, hide nav */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-center {
        display: none;
    }
    
    .header-right {
        gap: 12px;
    }
    
    .header-right .lang-switcher,
    .header-right .header-btn {
        display: none; /* Hide on mobile, show in menu overlay */
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    /* Fix step process centering on mobile */
    .step-timeline {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        width: 100%;
    }
    
    .step-timeline::before {
        display: none;
    }
    
    .step-item {
        width: 100%;
        max-width: 280px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .step-circle {
        margin: 0 auto 20px;
    }
    
    .step-title {
        text-align: center;
        margin-bottom: 12px;
    }
    
    .step-desc {
        text-align: center;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
    }
    
    .calculator-left,
    .calculator-right {
        padding: 32px 20px;
    }
    
    .business-type-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .business-type-option {
        padding: 16px 8px;
    }
    
    .business-icon {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .business-label {
        font-size: 12px;
    }
    
    .pricing-toggle-container {
        padding: 20px 20px 15px;
    }
    
    .pricing-table-container {
        overflow-x: auto;
        border-radius: 16px;
        margin: 0 -20px;
    }
    
    .pricing-table {
        min-width: 800px;
    }
    
    .pricing-row {
        grid-template-columns: 200px repeat(4, 150px);
    }
    

    .pricing-cell-small {
        font-size: 11px;
    }
    
    .plan-card {
        padding: 24px 12px;
    }
    
    .plan-card h3 {
        font-size: 18px;
    }
    
    .plan-icon {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .plan-cta {
        padding: 10px 16px;
        font-size: 11px;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
    }
    
    .feature-name {
        padding-left: 12px;
        font-size: 12px;
    }
    
    .popular-badge {
        font-size: 9px;
        padding: 4px 12px;
    }
    
    .articles-scroll {
        padding-left: 20px;
    }
    
    .scroll-arrows {
        display: none;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #b91c1c, #991b1b);
    z-index: 1001;
    transition: width 0.1s ease;
}
/* Add this to your existing style.css file */

/* Number Info Popup Styles */
.number-info-trigger {
    position: relative;
    display: inline-block;
    margin-left: 8px;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}

.number-info-trigger:hover {
    opacity: 1;
}

.number-info-popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    margin-bottom: 10px;
}

.number-info-trigger:hover .number-info-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.number-info-header {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: white;
    padding: 16px;
    border-radius: 16px 16px 0 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.number-info-content {
    padding: 16px;
}

.number-info-content p {
    margin: 0 0 16px 0;
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 12px;
    color: #374151;
    transition: all 0.2s ease;
}

.country-item:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.country-item .flag {
    font-size: 14px;
}

.number-benefits {
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.number-benefits div {
    font-size: 12px;
    color: #10b981;
    font-weight: 500;
}

/* Mobile responsive for number info popup */
@media (max-width: 768px) {
    .number-info-popup {
        width: 280px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
    }
    
    .number-info-trigger {
        font-size: 14px;
        margin-left: 4px;
    }
}

/* Ensure popup appears above pricing table */
.pricing-cell {
    position: relative;
    overflow: visible;
}

/* Arrow pointing down from popup */
.number-info-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Marketplace Info Popup Styles */
.marketplace-info-trigger {
    position: relative;
    display: inline-block;
    margin-left: 0px;
    cursor: pointer;
    padding-top: 1px;
    font-size: 12px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}

.marketplace-info-trigger:hover {
    opacity: 1;
}

.marketplace-info-popup {
    position: absolute;
    bottom: 100%;
    left: 290%;
    transform: translateX(-50%);
    width: 360px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 999999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    margin-bottom: 5px;
}

.marketplace-info-trigger:hover .marketplace-info-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.marketplace-info-header {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: white;
    padding: 16px;
    border-radius: 16px 16px 0 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.marketplace-info-content {
    padding: 16px;
}

.marketplace-info-content p {
    margin: 0 0 16px 0;
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
}

.marketplace-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.marketplace-features div {
    font-size: 12px;
    color: #10b981;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.marketplace-costs {
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.cost-label {
    color: #6b7280;
    font-weight: 500;
}

.cost-value {
    color: #b91c1c;
    font-weight: 600;
}

/* Arrow pointing down from popup */
.marketplace-info-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Mobile responsive for marketplace info popup */
@media (max-width: 768px) {
    .marketplace-info-popup {
        width: 300px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .marketplace-info-trigger {
        font-size: 14px;
        margin-left: 4px;
    }
    
    .marketplace-features {
        gap: 4px;
    }
    
    .cost-item {
        font-size: 11px;
    }
}

/* Ensure popup appears above pricing table */
.pricing-cell {
    position: relative;
    overflow: visible;
}

/* JavaScript functions for showing/hiding popups */
.marketplace-info-popup.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/* ============================================
   INDUSTRY INSIGHTS SECTION - NEW CSS
   ============================================ */

.industry-insights-section {
    padding: 80px 20px;
    margin: 0 auto;
    position: relative;
    background: #991b1b;
}

/* Header Styles */
.insights-header {
  margin-bottom: 60px;
  text-align: center;
}

.header-content-industry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.insights-title {
  position: relative;
}

.title-main {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #fff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Controls Section */
.insights-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px 35px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Search Container */
.search-container {
  position: relative;
  min-width: 300px;
}

.search-input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border: none;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
  background: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 18px;
}

/* Filter Container */
.filter-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.filter-btn.active {
  background: white;
  color: #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* View Toggle */
.view-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.view-btn {
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: white;
  cursor: pointer;
  border-radius: 11px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.view-btn.active {
  background: white;
  color: #667eea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Insights Container */
.insights-container {
  display: grid;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
}

/* Hexagonal Grid Layout */
.insights-container.hex-view {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  justify-items: center;
}

.insights-container.list-view {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

/* Insight Cards */
.insight-card {
  width: 380px;
  height: 480px;
  perspective: 1000px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.insight-card.featured {
  width: 420px;
  height: 520px;
  order: -1;
}

.insight-card:hover {
  transform: translateY(-10px) scale(1.02);
  z-index: 10;
}

/* Card Inner */
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.insight-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* Card Faces */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;
}

.card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px 30px;
  justify-content: space-between;
}

/* Card Image */
.card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.insight-card:hover .card-image img {
  transform: scale(1.1);
}

/* Category Badge */
.category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.category-badge.ai {
  background: rgba(236, 72, 153, 0.9);
  color: white;
}

.category-badge.blockchain {
  background: rgba(59, 130, 246, 0.9);
  color: white;
}

.category-badge.cybersecurity {
  background: rgba(239, 68, 68, 0.9);
  color: white;
}

.category-badge.cloud {
  background: rgba(16, 185, 129, 0.9);
  color: white;
}

.category-badge.iot {
  background: rgba(245, 158, 11, 0.9);
  color: white;
}

/* Reading Time */
.reading-time {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

/* Card Content */
.card-content {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  line-height: 1.3;
}

.card-excerpt {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex: 1;
}

/* Card Meta */
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e7eb;
}

.author-name {
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.publish-date {
  color: #9ca3af;
  font-size: 13px;
}

/* Card Back Content */
.card-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.action-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.action-btn:hover::before {
  left: 100%;
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.read-btn {
  background: linear-gradient(45deg, #10b981, #059669);
  border: none;
}

/* Card Tags */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Engagement Stats */
.engagement-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.stat i {
  font-size: 16px;
}

/* Load More Button */
.load-more-container {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  min-width: 200px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.load-more-btn:active {
  transform: translateY(-1px);
}

.btn-text {
  transition: opacity 0.3s ease;
}

.btn-loader {
  position: absolute;
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.load-more-btn.loading .btn-text {
  opacity: 0;
}

.load-more-btn.loading .btn-loader {
  opacity: 1;
}

.loader-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: loadingDots 1.4s infinite ease-in-out;
}

.loader-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.loader-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes loadingDots {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* List View Styles */
.list-view .insight-card {
  width: 100%;
  height: 200px;
  margin-bottom: 25px;
}

.list-view .card-inner {
  flex-direction: row;
  transform: none !important;
}

.list-view .card-front {
  flex-direction: row;
}

.list-view .card-image {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
}

.list-view .card-content {
  padding: 25px 30px;
  text-align: left;
}

.list-view .card-back {
  display: none;
}

.list-view .insight-card:hover {
  transform: translateX(10px);
}

.list-view .insight-card:hover .card-inner {
  transform: none;
}

/* Animations */
.insight-card {
  animation: slideInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(50px);
}

.insight-card:nth-child(1) { animation-delay: 0.1s; }
.insight-card:nth-child(2) { animation-delay: 0.2s; }
.insight-card:nth-child(3) { animation-delay: 0.3s; }
.insight-card:nth-child(4) { animation-delay: 0.4s; }
.insight-card:nth-child(5) { animation-delay: 0.5s; }
.insight-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* No Results Message */
.no-results-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.8);
}

.no-results-message i {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.no-results-message h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.no-results-message p {
  font-size: 16px;
}

/* Share Modal */
.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.share-modal-content {
  background: white;
  border-radius: 20px;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.share-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
}

.share-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #1f2937;
}

.close-modal {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.2s ease;
}

.close-modal:hover {
  background: #f3f4f6;
  color: #374151;
}

.share-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.share-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  color: #374151;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-option:hover {
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.share-option i {
  font-size: 18px;
}

/* Hidden Elements */
.insight-card.hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .insights-container.hex-view {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  
  .insight-card,
  .insight-card.featured {
    width: 350px;
    height: 450px;
  }
}

@media (max-width: 768px) {
  .industry-insights-section {
    padding: 60px 15px;
  }
  
  .title-main {
    font-size: 2.5rem;
  }
  
  .insights-controls {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .search-container {
    min-width: 250px;
  }
  
  .filter-container {
    justify-content: center;
  }
  
  .insights-container.hex-view {
    grid-template-columns: 1fr;
  }
  
  .insight-card,
  .insight-card.featured {
    width: 100%;
    max-width: 350px;
    height: 420px;
  }
  
  .list-view .insight-card {
    height: auto;
  }
  
  .list-view .card-front {
    flex-direction: column;
  }
  
  .list-view .card-image {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .title-main {
    font-size: 2rem;
  }
  
  .search-container {
    min-width: 200px;
  }
  
  .filter-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
}

/* Focus States for Accessibility */
.filter-btn:focus,
.view-btn:focus,
.action-btn:focus,
.load-more-btn:focus {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.search-input:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Smooth Transitions */
.insights-container {
  transition: all 0.5s ease;
}

.insight-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Additional Footer Styles - Add these to your existing CSS */

.partner-stats {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #10b981;
    font-weight: 500;
}

.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
}

.contact-icon {
    color: #b91c1c;
    font-size: 14px;
    min-width: 18px;
}

.api-badge {
    display: inline-block;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 6px;
    vertical-align: middle;
}

.priority-support {
    background: rgba(185, 28, 28, 0.1);
    border: 1px solid rgba(185, 28, 28, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-top: 8px;
}

.priority-support .contact-info {
    margin-bottom: 6px;
}

.priority-support .contact-info:last-child {
    margin-bottom: 0;
}

/* Mobile responsive adjustments for new footer */
@media (max-width: 768px) {
    .partner-stats {
        margin-top: 12px;
    }
    
    .priority-support {
        padding: 10px;
        margin-top: 6px;
    }
    
    .contact-info {
        font-size: 12px;
        gap: 6px;
    }
    
    .stat-item {
        font-size: 12px;
    }
}