:root {
    --primary-color: #1B2D3D;
    --secondary-color: #0084B5;
    --accent-color: #0084B5;
    --text-color: #1B2D3D;
    --light-bg: #F8F9FA;
    --dark-bg: #1B2D3D;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 120px;
    width: auto;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%);
    padding: 0 5%;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/img/3.jpg') center/cover;
    opacity: 0.6;
    z-index: 0;
}

/* Enhanced Globe Container */
#globe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

#globe-container canvas {
    pointer-events: auto;
    filter: brightness(1.1) contrast(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    color: white;
    user-select: none;
}

.hero-content h1 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Trust Indicators */
.hero-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.cta-button.small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.cta-button.primary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 132, 181, 0.3);
}

.cta-button.secondary {
    background: #ffffff;
    color: #373737;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.primary:hover {
    background: #006a94;
    box-shadow: 0 6px 20px rgba(0, 132, 181, 0.4);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Pulse Animation for Primary CTA */
.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 132, 181, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 132, 181, 0.5), 0 0 0 10px rgba(0, 132, 181, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 132, 181, 0.3);
    }
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.overview-content .lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.overview-image .device-mockup {
    width: 100%;
    transition: transform 0.3s ease;
}

.overview-image .device-mockup:hover {
    transform: translateY(-10px);
}

.overview-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.overview-image img:hover {
    transform: none;
}

/* Solution Section - Modern Stripe-inspired Design */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.feature-showcase.reverse {
    direction: rtl;
}

.feature-showcase.reverse > * {
    direction: ltr;
}

.feature-content {
    max-width: 500px;
}

.feature-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 132, 181, 0.3);
}

.feature-content h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 500;
}

.feature-benefits li::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Device Mockups */
.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.device-mockup {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.device-mockup:hover {
    transform: translateY(-10px);
}

.device-mockup.desktop {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    padding: 0;
    border-radius: 12px;
    border: 1px solid #e1e5e9;
    overflow: hidden;
}

.device-mockup.desktop.enhanced {
    max-width: 750px;
    border: 2px solid #e1e5e9;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.08);
    background: #f8f9fa;
}

.device-mockup.desktop.enhanced::before {
    content: '';
    display: block;
    height: 45px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    position: relative;
}

.device-mockup.desktop.enhanced::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f56;
    box-shadow: 18px 0 0 #ffbd2e, 36px 0 0 #27ca3f;
}

.device-mockup.desktop::before {
    content: '';
    display: block;
    height: 40px;
    background: #f8f9fa;
    border-bottom: 1px solid #e1e5e9;
    position: relative;
}

.device-mockup.desktop::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
    box-shadow: 15px 0 0 #dee2e6, 30px 0 0 #dee2e6;
}

.device-mockup.tablet {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    padding: 0;
    border-radius: 16px;
    border: 1px solid #e1e5e9;
    overflow: hidden;
}

.device-mockup.tablet::before {
    content: '';
    display: block;
    height: 35px;
    background: #f8f9fa;
    border-bottom: 1px solid #e1e5e9;
    position: relative;
}

.device-mockup.tablet::after {
    content: '';
    position: absolute;
    top: 13px;
    left: 15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #dee2e6;
    box-shadow: 12px 0 0 #dee2e6, 24px 0 0 #dee2e6;
}

.device-mockup.mobile {
    width: 100%;
    max-width: 650px;
    background: #ffffff;
    padding: 0;
    border-radius: 20px;
    border: 1px solid #e1e5e9;
    overflow: hidden;
}

.device-mockup.mobile::before {
    content: '';
    display: block;
    height: 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #e1e5e9;
    position: relative;
}

.device-mockup.mobile::after {
    content: '';
    position: absolute;
    top: 11px;
    left: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #dee2e6;
    box-shadow: 10px 0 0 #dee2e6, 20px 0 0 #dee2e6;
}

.device-mockup img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.device-mockup.desktop img {
    border-radius: 0;
    margin-top: 0;
}

.device-mockup.tablet img,
.device-mockup.mobile img {
    border-radius: 0;
}

/* Responsive Design for Feature Sections */
@media (max-width: 1024px) {
    .feature-showcase {
        gap: 4rem;
    }
    
    .feature-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .feature-showcase.reverse {
        direction: ltr;
    }
    
    .feature-benefits {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .feature-content {
        max-width: 100%;
    }
    
    .feature-content h2 {
        font-size: 1.6rem;
    }
    
    .device-mockup.desktop {
        max-width: 100%;
    }
    
    .device-mockup.desktop.enhanced {
        max-width: 100%;
        border: 1px solid #e1e5e9;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .device-mockup.desktop.enhanced::before {
        height: 40px;
        background: #f8f9fa;
        border-bottom: 1px solid #e1e5e9;
    }
    
    .device-mockup.desktop.enhanced::after {
        top: 15px;
        left: 15px;
        width: 8px;
        height: 8px;
        box-shadow: 15px 0 0 #ffbd2e, 30px 0 0 #27ca3f;
    }
    
    .device-mockup.tablet {
        max-width: 450px;
    }
    
    .device-mockup.mobile {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .feature-benefits {
        gap: 0.75rem;
    }
    
    .feature-benefits li {
        font-size: 0.9rem;
    }
    
    .device-mockup.tablet {
        max-width: 380px;
    }
    
    .device-mockup.mobile {
        max-width: 500px;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Impact Section */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0 4rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 132, 181, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 132, 181, 0.1);
}

.impact-stat {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
}

.impact-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: 'Comfortaa', sans-serif;
}

.impact-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    background: #222;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.impact-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.impact-card:hover img {
    opacity: 0.5;
}

.impact-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(44,62,80,0.85) 70%, rgba(44,62,80,0.1) 100%);
    color: #fff;
    text-align: left;
    border-radius: 0 0 20px 20px;
}

.impact-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.impact-content p {
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.impact-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.impact-metrics span {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.impact-cta {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 0;
}

.impact-cta h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.impact-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.impact-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Demo Section */
.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-content {
    max-width: 500px;
    justify-self: end;
}

.demo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.demo-content p {
    color: #666;
    margin-bottom: 2rem;
}

/* Demo Form */
#demo-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#demo-form input,
#demo-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

#demo-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Demo Image */
.demo-image {
    justify-self: start;
    max-width: 550px;
    width: 100%;
}

.demo-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.demo-image img:hover {
    transform: translateY(-5px);
}

/* Demo Badge */
.demo-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #2ECC71);
    color: white;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

/* Overview CTA */
.overview-cta {
    margin-top: 2rem;
    text-align: center;
}

.cta-subtext {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Demo Trust Indicators */
.demo-trust {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.demo-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Backgrounds */
.parallax-section {
    position: relative;
    padding: 10px;
    overflow: hidden;
    background-color: var(--background-color);
}

.parallax-section:nth-child(even) {
    background: #ffffff;
}

.parallax-section:nth-child(odd) {
    background: #f8f9fa;
}

#overview {
    background-color: #ffffff;
}

#industries {
    background-color: #f8f9fa;
}

#route-analysis {
    background-color: #ffffff;
}

#intelligence-center {
    background-color: #f8f9fa;
}

#threat-profiles {
    background-color: #ffffff;
}

#impact {
    background-color: #f8f9fa;
}

#pricing {
    background-color: #ffffff;
}

#demo {
    background-color: #f8f9fa;
}

/* Content Wrappers */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

/* Section Headers */
.parallax-section h2 {
    font-family: 'Comfortaa', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.parallax-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--secondary-color), #2ECC71);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .parallax-section {
        padding: 8px;
    }
    
    .content-wrapper {
        padding: 0 8px;
    }
    
    .parallax-section h2 {
        font-size: 2rem;
    }
}

.route-analysis-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: rgba(44, 62, 80, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.route-analysis-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #2C3E50;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    flex-shrink: 0;
}

.route-analysis-step h4 {
    margin: 0 0 0.25rem 0;
    color: #2C3E50;
}

.route-analysis-step p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.risk-calculation-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.risk-process {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    margin-bottom: 1rem;
}

.step-details {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.step-details li {
    background: rgba(44, 62, 80, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.risk-visualization {
    position: sticky;
    top: 100px;
}

.visualization-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.visualization-card h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.risk-factors {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.risk-factor {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.factor-label {
    font-size: 0.9rem;
    color: #666;
}

.factor-bar {
    height: 8px;
    background: rgba(44, 62, 80, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.factor-fill {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

@media (max-width: 1024px) {
    .risk-calculation-container {
        grid-template-columns: 1fr;
    }
    
    .risk-visualization {
        position: static;
    }
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-details {
        justify-content: center;
    }
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    font-family: 'Comfortaa', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-logo {
    height: 130px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.social-icon {
    width: 45px;
    height: 45px;
    margin-right: 8px;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 1rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--secondary-color);
}

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

.pricing-card h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.price span {
    font-size: 1rem;
    color: #777;
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    padding: 0 0.5rem;
}

.pricing-card li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    color: #555;
}

.pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.pricing-card .cta-button {
    margin-top: 1rem;
    width: 100%;
    background: var(--secondary-color);
    color: white;
}

.pricing-card .cta-button:hover {
    background: #006a94;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.no-shadow {
    box-shadow: none !important;
}

/* Pricing Table */
.pricing-table-container {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
    padding: 1rem 0;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table th {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table th.featured {
    background: var(--secondary-color);
    color: white;
}

.pricing-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    background: white;
    vertical-align: middle;
    line-height: 1.4;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: #f8f9fa;
    width: 180px;
}

.pricing-table .price-row td {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 1.5rem 1rem;
}

.pricing-table .featured .price-row td {
    color: var(--secondary-color);
}

.pricing-table .check {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-table td .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    width: auto;
    min-width: 120px;
}

.pricing-table td .cta-button.featured {
    background: var(--secondary-color);
}

.pricing-table .org-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.pricing-table .org-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.pricing-table td.featured {
    background: rgba(0, 132, 181, 0.05);
    border-left: 2px solid var(--secondary-color);
    border-right: 2px solid var(--secondary-color);
}

.pricing-table tr:last-child td.featured {
    border-radius: 0 0 8px 8px;
    border-bottom: 2px solid var(--secondary-color);
}

.best-choice {
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    border-radius: 12px;
    position: absolute;
    top: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .best-choice {
        font-size: 0.7rem;
        padding: 0.25rem 0.8rem;
        top: -0.7rem;
    }
}

@media (max-width: 992px) {
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table td:first-child {
        width: 140px;
    }
    
    .pricing-table .price-row td {
        font-size: 1.1rem;
    }
    
    .pricing-table td .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .pricing-table-container {
        margin: 1rem -10px;
        width: calc(100% + 20px);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table {
        font-size: 0.85rem;
        min-width: 800px;
    }
    
    .pricing-table td:first-child {
        width: 120px;
    }
    
    .pricing-table td {
        padding: 1rem 0.8rem;
    }
    
    .pricing-table .price-row td {
        font-size: 1rem;
        padding: 1.2rem 0.8rem;
    }
    
    .pricing-table td .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        min-width: 90px;
    }
}

/* Responsive Design */
@media (max-width: 1280px) {
    .impact-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .demo-grid {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 2rem 0 3rem 0;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-cta {
        padding: 2rem 1.5rem;
    }
    
    .impact-cta h3 {
        font-size: 1.8rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .overview-content {
        order: 1;
    }
    
    .overview-image {
        order: 0;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .overview-stats {
        grid-template-columns: repeat(3, 1fr);
        margin: 2rem auto 0;
        max-width: 600px;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .demo-content, .demo-image {
        justify-self: center;
        max-width: 600px;
        width: 100%;
    }
    
    .demo-content {
        text-align: center;
    }
    
    #demo-form {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }
    
    .impact-stat {
        padding: 0.5rem;
    }
    
    .impact-number {
        font-size: 1.8rem;
    }
    
    .impact-label {
        font-size: 0.8rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-card {
        min-height: 400px;
    }
    
    .impact-badge {
        top: 1rem;
        left: 1rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .impact-content {
        padding: 1.5rem 1rem 1rem 1rem;
    }
    
    .impact-content h3 {
        font-size: 1.2rem;
    }
    
    .impact-content p {
        font-size: 0.9rem;
    }
    
    .impact-metrics {
        gap: 0.5rem;
    }
    
    .impact-metrics span {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .impact-cta {
        padding: 1.5rem;
        margin-bottom: 0;
    }
    
    .impact-cta h3 {
        font-size: 1.6rem;
    }
    
    .impact-cta p {
        font-size: 1rem;
    }
    
    .impact-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .overview-content h2 {
        font-size: 2rem;
    }
    
    .overview-content .lead {
        font-size: 1rem;
    }
    
    .overview-image {
        max-width: 100%;
    }
    
    .overview-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .navbar {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }
    
    .logo-image {
        height: 100px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }
    
    .parallax-section {
        padding: 8px;
    }
    
    .demo-content h2 {
        font-size: 2rem;
    }
    
    .demo-content, .demo-image {
        max-width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .demo-trust {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .demo-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 576px) {
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .impact-stat {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
        border: 1px solid rgba(0, 132, 181, 0.1);
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .impact-card {
        min-height: 350px;
    }
    
    .impact-cta {
        padding: 1.5rem 1rem;
    }
    
    .impact-cta h3 {
        font-size: 1.4rem;
    }
    
    .overview-grid {
        gap: 2rem;
    }
    
    .overview-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .overview-content .lead {
        margin-bottom: 1.5rem;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 300px;
        margin: 2rem auto 0;
    }
    
    .stat-item {
        padding: 1rem;
        background: rgba(39, 174, 96, 0.05);
        border-radius: 8px;
    }
    
    .overview-cta {
        margin-top: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .demo-content h2 {
        font-size: 1.8rem;
    }
}

/* Three Clicks Away Section */
.three-clicks-cta {
    margin-top: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 132, 181, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 132, 181, 0.1);
    text-align: center;
}

.three-clicks-cta .cta-button {
    margin-bottom: 0.75rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(0, 132, 181, 0.3);
}

.three-clicks-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 132, 181, 0.4);
}

.three-clicks-cta .cta-subtext {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-style: normal;
}

@media (max-width: 768px) {
    .three-clicks-cta {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .three-clicks-cta .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Industries Section */
.industries-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.industries-content h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.industry-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 132, 181, 0.1);
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.industry-item:hover .industry-icon {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.industry-item h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.industry-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .industry-item {
        padding: 1.5rem 1rem;
    }
    
    .industry-icon {
        font-size: 2.5rem;
    }
    
    .industry-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .industries-content h2 {
        font-size: 2rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .industry-item {
        padding: 1.5rem 1rem;
    }
    
    .industry-icon {
        font-size: 2.5rem;
    }
    
    .industry-item h3 {
        font-size: 1.1rem;
    }
    
    .industry-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .industries-content h2 {
        font-size: 1.8rem;
    }
    
    .industries-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .industry-item {
        padding: 1.25rem 0.75rem;
    }
    
    .industry-icon {
        font-size: 2rem;
    }
    
    .industry-item h3 {
        font-size: 1rem;
    }
    
    .industry-item p {
        font-size: 0.85rem;
    }
}

/* Partners Section */
#partners.parallax-section {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem 10px;
    margin: 0;
}

.partners-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.partners-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.partners-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.partners-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1rem 0;
}

.partner-item {
    flex: 0 1 auto;
    max-width: 200px;
}

.partner-logo {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

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

@media (max-width: 768px) {
    #partners.parallax-section {
        padding: 2rem 8px;
        margin: 0;
    }

    .partners-intro h2 {
        font-size: 1.8rem;
    }

    .partners-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .partner-item {
        max-width: 150px;
    }
}

#pricing.parallax-section {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.custom-solution-box {
    text-align: center;
    margin: 2rem 0 0 0;
    padding: 2rem;
    background: rgba(27, 45, 61, 0.05);
    border-radius: 12px;
}

.custom-solution-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Comfortaa', sans-serif;
}

.custom-solution-box p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    #pricing.parallax-section {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .custom-solution-box {
        margin: 1.5rem 0 0 0;
        padding: 1.5rem;
    }
}

#impact.parallax-section {
    padding-bottom: 0;
}

@media (max-width: 768px) {
    #impact.parallax-section {
        padding-bottom: 0;
    }
}

/* Value Proposition */
.value-proposition {
    max-width: 800px;
    margin: 1.5rem auto 2.5rem;
    text-align: left;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(0, 132, 181, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 132, 181, 0.1);
}

.value-proposition h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.value-proposition p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.value-impacts {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}

.value-impacts li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.4;
}

.value-impacts li::before {
    content: "•";
    position: absolute;
    left: 0.25rem;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.value-solution {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.25rem;
    border-radius: 8px;
}

.value-solution p {
    margin-bottom: 1rem;
}

.value-solution strong {
    color: var(--secondary-color);
}

.study-citation {
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.study-citation em {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.study-citation span {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.75rem;
}

.source-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.source-link:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.source-link::after {
    content: "→";
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.source-link:hover::after {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .value-proposition {
        padding: 1.25rem;
        margin: 1rem auto 1.5rem;
    }

    .value-proposition h3 {
        font-size: 1.4rem;
    }

    .value-proposition p,
    .value-impacts li {
        font-size: 0.95rem;
    }

    .value-solution {
        padding: 1rem;
    }

    .study-citation em {
        font-size: 0.95rem;
    }
} 