@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #0F2934;
    background: #F8F5EE;
    overflow-x: hidden;
}

/* Typography - New Atten Font Family */
@font-face {
    font-family: 'New Atten';
    src: url('../fonts/attennewregular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Custom font fallbacks for Raleway */
h1, h2, h3, .hero-title, .section-header h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

h4, h5, h6, .subheader {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

.paragraph, p, body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

.analogue-italic {
    font-family: 'Analogue', 'Georgia', serif;
    font-style: italic;
}

/* Brand Colors */
:root {
    --primary-red: #F05844;
    --primary-yellow: #F8B73B;
    --primary-blue: #2B6B9A;
    --primary-green: #52A061;
    --neutral-white: #FFFFFF;
    --neutral-dark-brown: #401D20;
    --neutral-dark-blue: #000000;
    --neutral-dark-green: #123423;
    --neutral-gray-dark: #000000;
    --neutral-gray-light: #AFBFB0;
    --neutral-off-white: #F1F2F1;
    --neutral-beige-light: #DBD5D1;
    --neutral-beige: #C4B6A6;
    --neutral-cream: #F0EADE;
    --neutral-light-gray: #F8F5EE;
    --neutral-black: #000000;
}

/* Text Links Styling - Primary Blue and Bold */
a:not(.nav-link):not(.btn-primary):not(.btn-secondary):not(.social-link):not(.social-link-overlay):not(.social-links-contact a):not(.footer-section a):not(.footer-links a):not(.navbar-brand):not(.read-more):not(.share-btn):not(.author-social-link):not(.related-article):not(.toc-link):not(.source-link):not(.btn-contact-submit):not(.btn-cta-highlight):not(.action-btn):not(.tab-button):not(.filter-tag):not(.article-tag):not(.post-tags .tag) {
    color: var(--primary-blue) !important;
    font-weight: bold !important;
    text-decoration: none;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    padding: 0;
}

/* Scroll offset for anchor links to account for fixed navbar */
html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 100px;
}

#solution,
#how-it-works,
#demo,
#problem {
    scroll-margin-top: 100px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
}

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

.logo-svg {
    height: 40px;
    width: auto;
    max-width: 160px;
}

.nav-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.feature-check-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    position: relative;
    border-radius: 50%;
    background-color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
}
.feature-check-icon--inner {
    margin-bottom: 2px;
    --size: 10px;
    --thickness: 2px;
    --color: #f2f6f4;
    width: calc(var(--size) * 0.55);
    height: var(--size);
    border-right: var(--thickness) solid var(--color);
    border-bottom: var(--thickness) solid var(--color);
    transform: rotate(45deg);
    display: inline-block;
    box-sizing: border-box;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: var(--neutral-off-white);
    color: var(--primary-green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    padding-left: 40px;
}

/* Mobile navbar collapse background fix */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--primary-blue) !important;
        padding: 20px !important;
        margin-top: 10px !important;
        border-radius: 4px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid var(--primary-blue) !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        width: 100% !important;
    }
    
    /* Ensure background stays when menu is shown/expanded */
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        background: var(--primary-blue) !important;
        padding: 20px !important;
        margin-top: 10px !important;
        border-radius: 4px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid var(--primary-blue) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }
    
    .navbar-nav {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        position: relative;
    }
    
    .navbar-nav .nav-link {
        color: white !important;
        font-weight: bold !important;
        font-size: 16px !important;
        padding: 8px 0 !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .navbar-nav .nav-link:hover {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .nav-actions {
        width: 100% !important;
        justify-content: flex-start !important;
        margin-top: 10px !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .nav-actions .btn-primary {
        background: white !important;
        color: var(--primary-blue) !important;
        border: 1px solid white !important;
        min-height: 44px !important;
        padding: 12px 24px !important;
        font-weight: 600 !important;
    }
    
    .nav-actions .btn-primary:hover {
        background: var(--primary-green) !important;
        color: white !important;
        border: 1px solid var(--primary-green) !important;
    }
}

/* Mobile burger menu icon styling */
@media (max-width: 991.98px) {
    .navbar-toggler {
        border: 2px solid var(--primary-blue) !important;
        border-radius: 4px !important;
        padding: 6px 8px !important;
        min-height: 44px !important;
        min-width: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(43, 107, 154, 0.25) !important;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        width: 20px !important;
        height: 20px !important;
    }
}

.search-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666;
    font-size: 16px;
}

.search-btn:hover {
    color: var(--primary-green);
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
}

.btn-primary {
    background: #2B6B9A;
    color: var(--neutral-white);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-green);
    color: var(--neutral-white);
    border: 1px solid var(--primary-green);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--neutral-white);
    border: 1px solid var(--primary-green);
}

.btn-primary.large, .btn-secondary.large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

/* Top Banner */
.top-banner {
    background: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 8px 0;
    margin-top: 85px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 999;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hide top banner on mobile to prevent text wrapping */
@media (max-width: 768px) {
    .top-banner {
        display: none;
    }

    /* Add padding to first sections when banner is hidden to account for fixed navbar */
    .hero,
    .about-hero-image,
    .featured-article-section,
    .contact-section {
        padding-top: 110px !important;
    }
}

/* Mobile-only: Left align top banner text */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    /* Mobile-only: Ensure consistent font sizes for all section headers */
    .solution-header h2 {
        font-size: 2.5rem !important;
    }
    
    .how-it-works .section-header h2 {
        font-size: 2.5rem !important;
    }
    
    .how-it-works .solution-header h2 {
        font-size: 2.5rem !important;
    }
    
    .about-teaser-section h2 {
        font-size: 2.5rem !important;
    }
    
    .about-teaser-text h2 {
        font-size: 2.5rem !important;
    }
    
    /* Ensure problem section header matches other sections */
    #problem .section-header h2,
    #problem .section-header-title h2 {
        font-size: 2.5rem !important;
    }
    
    /* Ensure solution section header consistency */
    #solution .solution-header h2,
    #solution .section-header h2 {
        font-size: 2.5rem !important;
    }
    
    /* Hero section header mobile font size - Match solution header size */
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    /* Mobile-only: Match about section title to hero title font size */
    .about-section-title {
        font-size: 2.5rem !important;
    }
    
    /* Mobile-only: Match contact page h1 to hero title font size */
    .contact-content-area h1 {
        font-size: 2.5rem !important;
    }
    
    /* Mobile-only: Match about page section headers to hero title font size */
    .team-header-card h3 {
        font-size: 2.5rem !important;
    }
    
    .about-text-content h3 {
        font-size: 2.5rem !important;
    }
    
    /* Mobile-only: Match contact page section headers to hero title font size */
    .map-header h2 {
        font-size: 2.5rem !important;
    }
    
    .contact-form-container h2 {
        font-size: 2.5rem !important;
    }
    
    .banner-content {
        justify-content: flex-start;
    }
}

/* Mobile-only: Left align CTA banner text and buttons */
@media (max-width: 768px) {
    .cta-personal {
        text-align: left;
    }
    
    .cta-message {
        text-align: left;
    }
    
    .cta-message h2 {
        text-align: left;
    }
    
    .cta-message p {
        text-align: left;
    }
    
    .cta-actions {
        justify-content: flex-start !important;
        margin-left: 0 !important;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        text-align: left;
        justify-content: flex-start;
    }
}

.banner-text {
    color: white;
    font-size: 14px;
    font-weight: 400;
}

.banner-arrow {
    color: white;
    font-size: 12px;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0px); opacity: 1; }
    50% { transform: translateX(3px); opacity: 0.8; }
}

.banner-cta {
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Alert Banner */
.alert-banner {
    background: var(--primary-green);
    color: white;
    text-align: center;
    padding: 8px 0;
    margin-top: 70px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    padding: 55px 0;
    background: #F8F5EE;
    position: relative;
    overflow: hidden;
}

/* Client Logos Section */
.client-logos {
    width: 100%;
    grid-column: 1 / -1;
    padding: 25px 0;
    overflow: hidden;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.logos-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 80px;
    animation: scrollLogos 160s linear infinite;
    width: max-content;
    min-width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

.client-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.8;
    filter: grayscale(80%);
    transition: all 0.3s ease;
    max-width: 200px;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-300%);
    }
}

/* Client Logos Responsive Design */
@media (max-width: 1200px) {
    .client-logos {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 35px 0;
    }
    
    .logos-track {
        gap: 70px;
        min-width: 100vw;
        padding: 0 35px;
    }
    
    .client-logo {
        height: 65px;
        max-width: 180px;
    }
}

@media (max-width: 1024px) {
    .client-logos {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .logos-track {
        gap: 60px;
        min-width: 100vw;
        padding: 0 30px;
    }
    
    .client-logo {
        height: 60px;
        max-width: 160px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .client-logos {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 25px 0;
    }
    
    .logos-track {
        gap: 50px;
        animation-duration: 25s;
        min-width: 100vw;
        padding: 0 25px;
    }
    
    .client-logo {
        height: 55px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .client-logos {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 20px 0;
    }
    
    .logos-track {
        gap: 40px;
        animation-duration: 20s;
        min-width: 100vw;
        padding: 0 20px;
    }
    
    .client-logo {
        height: 50px;
        max-width: 120px;
    }
}

@media (max-width: 320px) {
    .client-logos {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 15px 0 0 0;
    }
    
    .logos-track {
        gap: 35px;
        animation-duration: 18s;
        min-width: 100vw;
        padding: 0 15px;
    }
    
    .client-logo {
        height: 45px;
        max-width: 100px;
    }
}

/* Ensure client logos work on very wide screens */
@media (min-width: 1920px) {
    .logos-track {
        gap: 100px;
        padding: 0 60px;
    }
    
    .client-logo {
        height: 80px;
        max-width: 240px;
    }
}

/* Fix for potential horizontal scroll issues */
@media (max-width: 100vw) {
    .client-logos {
        max-width: 100vw;
        overflow-x: hidden;
    }
}



/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #F8F5EE;
}

/* Wide Image Section */
.wide-image-section {
    padding: 0;
    background: #F8F5EE;
    overflow: hidden;
}

.wide-image-container {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wide-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Wide Image Responsive Design */
@media (max-width: 768px) {
    .wide-image-container {
        max-height: 250px;
    }
    
    .wide-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .wide-image-container {
        max-height: 200px;
    }
    
    .wide-image {
        height: 200px;
    }
}

.benefits .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits .section-header h2 {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
    line-height: 1.2;
}

.benefits .section-header h2::after {
    display: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
}

.benefit-box {
    background: #DBD5D1;
    border: 1px solid #DBD5D1;
    border-radius: 4px;
    padding: 40px;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-content-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-highlight {
    font-size: 4rem;
    font-weight: 300;
    color: #000;
    font-family: 'Raleway', sans-serif;
    line-height: 1;
    margin-bottom: 32px;
    display: inline-block;
}

.stat-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(0,0,0,0.85);
    margin: 0;
    text-align: left;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

.source-citation {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(0,0,0,0.6);
    margin: 0;
    text-align: left;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-style: italic;
    align-self: flex-start;
}

/* Benefits Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .benefit-item {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .benefit-box {
        aspect-ratio: 1.2;
        min-height: 180px;
    }
    
    .benefit-box h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 60px 0;
    }
    
    .benefits .section-header h2 {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        gap: 40px;
    }
    
    .benefit-box {
        padding: 30px 20px;
        min-height: 160px;
        aspect-ratio: 1.3;
    }
    
    .benefit-box h3 {
        font-size: 1.4rem;
    }
    
    .benefit-description p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .benefits .section-header h2 {
        font-size: 2rem;
    }
    
    .benefit-box {
        min-height: 140px;
        aspect-ratio: 1.4;
    }
    
    .benefit-box h3 {
        font-size: 1.2rem;
    }
    
    .benefit-description p {
        font-size: 14px;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0 0 0;
    margin-top: 0;
    text-align: left;
}

.hero-tag {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    color: #000;
    margin-bottom: 36px;
}

.hero-description {
    font-size: 18px;
    color:  #000;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-subtitle {
    font-size: 16px;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Visual - Claims Analysis Demo */
.hero-visual {
    position: relative;
    z-index: 10;
}

/* Browser Tabs Styling */
.browser-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 0;
}

.tab {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 9px;
    background: #f8f9fa;
    border-radius: 6px 6px 0 0;
    font-size: 8px;
    color: #6c757d;
    border: 1px solid #dee2e6;
    border-bottom: none;
    min-width: 90px;
    max-width: 135px;
}

.tab.active {
    background: transparent;
    color: white;
    font-weight: bold;
    border-color: transparent;
}

.tab-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.model-container {
    position: relative;
    overflow: hidden;
}

/* Model Container */
.model-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    overflow: visible;
}

.model-image {
    width: 240px;
    height: 320px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    margin-left: 16px;
}

/* Analysis Overlay */
.analysis-overlay {
    position: absolute;
    top: 24px;
    right: 56px;
    width: 208px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    padding: 12px;
    z-index: 10;
    border: 1px solid white;
}


.analysis-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
}

.analysis-header h4 {
    font-size: 16px;
    font-weight: 500;
    color: rgba(51, 51, 51, 0.3);
    margin: 0;
}


.description-text {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(51, 51, 51, 0.3);
    margin-bottom: 20px;
}

.description-text p {
    margin-bottom: 16px;
}

/* Highlighted Text */
.highlight {
    position: relative;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.highlight.critical {
    background: #F05844;
    color: white;
    animation: criticalPulse 2s ease-in-out infinite;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

.highlight.medium {
    background: #F8B73B;
    color: white;
    animation: mediumPulse 2.5s ease-in-out infinite;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

.highlight.good {
    background: var(--primary-green);
    color: white;
    animation: goodPulse 2.5s ease-in-out infinite;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

@keyframes criticalPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(240, 88, 68, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(240, 88, 68, 0);
    }
}

@keyframes mediumPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(248, 183, 59, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(248, 183, 59, 0);
    }
}

@keyframes goodPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(82, 160, 97, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(82, 160, 97, 0);
    }
}

/* Risk Callouts */
.risk-callout {
    position: absolute;
    z-index: 15;
    opacity: 0;
    animation: calloutAppear 0.8s ease-out 1s forwards;
}

@keyframes calloutAppear {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.callout-content {
    background: transparent;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
    position: relative;
    transition: border-color 0.3s ease;
}

.critical-callout .callout-content,
.critical-callout-2 .callout-content {
    border-color: #F05844;
}

.critical-callout .callout-arrow {
    border-color: transparent #F05844 transparent transparent;
}

.critical-callout-2 .callout-arrow {
    border-color: transparent transparent transparent #F05844;
}

.medium-callout .callout-content {
    border-color: #F8B73B;
}

.medium-callout .callout-arrow {
    border-color: transparent transparent #F8B73B transparent;
}

.medium-callout-2 .callout-content {
    border-color: #F8B73B;
}

.medium-callout-2 .callout-arrow {
    border-color: transparent #F8B73B transparent transparent;
}

.good-callout .callout-content {
    border-color: var(--primary-green);
}

.risk-badge.good {
    background: var(--primary-green);
    color: white;
}

.good-callout {
    bottom: 16px;
    right: 0;
    animation-delay: 2.4s;
}

.good-callout .callout-arrow {
    top: -3px;
    left: 10px;
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent var(--primary-green) transparent;
}

.callout-header {
    margin-bottom: 6px;
}

.risk-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.risk-badge.critical {
    background: #F05844;
    color: white;
}

.risk-badge.medium {
    background: #F8B73B;
    color: white;
}

.callout-content p {
    font-size: 12px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.callout-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    transition: border-color 0.3s ease;
}

/* Callout Positioning */
.critical-callout {
    top: 70px;
    right: -72px;
    animation-delay: 1.2s;
}

.critical-callout .callout-arrow {
    top: 9px;
    left: -6px;
    border-width: 6px 6px 6px 0;
    border-color: transparent #F05844 transparent transparent;
}

.critical-callout-2 {
    top: 143px;
    left: -50px;
    animation-delay: 1.6s;
}

.critical-callout-2 .callout-arrow {
    top: 10px;
    right: -6px;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent #F05844;
}

.medium-callout {
    bottom: -60px;
    left: calc(40% - 60px);
    transform: translateX(-50%);
    animation-delay: 2s;
}

.medium-callout .callout-arrow {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #F8B73B transparent;
}

.medium-callout-2 {
    bottom: 80px;
    right: -200px;
    animation-delay: 2.4s;
}

.medium-callout-2 .callout-arrow {
    top: 20px;
    left: -8px;
    border-width: 8px 8px 8px 0;
    border-color: transparent #F8B73B transparent transparent;
}


@keyframes summarySlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
}

.summary-header i {
    font-size: 16px;
    display: none;
}

.date-updated {
    font-size: 10px;
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    background: var(--primary-green);
    padding: 3px 6px;
    border-radius: 8px;
    border: 1px solid var(--primary-green);
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-count {
    font-size: 24px;
    font-weight: 700;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-item.critical .stat-count {
    color: #F05844;
}

.stat-item.medium .stat-count {
    color: #F8B73B;
}

.stat-item.critical .stat-label {
    color: #F05844;
}

.stat-item.medium .stat-label {
    color: #F8B73B;
}

/* New Stat Items Styles */
.stat-item-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    padding: 0 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item-new:last-child {
    border-right: none;
}

.stat-number {
    font-size: 46px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
}

.stat-text {
    font-size: 10px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    line-height: 1.2 !important;
}

.dashboard-mockup {
    position: relative;
    width: 100%;
    height: 408px;
}

/* T-shirt Product Analysis */
.product-analysis {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 380px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 18px;
    z-index: 3;
}

.tshirt-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.tshirt-image {
    width: 120px;
    height: 140px;
    margin-bottom: 20px;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;
}

.sustainability-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.tag.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.tag.verified {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.tag i {
    font-size: 10px;
}

/* Analytics Panel */
.analytics-panel {
    position: absolute;
    top: 60px;
    left: -20px;
    width: 280px;
    height: 240px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 2;
}

.panel-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.metric-label {
    display: block;
    font-size: 11px;
    color: #666;
    margin-top: 4px;
}

.risk-breakdown {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.risk-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.risk-count {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.risk-percentage {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b6b;
}

.risk-label {
    font-size: 10px;
    color: #666;
}

/* Compliance Report */
.compliance-report {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 320px;
    height: 190px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 22px;
    z-index: 1;
}

.report-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.compliance-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #666;
}

.item-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.item-icon.risk {
    background: #ff6b6b;
}

.item-icon.verified {
    background: #4CAF50;
}

/* Performance Chart */
.performance-chart {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 200px;
    height: 80px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.chart-container {
    width: 100%;
    height: 100%;
}

.chart {
    width: 100%;
    height: 100%;
}

/* Visual Analyzer Results Box */
.analyzer-results-box {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e5e5;
    padding: 16px;
    z-index: 4;
    opacity: 0;
    animation: resultsSlideUp 1s ease-out 2s forwards;
}

@keyframes resultsSlideUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.results-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-green), var(--neutral-dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.results-icon i {
    color: white;
    font-size: 14px;
}

.results-info {
    flex: 1;
    margin-left: 12px;
}

.results-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
}

.results-info span {
    font-size: 12px;
    color: rgba(0,0,0,0.7);
}

.results-status {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #d4edda;
    color: #155724;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid #c3e6cb;
}

.results-status .status-dot {
    width: 6px;
    height: 6px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.results-status.active .status-dot {
    animation: pulse-dot 2s ease-in-out infinite;
}

.results-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.result-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-height: 50px;
}

.result-stat.critical {
    background: #F05844;
    border: 1px solid #F05844;
}

.result-stat.medium {
    background: #F8B73B;
    border: 1px solid #F8B73B;
}

.result-stat.good {
    background: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.result-stat.total {
    background: #333333;
    border: 1px solid #333333;
}

.result-stat:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-stat .stat-number {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    min-width: 20px;
    text-align: center;
    color: white;
}

.result-stat .stat-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    color: white;
}

.stat-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.action-note {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-align: right;
}

.action-buttons {
    display: flex;
    gap: 4px;
}

.action-btn {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 10px;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.action-btn.solve:hover {
    background: #4CAF50;
}

.action-btn.assign:hover {
    background: #2196F3;
}

.action-btn.ignore:hover {
    background: #757575;
}

.action-btn.verified {
    background: rgba(255, 255, 255, 0.3);
    cursor: default;
}

.action-btn.verified:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: none;
}

.action-btn.share:hover {
    background: #2196F3;
}

.action-btn.export:hover {
    background: #FF9800;
}

.action-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.results-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.scan-time {
    font-size: 11px;
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.compliance-score {
    display: flex;
    align-items: center;
    gap: 6px;
}

.score-label {
    font-size: 11px;
    color: rgba(0,0,0,0.7);
    font-weight: 500;
}

.score-value {
    font-size: 14px;
    font-weight: 700;
    color: #F05844;
    padding: 2px 6px;
    background: rgba(240, 88, 68, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(240, 88, 68, 0.2);
}

/* Highlights Section */
.highlights {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.highlights-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.highlights-image {
    position: relative;
    margin-left: -120px;
    z-index: 1;
}

.portrait-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.portrait-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.highlights-text {
    padding-left: 40px;
    position: relative;
    z-index: 2;
}

.highlights-text h2 {
    font-size: 3.2rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlights-text p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0,0,0,0.85);
    margin-bottom: 40px;
}

.highlights-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-feature i {
    color: var(--primary-green);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-feature span {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0,0,0,0.85);
}

/* Image Extension Effect */
.highlights-image::before {
    content: '';
    position: absolute;
    top: -80px;
    bottom: -80px;
    left: -50px;
    right: -50px;
    background: linear-gradient(135deg, rgba(82, 160, 97, 0.05) 0%, transparent 50%);
    border-radius: 4px;
    z-index: -1;
}

/* Highlights Responsive Design */
@media (max-width: 1200px) {
    .highlights-content {
        grid-template-columns: 450px 1fr;
        gap: 60px;
    }
    
    .portrait-image {
        width: 500px;
        height: 650px;
    }
    
    .highlights-image {
        margin-left: -80px;
    }
}

@media (max-width: 1024px) {
    .highlights-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .highlights-image {
        margin-left: 0;
        display: flex;
        justify-content: center;
    }
    
    .portrait-image {
        width: 400px;
        height: 500px;
    }
    
    .highlights-text {
        padding-left: 0;
    }
    
    .highlights-text h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .highlights {
        padding: 60px 0;
    }
    
    .portrait-image {
        width: 350px;
        height: 450px;
    }
    
    .highlights-text h2 {
        font-size: 2.4rem;
    }
    
    .highlights-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .portrait-image {
        width: 300px;
        height: 400px;
    }
    
    .highlights-text h2 {
        font-size: 2rem;
    }
    
    .highlight-feature span {
        font-size: 15px;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 55px 0;
    background: #F8F5EE;
    position: relative;
    overflow: hidden;
}

.section-header {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: end;
    text-align: left;
    margin-bottom: 80px;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.2;
    align-self: start;
}

.section-header h2::after {
    display: none;
}

.section-header p {
    font-size: 18px;
    color: rgba(0,0,0,0.95);
    margin: 0;
    line-height: 1.7;
    text-align: left;
    align-self: start;
}

.steps-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Interactive Process Flow Container */
.process-flow-container {
    margin: 80px 0;
    position: relative;
}

/* Process Flow Visual */
.process-flow-visual {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual Flow Step */
.flow-step {
    display: grid;
    grid-template-columns: 300px 1fr 100px;
    gap: 40px;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: flowStepAppear 0.8s ease-out forwards;
}

.flow-step[data-step="1"] { animation-delay: 0.2s; }
.flow-step[data-step="2"] { animation-delay: 0.4s; }
.flow-step[data-step="3"] { animation-delay: 0.6s; }
.flow-step[data-step="4"] { animation-delay: 0.8s; }

@keyframes flowStepAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alternate layout for even steps */
.flow-step[data-step="2"],
.flow-step[data-step="4"] {
    grid-template-columns: 100px 1fr 300px;
}

.flow-step[data-step="2"] .step-visual-container,
.flow-step[data-step="4"] .step-visual-container {
    order: 3;
}

.flow-step[data-step="2"] .step-content,
.flow-step[data-step="4"] .step-content {
    order: 2;
    text-align: right;
}

.flow-step[data-step="2"] .flow-connector,
.flow-step[data-step="4"] .flow-connector {
    order: 1;
    transform: scaleX(-1);
}

/* Step Visual Container */
.step-visual-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-visual-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

/* Step Number Circle */
.step-number-circle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(82, 160, 97, 0.3);
    z-index: 2;
}

/* Step Icon Visual */
.step-icon-visual {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--neutral-dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: iconPulse 3s ease-in-out infinite;
}

.step-icon-visual i {
    font-size: 24px;
    color: white;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(82, 160, 97, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(82, 160, 97, 0);
    }
}

/* Step Visual Demos */
.step-visual-demo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Website Mockup for Step 1 */
.website-mockup {
    width: 200px;
    height: 100px;
    background: #f8f9fa;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    position: relative;
    background: transparent;
}

.scan-lines {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(82, 160, 97, 0.3), transparent);
    animation: scanAnimation 2s ease-in-out infinite;
}

@keyframes scanAnimation {
    0% { left: -100%; }
    100% { left: 100%; }
}

.product-items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 15px;
}

.product-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: productPulse 1.5s ease-in-out infinite;
}

.product-dot:nth-child(1) { animation-delay: 0s; }
.product-dot:nth-child(2) { animation-delay: 0.3s; }
.product-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes productPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Detection Mockup for Step 2 */
.detection-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.alert-popup {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #F05844;
    color: white;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    animation: alertBounce 2s ease-in-out infinite;
}

@keyframes alertBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.alert-icon {
    font-size: 16px;
}

.risk-indicators {
    display: flex;
    gap: 8px;
}

.risk-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: riskPulse 2s ease-in-out infinite;
}

.risk-dot.critical {
    background: #F05844;
    animation-delay: 0s;
}

.risk-dot.warning {
    background: #F8B73B;
    animation-delay: 0.3s;
}

.risk-dot.good {
    background: var(--primary-green);
    animation-delay: 0.6s;
}

@keyframes riskPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.4);
        opacity: 1;
    }
}

/* Verification Mockup for Step 3 */
.verification-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cert-badges {
    display: flex;
    gap: 8px;
}

.cert-badge {
    padding: 6px 10px;
    background: var(--primary-green);
    color: white;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    animation: certFloat 3s ease-in-out infinite;
}

.cert-badge:nth-child(1) { animation-delay: 0s; }
.cert-badge:nth-child(2) { animation-delay: 0.5s; }
.cert-badge:nth-child(3) { animation-delay: 1s; }

@keyframes certFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.verification-check {
    font-size: 24px;
    color: var(--primary-green);
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Guidance Mockup for Step 4 */
.guidance-mockup {
    width: 100%;
}

.guidance-panel {
    background: #2B6B9A;
    border-radius: 8px;
    padding: 15px;
    color: white;
}

.guidance-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
}

.guidance-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.guidance-item {
    font-size: 11px;
    opacity: 0;
    animation: guidanceItemAppear 0.5s ease-out forwards;
}

.guidance-item:nth-child(1) { animation-delay: 1s; }
.guidance-item:nth-child(2) { animation-delay: 1.3s; }
.guidance-item:nth-child(3) { animation-delay: 1.6s; }

@keyframes guidanceItemAppear {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Step Content */
.step-content {
    padding: 20px 0;
}

.step-content h3 {
    font-size: 2rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
    font-family: 'Raleway', sans-serif;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0,0,0,0.85);
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

/* Flow Connectors */
.flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.connector-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-green), transparent);
    position: relative;
    animation: flowPulse 3s ease-in-out infinite;
}

@keyframes flowPulse {
    0%, 100% { 
        opacity: 0.6;
        transform: scaleY(1);
    }
    50% { 
        opacity: 1;
        transform: scaleY(1.1);
    }
}

.connector-arrow {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { 
        transform: translateX(0px);
    }
    50% { 
        transform: translateX(5px);
    }
}

/* Central Flow Line */
.central-flow-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    z-index: 1;
}

.flow-progress-bar {
    width: 100%;
    height: 100%;
    background: rgba(82, 160, 97, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-indicator {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--primary-green), var(--neutral-dark-green));
    border-radius: 2px;
    animation: progressFlow 4s ease-in-out infinite;
}

@keyframes progressFlow {
    0% { height: 0%; }
    100% { height: 100%; }
}

/* Enhanced Process Conclusion */
.process-conclusion-enhanced {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 80px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-green);
    position: relative;
    overflow: hidden;
}

.process-conclusion-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(82, 160, 97, 0.1), transparent);
    animation: conclusionShimmer 3s ease-in-out infinite;
}

@keyframes conclusionShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.conclusion-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--neutral-dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    animation: successPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes successPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(82, 160, 97, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(82, 160, 97, 0);
    }
}

.data-flow-animation {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0;
}

.data-particle:nth-child(1) {
    animation: dataFlow1 4s ease-in-out infinite;
}

.data-particle:nth-child(2) {
    animation: dataFlow2 4s ease-in-out infinite 1.3s;
}

.data-particle:nth-child(3) {
    animation: dataFlow3 4s ease-in-out infinite 2.6s;
}

@keyframes dataFlow1 {
    0% {
        top: 0;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%);
    }
    25% {
        opacity: 1;
    }
    50% {
        top: 50%;
        left: 100%;
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    75% {
        opacity: 1;
    }
    100% {
        top: 100%;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%);
    }
}

@keyframes dataFlow2 {
    0% {
        top: 50%;
        left: 100%;
        opacity: 0;
        transform: translate(-50%, -50%);
    }
    25% {
        opacity: 1;
    }
    50% {
        top: 100%;
        left: 50%;
        opacity: 1;
        transform: translateX(-50%);
    }
    75% {
        opacity: 1;
    }
    100% {
        top: 50%;
        left: 0;
        opacity: 0;
        transform: translate(-50%, -50%);
    }
}

@keyframes dataFlow3 {
    0% {
        top: 100%;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%);
    }
    25% {
        opacity: 1;
    }
    50% {
        top: 50%;
        left: 0;
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    75% {
        opacity: 1;
    }
    100% {
        top: 0;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%);
    }
}

.conclusion-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.conclusion-content h3 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Raleway', sans-serif;
}

.conclusion-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(0,0,0,0.85);
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

/* Flow Visualization Responsive Design */
@media (max-width: 1024px) {
    .process-flow-visual {
        gap: 60px;
        max-width: 800px;
    }
    
    .flow-step {
        grid-template-columns: 250px 1fr 80px;
        gap: 30px;
    }
    
    .flow-step[data-step="2"],
    .flow-step[data-step="4"] {
        grid-template-columns: 80px 1fr 250px;
    }
    
    .step-visual-container {
        padding: 25px;
    }
    
    .step-content h3 {
        font-size: 1.8rem;
    }
    
    .step-content p {
        font-size: 15px;
    }
    
    .process-conclusion-enhanced {
        padding: 30px;
        gap: 30px;
    }
    
    .conclusion-content h3 {
        font-size: 2.2rem;
    }
    
    .conclusion-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .process-flow-visual {
        gap: 40px;
        max-width: 600px;
    }
    
    .flow-step {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .flow-step[data-step="2"],
    .flow-step[data-step="4"] {
        grid-template-columns: 1fr;
    }
    
    .flow-step[data-step="2"] .step-visual-container,
    .flow-step[data-step="4"] .step-visual-container {
        order: 1;
    }
    
    .flow-step[data-step="2"] .step-content,
    .flow-step[data-step="4"] .step-content {
        order: 2;
        text-align: center;
    }
    
    .flow-step[data-step="2"] .flow-connector,
    .flow-step[data-step="4"] .flow-connector {
        order: 3;
        transform: none;
        margin: 0 auto;
    }
    
    .flow-connector {
        justify-self: center;
        width: 60px;
    }
    
    .connector-line {
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, var(--primary-green), transparent);
    }
    
    .connector-arrow {
        margin-top: 0;
        margin-left: 10px;
        transform: rotate(90deg);
    }
    
    .step-visual-container {
        padding: 20px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .step-content {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .step-content h3 {
        font-size: 1.6rem;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .central-flow-line {
        display: none;
    }
    
    .process-conclusion-enhanced {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 25px;
    }
    
    .conclusion-content h3 {
        font-size: 2rem;
    }
    
    .conclusion-content p {
        font-size: 15px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .data-flow-animation {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .process-flow-container {
        margin: 60px 0;
    }
    
    .process-flow-visual {
        gap: 30px;
        max-width: 100%;
    }
    
    .step-visual-container {
        padding: 15px;
        max-width: 280px;
    }
    
    .step-number-circle {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: -16px;
    }
    
    .step-icon-visual {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .step-icon-visual i {
        font-size: 20px;
    }
    
    .step-visual-demo {
        height: 100px;
    }
    
    .website-mockup {
        width: 160px;
        height: 80px;
    }
    
    .product-items {
        gap: 10px;
    }
    
    .product-dot {
        width: 8px;
        height: 8px;
    }
    
    .alert-popup {
        padding: 8px 12px;
        font-size: 10px;
    }
    
    .risk-indicators {
        gap: 6px;
    }
    
    .risk-dot {
        width: 8px;
        height: 8px;
    }
    
    .cert-badges {
        gap: 6px;
    }
    
    .cert-badge {
        padding: 4px 8px;
        font-size: 9px;
    }
    
    .verification-check {
        font-size: 20px;
    }
    
    .guidance-panel {
        padding: 12px;
    }
    
    .guidance-header {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    .guidance-item {
        font-size: 10px;
    }
    
    .step-content {
        max-width: 100%;
        padding: 15px 0;
    }
    
    .step-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .step-content p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .flow-connector {
        width: 40px;
    }
    
    .connector-line {
        width: 40px;
    }
    
    .connector-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .process-conclusion-enhanced {
        padding: 20px 15px;
        gap: 20px;
    }
    
    .conclusion-content h3 {
        font-size: 1.8rem;
    }
    
    .conclusion-content p {
        font-size: 14px;
    }
    
    .success-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .data-flow-animation {
        width: 60px;
        height: 60px;
    }
    
    .data-particle {
        width: 4px;
        height: 4px;
    }
}

/* Modern B2B Step Cards Design */
.process-steps-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    justify-items: center;
}

/* Connecting Flow Lines */
.process-steps-simple::before {
    display: none;
}

.step-card {
    background: white;
    border: 1px solid var(--primary-blue);
    border-radius: 4px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: stepCardAppear 0.6s ease-out forwards;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    width: 280px;
    min-height: 160px;
}

.step-card[data-step="1"] { animation-delay: 0.1s; }
.step-card[data-step="2"] { animation-delay: 0.2s; }
.step-card[data-step="3"] { animation-delay: 0.3s; }
.step-card[data-step="4"] { animation-delay: 0.4s; }

@keyframes stepCardAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid var(--primary-green);
    border-radius: 4px;
    transform: scale(0);
    transition: transform 0.3s ease;
    opacity: 0;
}

.step-card:hover::before {
    transform: scale(1);
    opacity: 1;
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(82, 160, 97, 0.2);
    flex-shrink: 0;
    z-index: 2;
    text-align: center;
    line-height: 1.2;
    padding: 8px;
}

.step-number h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    margin: 0;
    color: white;
    font-family: 'Raleway', sans-serif;
}

.step-number .step-title {
    font-size: 8px;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    margin-top: 2px;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.step-card:hover .step-number {
    background: var(--neutral-dark-green);
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(82, 160, 97, 0.3);
}

.step-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    flex: 1;
    padding-top: 35px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
    min-height: 140px;
}

.step-title-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 8px;
}

.step-icon {
    display: none !important;
}

.step-card:hover .step-icon {
    display: none !important;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.2;
    font-family: 'Raleway', sans-serif;
    text-align: left;
    max-width: 200px;
    word-wrap: break-word;
    hyphens: auto;
    min-height: 44px;
    display: flex;
    align-items: flex-start;
}

.step-card p {
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    display: block;
    text-align: left;
    max-width: 200px;
    word-wrap: break-word;
    margin-left: 0;
    flex: 1;
}

.step-arrow-horizontal {
    display: none;
}

/* Simple Process Conclusion */
.process-conclusion-simple {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px;
    margin-top: 40px;
    position: relative;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.process-conclusion-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-green);
}

.process-conclusion-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--neutral-dark-green));
    border-radius: 8px 8px 0 0;
}

.conclusion-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(82, 160, 97, 0.2);
}

.process-conclusion-simple:hover .conclusion-icon {
    background: var(--neutral-dark-green);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(82, 160, 97, 0.3);
}

.conclusion-icon i {
    font-size: 24px;
    color: white;
    display: block;
}

.process-conclusion-simple h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    font-family: 'Raleway', sans-serif;
    text-align: left;
    line-height: 1.3;
}

.process-conclusion-simple p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0,0,0,0.7);
    margin: 0;
    font-family: 'Raleway', sans-serif;
    text-align: left;
}

/* Simple Text Process Conclusion */
.process-conclusion-text {
    margin-top: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-conclusion-text h3 {
    font-size: 2.2rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Raleway', sans-serif;
}

.process-conclusion-text p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(0,0,0,0.85);
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

/* Steps Grid - Base Desktop Layout */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Step Card Styles */
.step-card {
    background: white;
    border: 1px solid white;
    border-radius: 4px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: stepCardAppear 0.6s ease-out forwards;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    min-height: 200px;
}

.step-card[data-step="1"] { animation-delay: 0.1s; }
.step-card[data-step="2"] { animation-delay: 0.2s; }
.step-card[data-step="3"] { animation-delay: 0.3s; }
.step-card[data-step="4"] { animation-delay: 0.4s; }

@keyframes stepCardAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.step-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(82, 160, 97, 0.2);
}

.step-card:hover .step-number {
    background: var(--neutral-dark-green);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(82, 160, 97, 0.3);
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 18px;
    color: var(--primary-green);
}

.step-card:hover .step-icon {
    background: rgba(82, 160, 97, 0.1);
    transform: scale(1.1);
}

.step-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: 'Raleway', sans-serif;
}

.step-card p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(0,0,0,0.85);
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

/* Steps Conclusion */
.steps-conclusion {
    margin-top: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.steps-conclusion .conclusion-content h3 {
    font-size: 2.2rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Raleway', sans-serif;
}

.steps-conclusion .conclusion-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(0,0,0,0.85);
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

/* How It Works Responsive Design */
@media (max-width: 1024px) {
    .how-it-works {
        padding: 80px 0;
    }
    
    .how-it-works .section-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .how-it-works .section-header h2 {
        text-align: center;
    }
    
    .how-it-works .section-header p {
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .process-steps-simple {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .step-card {
        padding: 35px 25px;
        min-height: 180px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
        top: -8px;
    }
    
    .step-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
    
    .step-card h5 {
        font-size: 12px;
    }
    
    .step-card p {
        font-size: 10px;
    }
    
    .process-conclusion-simple {
        padding: 32px;
        margin-top: 32px;
    }
    
    .process-conclusion-simple h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .process-steps-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .step-card {
        padding: 30px 20px;
        margin: 0 auto;
        min-height: 160px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
        top: -6px;
    }
    
    .step-icon {
        width: 24px;
        height: 24px;
        font-size: 16px;
    }
    
    .step-card h3 {
        font-size: 15px;
    }
    
    .step-card p {
        font-size: 12px;
    }
    
    .process-conclusion-simple {
        padding: 28px 24px;
        margin-top: 28px;
    }
    
    .conclusion-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }
    
    .conclusion-icon i {
        font-size: 20px;
    }
    
    .process-conclusion-simple h4 {
        font-size: 1.4rem;
    }
    
    .process-conclusion-simple p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .process-steps-simple {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .step-card {
        padding: 25px 18px;
        min-height: 140px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 11px;
        top: -5px;
    }
    
    .step-icon {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .step-card h3 {
        font-size: 14px;
    }
    
    .step-card p {
        font-size: 11px;
    }
    
    .step-title-row {
        margin-bottom: 6px;
    }
    
    .step-card-content {
        gap: 12px;
    }
    
    .process-conclusion-simple {
        padding: 24px 20px;
        margin-top: 24px;
    }
    
    .conclusion-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
    
    .conclusion-icon i {
        font-size: 18px;
    }
    
    .process-conclusion-simple h4 {
        font-size: 1.2rem;
    }
    
    .process-conclusion-simple p {
        font-size: 14px;
    }
}

/* Workflows Section */
.workflows-section {
    padding: 80px 0;
    background: #F8F5EE;
}

.workflows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.workflow-card {
    background: #DbD5D1;
    color: #000;
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.workflow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.workflow-card:hover::before {
    left: 100%;
}

.workflow-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 90, 61, 0.3);
}

.workflow-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.workflow-card:hover .workflow-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.workflow-icon i {
    font-size: 24px;
    color: #0F2934;
}

.workflow-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color:#000;
}

.workflow-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.8;
}

.workflow-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #0F2934;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.workflow-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    font-size: 14px;
    opacity: 0.9;
    display: flex;
    align-items: center;
}

.feature::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    margin-right: 8px;
}

/* Risk Report Section */
.risk-report-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4a1c2a 0%, #6d2c41 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.risk-report-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.risk-report-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.risk-report-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.risk-report-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.risk-report-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.demo-btn {
    background: #000;
    border: 2px solid #000;
    position: relative;
    overflow: hidden;
}

.demo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.demo-btn:hover::before {
    left: 100%;
}

.demo-btn i {
    margin-right: 10px;
}

.talk-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.talk-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.risk-report-visual {
    max-width: 600px;
    margin: 0 auto;
}

.scanning-animation {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scan-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4CAF50, transparent);
    margin-bottom: 20px;
    animation: scanLine 2s ease-in-out infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.scan-progress {
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
    border-radius: 4px;
    animation: progressFill 3s ease-in-out infinite;
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 75%; }
    100% { width: 100%; }
}

.progress-text {
    font-size: 14px;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .workflows-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .workflow-card {
        padding: 30px 20px;
    }
    
    .workflow-stats {
        gap: 20px;
    }
    
    .risk-report-content h2 {
        font-size: 36px;
    }
    
    .risk-report-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .scanning-animation {
        padding: 30px 20px;
    }
}

/* CTA Section */
.cta-section {

    padding: 100px 0;
    background: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-personal {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    background: #F8F5EE;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.cco-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cco-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(82, 160, 97, 0.3);
}

.cco-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.cco-info strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-dark-blue);
}

.cco-info span {
    font-size: 14px;
    color: var(--neutral-gray-dark);
    opacity: 0.8;
}

.availability-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: var(--primary-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #c3e6cb;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.cta-message {
    position: relative;
    text-align: left;
}

.quote-mark {
    font-size: 4rem;
    color: var(--primary-green);
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.cta-message h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--neutral-dark-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-message p {
    font-size: 18px;
    color: var(--neutral-gray-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

.cco-details {
    display: block;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 30px;
    padding-left: 0;
}

.cco-experience {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cco-experience span {
    font-size: 14px;
    color: var(--neutral-gray-dark);
    opacity: 0.8;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start !important;
    margin-left: 0 !important;
}

.cta-actions .btn-primary,
.cta-actions .btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-promise {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #F8F5EE;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-promise i {
    color: var(--primary-green);
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-promise span {
    font-size: 15px;
    font-weight: 500;
    color: var(--neutral-dark-blue);
    line-height: 1.4;
}

/* CTA Responsive Design */
@media (max-width: 1024px) {
    .cta-personal {
        /* grid-template-columns: 1fr; */
        text-align: center;
        gap: 30px;
    }
    
    .cta-message {
        text-align: center;
    }
    
    .cta-message h2,
    .cta-message p,
    .cco-details {
        padding-left: 0;
    }
    
    .cco-details {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-personal {
        padding: 30px 20px;
    }
    
    .cco-photo {
        width: 100px;
        height: 100px;
    }
    
    .cta-message h2 {
        font-size: 1.8rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .cta-message h2 {
        font-size: 1.5rem;
    }
    
    .benefit-promise {
        padding: 15px;
    }
    
    .benefit-promise span {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: #0F2934;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-spacer {
    /* Empty spacer to push content to the right */
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-svg {
    height: 32px;
    width: auto;
    max-width: 140px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-green);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Mobile-only: Left align copyright text in footer */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-bottom p {
        text-align: left !important;
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .footer-links a {
        display: block;
        padding: 4px 0;
    }
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Animations */
.hero-content {
    animation: slideInLeft 0.8s ease-out;
    text-align: left;
}

.hero-visual {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.product-analysis {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.analytics-panel {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.compliance-report {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.performance-chart {
    animation: fadeInUp 0.8s ease-out 1s both;
}

/* Interactive Elements */
.tag.warning:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.tag.verified:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    animation: pulse 0.6s ease-in-out;
}

.step:hover .step-number {
    animation: pulse 0.6s ease-in-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .claims-analysis-demo {
        height: 500px;
    }
    
    .model-image {
        width: 300px;
        height: 400px;
    }
    
    .analysis-overlay {
        width: 350px;
        right: -30px;
        top: 30px;
    }
    
    .analyzer-results-box {
        width: 380px;
        bottom: -60px;
    }
    
    .critical-callout {
        right: -150px;
    }
    
    .critical-callout-2 {
        left: -150px;
    }
    
    .medium-callout {
        left: -150px;
    }
    
    .medium-callout-2 {
        right: -150px;
    }
    
    .analysis-summary {
        left: -60px;
    }
    
    .dashboard-mockup {
        height: 340px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        /* flex-direction: column; */
        justify-content: center;
    }
    
    .claims-analysis-demo {
        height: 400px;
    }
    
    .model-image {
        width: 250px;
        height: 320px;
    }
    
    .analysis-overlay {
        width: 300px;
        right: -20px;
        top: 20px;
        padding: 20px;
    }
    
    .analyzer-results-box {
        width: 340px;
        bottom: -40px;
        padding: 16px;
    }
    
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .result-stat .stat-number {
        font-size: 20px;
    }
    
    .result-stat .stat-label {
        font-size: 10px;
    }
    
    .analysis-header h4 {
        font-size: 16px;
    }
    
    .description-text {
        font-size: 14px;
    }
    
    .risk-callout {
        display: none;
    }
    
    .analysis-summary {
        position: static;
        margin-top: 20px;
        opacity: 1;
        animation: none;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .claims-analysis-demo {
        height: 350px;
    }
    
    .model-image {
        width: 200px;
        height: 280px;
    }
    
    .analysis-overlay {
        width: 280px;
        right: -10px;
        top: 10px;
        padding: 16px;
    }
    
    .analysis-header h4 {
        font-size: 14px;
    }
    
    .description-text {
        font-size: 13px;
    }
    
    .scanning-indicator {
        font-size: 11px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* About Page Styles */
.nav-link.active {
    color: var(--primary-green);
    font-weight: 600;
}

.about-hero {
    padding: 120px 0 80px;
    background: #F8F5EE;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color:  #000;
    margin-bottom: 40px;
    line-height: 1.2;
}

.about-hero-content .hero-subtitle {
    font-size: 18px;
    color:  #000;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mission Visual Elements */
.mission-visual {
    margin-top: 50px;
}

.mission-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mission-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.mission-icon i {
    font-size: 32px;
    color: var(--primary-green);
}

.mission-icon span {
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-dark-blue);
}

.mission-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-arrow i {
    font-size: 24px;
    color: var(--primary-green);
    animation: pulse 2s ease-in-out infinite;
}

/* Mission Statement Visuals */
.mission-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--neutral-dark-blue);
    margin-bottom: 40px;
    font-weight: 500;
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.vision-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-green);
}

.vision-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-green), var(--neutral-dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vision-icon i {
    color: white;
    font-size: 20px;
}

.vision-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-gray-dark);
    margin: 0;
}

.mission-conclusion {
    text-align: center;
    margin-top: 40px;
}

.conclusion-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--primary-green), var(--neutral-dark-green));
    color: white;
    border-radius: 50px;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(82, 160, 97, 0.3);
}

.conclusion-highlight i {
    font-size: 20px;
}

/* Sustainability Ecosystem Visual */
.mission-visual-large {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.sustainability-ecosystem {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-center {
    position: relative;
    z-index: 3;
}

.center-node {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-green), var(--neutral-dark-green));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 12px 32px rgba(82, 160, 97, 0.4);
    text-align: center;
    line-height: 1.2;
}

.center-node i {
    font-size: 32px;
    margin-bottom: 8px;
}

.ecosystem-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.eco-node {
    position: absolute;
    width: 100px;
    height: 100px;
    background: white;
    border: 3px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--neutral-dark-blue);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
}

.eco-node i {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.eco-node.brands {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.eco-node.teams {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.eco-node.consumers {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.eco-node.regulators {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 3s;
}

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.eco-line {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-green), transparent);
    opacity: 0.4;
    animation: pulse-line 3s ease-in-out infinite;
}

.eco-line.line-1 {
    top: 70px;
    left: 50%;
    width: 2px;
    height: 70px;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.eco-line.line-2 {
    top: 50%;
    right: 70px;
    width: 70px;
    height: 2px;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.eco-line.line-3 {
    bottom: 70px;
    left: 50%;
    width: 2px;
    height: 70px;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.eco-line.line-4 {
    top: 50%;
    left: 70px;
    width: 70px;
    height: 2px;
    transform: translateY(-50%);
    animation-delay: 3s;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 100px 0;
    background: white;
}

.who-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.who-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--neutral-dark-blue);
    margin-bottom: 40px;
    font-weight: 500;
}

.who-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.who-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.who-feature .feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.who-feature .feature-icon i {
    color: white;
    font-size: 20px;
}

.who-feature .feature-content strong {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-dark-blue);
    display: block;
    margin-bottom: 8px;
}

.who-feature .feature-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-gray-dark);
    margin: 0;
}

/* Denmark Badge and Expertise Grid */
.who-visual {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.denmark-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 2px solid #C8102E;
}

.flag-icon {
    position: relative;
    width: 40px;
    height: 30px;
    border-radius: 4px;
    overflow: hidden;
}

.flag-stripe.red {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #C8102E;
}

.flag-stripe.white {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    height: 6px;
    background: white;
}

.flag-cross {
    position: absolute;
    top: 0;
    left: 12px;
    width: 6px;
    height: 100%;
    background: white;
}

.badge-text strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-dark-blue);
    display: block;
}

.badge-text span {
    font-size: 14px;
    color: var(--neutral-gray-dark);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.expertise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.expertise-item i {
    font-size: 24px;
    color: var(--primary-green);
}

.expertise-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-dark-blue);
}

/* Backed By Section */
.backed-by-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.investors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.investor-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.investor-placeholder:hover {
    transform: translateY(-4px);
}

.investor-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.investor-logo i {
    font-size: 32px;
    color: var(--primary-green);
}

.investor-logo span {
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-dark-blue);
}

/* Enhanced Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: white;
    padding: 30px 24px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
}

.team-member.founder {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.team-member.advisor {
    border-color: var(--primary-blue);
}

.member-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-green);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.advisor-badge {
    background: var(--primary-blue);
}

.member-specialty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--neutral-dark-blue);
}

.member-specialty i {
    color: var(--primary-green);
}

/* News Section */
.news-section {
    padding: 55px 0;
    background: #F8F5EE;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-post {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.post-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.post-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(82, 160, 97, 0.1);
    border-radius: 50%;
}

.image-placeholder i {
    font-size: 32px;
    color: var(--primary-green);
}

.post-category {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-blue);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.post-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-post h3 {
    font-size: 22px;
    font-weight: 500;
    color:  #000;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.news-post:hover h3 {
    color: var(--primary-blue);
}

.news-post:hover p {
    color: var(--primary-blue);
}

.news-post:hover .read-more {
    color: var(--neutral-white);
}

.news-post p {
    font-size: 14px;
    color: var(--neutral-gray-dark);
    line-height: 1.5;
    margin-bottom: 20px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.post-tags .tag {
    background: #f8f9fa;
    color: var(--neutral-dark-blue);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.post-tags .tag:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    width: 45%;
}

.read-more:hover,
.news-post:hover .read-more {
    background: var(--primary-green);
    color: white;
    border: 1px solid var(--primary-green);
    gap: 12px;
    /* transform: translateY(-2px); */
}

.read-more i {
    font-size: 12px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.read-more:hover i {
    transform: translateX(4px);
    color: var(--neutral-white);
}

.news-cta {
    text-align: center;
    margin-top: 50px;
}

/* News Section Responsive Design */
@media (max-width: 768px) {
    .solution-section {
        display: flex;
        flex-direction: column;
    }
    
    .features-showcase {
        order: 1;
    }
    
    .platform-stats-section {
        order: 2;
        margin-top: 200px;
        padding-top: 0;
    }
    
    .platform-stats-section .stats-info h3 {
        font-size: 3rem !important;
    }
    
    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .stat-box {
        width: 100%;
        max-width: 300px;
    }
    
    /* Newsletter banner mobile-only changes */
    .newsletter-visual .newsletter-icon {
        display: none !important;
    }
    
    .newsletter-visual .newsletter-info {
        display: none !important;
    }
    
    .newsletter-visual .newsletter-indicator {
        display: none !important;
    }
}
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .news-cta {
        margin-top: 40px;
    }

@media (max-width: 480px) {
    .post-content {
        padding: 16px;
    }
    
    .news-post h3 {
        font-size: 16px;
    }
    
    .news-post p {
        font-size: 14px;
    }
    
    .post-tags .tag {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* News Page Styles - Hero with background color instead of image */
.news-hero {
    padding: 120px 0 80px;
    background: #F8F5EE;
    margin-top: 70px;
}

.news-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.news-hero-content .hero-tag {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-hero-content .hero-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    color: #000;
    margin-bottom: 36px;
}

.news-hero-content .hero-description {
    font-size: 18px;
    color: rgba(0,0,0,0.95);
    line-height: 1.6;
    margin: 0;
}

/* News page hero using about-hero-image class but with background color */
.about-hero-image:has(.hero-overlay-content h1:contains("News & Insights")) {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-bottom: 80px;
    background: #F8F5EE;
    margin-top: 70px;
}

/* Alternative approach - create specific news hero styling */
section.about-hero-image:not(:has(img)) {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-bottom: 80px;
    background: #F8F5EE;
    margin-top: 70px;
}

section.about-hero-image:not(:has(img)) .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.about-hero-image:not(:has(img)) .hero-overlay-content {
    text-align: center;
    color: #000;
    max-width: 800px;
    padding: 0 20px;
}

section.about-hero-image:not(:has(img)) .hero-overlay-content h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #000;
    text-shadow: none;
    font-family: 'Raleway', sans-serif;
}

section.about-hero-image:not(:has(img)) .hero-overlay-content p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: none;
    line-height: 1.4;
    color: rgba(0,0,0,0.85);
}

/* Featured Article Section */
.featured-article-section {
    padding: 80px 0;
    background: #F8F5EE;
    margin-top: 70px;
}

.featured-article {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    background: #F8F5EE;
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #F8F5EE;
}

.featured-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-content .btn-secondary {
    width: fit-content;
    align-self: flex-start;
}

.featured-category {
    display: inline-block;
    background: #000;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.featured-article h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    margin: 0;
}

.featured-excerpt {
    font-size: 18px;
    color: rgba(0,0,0,0.85);
    line-height: 1.6;
    margin: 0;
}

.featured-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
    color: rgba(0,0,0,0.7);
}

.featured-date,
.featured-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-date::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-green);
}

.featured-read-time::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-green);
}

.featured-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.featured-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.featured-article:hover .featured-image-photo {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.featured-badge {
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* All Articles Section */
.all-articles-section {
    padding: 80px 0;
    background: #F8F5EE;
}

/* Filter Tags Section */
.filter-tags-section {
    margin: 40px 0 50px 0;
    padding: 0;
}

.filter-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.filter-tag {
    background: #C4B6A6;
    color: white;
    border: 1px solid #C4B6A6;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    outline: none;
}

.filter-tag:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 107, 154, 0.3);
}

.filter-tag.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(43, 107, 154, 0.3);
}

.filter-tag.active:hover {
    background: #1e4d6b;
    border-color: #1e4d6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(43, 107, 154, 0.4);
}

/* Filter Tags Responsive Design */
@media (max-width: 768px) {
    .filter-tags-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 20px 10px 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .filter-tags-container::-webkit-scrollbar {
        display: none;
    }
    
    .filter-tag {
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .filter-tags-section {
        margin: 30px 0 40px 0;
    }
    
    .filter-tags-container {
        gap: 8px;
        padding: 0 15px 8px 15px;
    }
    
    .filter-tag {
        padding: 6px 14px;
        font-size: 12px;
    }
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.post-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
    color: rgba(0,0,0,0.6);
}

.post-date,
.post-read-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.post-date::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-green);
    font-size: 10px;
}

.post-read-time::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-green);
    font-size: 10px;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    transform: translateY(-2px);
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateY(2px);
}

/* News Page Responsive Design */
@media (max-width: 1024px) {
    .featured-article {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .featured-article h2 {
        font-size: 2.2rem;
    }
    
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .news-hero {
        padding: 100px 0 60px;
    }
    
    .news-hero-content .hero-title {
        font-size: 2.5rem;
    }
    
    .featured-article-section {
        padding: 60px 0;
    }
    
    .featured-article {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .featured-article h2 {
        font-size: 1.8rem;
    }
    
    .featured-excerpt {
        font-size: 16px;
    }
    
    .all-articles-section {
        padding: 60px 0;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .load-more-section {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .news-hero-content .hero-title {
        font-size: 2rem;
    }
    
    .news-hero-content .hero-description {
        font-size: 16px;
    }
    
    .featured-article {
        padding: 20px 15px;
    }
    
    .featured-article h2 {
        font-size: 1.5rem;
    }
    
    .featured-excerpt {
        font-size: 15px;
    }
    
    .featured-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-dark-blue);
    margin-bottom: 24px;
}

.mission-text p {
    font-size: 18px;
    color: var(--neutral-gray-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--neutral-dark-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(82, 160, 97, 0.3);
}

.mission-icon i {
    font-size: 48px;
    color: white;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: #fafafa;
}

.story-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-dark-blue);
    text-align: center;
    margin-bottom: 60px;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-green);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--neutral-dark-blue);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--neutral-gray-dark);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-dark-blue);
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-item {
    padding: 40px;
    background: #fafafa;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 24px;
    color: white;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-dark-blue);
    margin-bottom: 16px;
}

.value-item p {
    font-size: 16px;
    color: var(--neutral-gray-dark);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #fafafa;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-dark-blue);
    text-align: center;
    margin-bottom: 20px;
}

.team-intro {
    font-size: 18px;
    color: var(--neutral-gray-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.member-photo {
    margin-bottom: 20px;
}

.photo-placeholder {
    width: 100px;
    height: 100px;
    background: var(--neutral-gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.photo-placeholder i {
    font-size: 40px;
    color: var(--neutral-gray-dark);
}

.team-member h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--neutral-dark-blue);
    margin-bottom: 8px;
}

.member-role {
    font-size: 16px;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 16px;
}

.member-bio {
    font-size: 14px;
    color: var(--neutral-gray-dark);
    line-height: 1.6;
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: var(--neutral-dark-green);
    color: white;
    text-align: center;
}

.impact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.impact-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* About Page Responsive Design */
@media (max-width: 1024px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 100px;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        text-align: left;
        padding: 0 0 0 20px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .mission-text h2,
    .story-section h2,
    .values-section h2,
    .team-section h2,
    .impact-section h2 {
        font-size: 2rem;
    }
    
    .value-item {
        padding: 30px 20px;
    }
    
    .team-member {
        padding: 30px 20px;
    }
}

/* Value Proposition Section */
.value-proposition-section {
    padding: 55px 0;
    background: #F8F5EE;
}

.value-proposition-section .section-header {
    margin-bottom: 0px;
}

.value-proposition-section .section-header-grid {
    display: grid;
    gap: 60px;
    align-items: start;
}

.value-proposition-section .section-header-title {
    align-self: flex-start;
}

.value-proposition-section .section-header h2 {
    font-size: 3rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.1;
    vertical-align: top;
}

.value-proposition-section .section-header h2::after {
    display: none;
}

/* Problem Section Header - Top Aligned */
#problem .section-header {
    align-items: flex-start;
}

#problem .section-header-grid {
    align-items: flex-start;
    align-self: flex-start;
}

#problem .section-header-title {
    align-self: flex-start;
    margin-top: 0;
    padding-top: 0;
}

#problem .section-header-title h2 {
    margin-top: 0;
    padding-top: 0;
    align-self: flex-start;
    vertical-align: top;
}


.how-it-works .section-header {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
    text-align: left;
    margin-bottom: 80px;
    position: relative;
}

.how-it-works .section-header h2 {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.2;
    align-self: start;
}

.how-it-works .section-header h2::after {
    display: none;
}

.how-it-works .section-header p {
    font-size: 18px;
    color: rgba(0,0,0,0.95);
    margin: 0;
    line-height: 1.7;
    text-align: left;
    align-self: start;
}

.value-proposition-section .section-header p {
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
    margin: 0;
    text-align: left;
    min-height: auto;
    overflow: visible;
    align-self: flex-end;
}

.value-proposition-section .section-header .right-p {
    grid-row: 1 / 3;
    grid-column: 2;
}

/* Section Content Columns */
.section-content-columns {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 40px;
}

.left-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.right-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Regulation Highlights */
.regulation-highlights {
    grid-column: 2;
    grid-row: 1 / 3;
    margin: 0 0 0px 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 40px;
}

.regulation-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 20px;
    background: transparent;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.regulation-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 2px;
    background: var(--primary-red);
    border-radius: 1px;
}

.regulation-flag {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.regulation-text {
    font-size: 14px;
    color: #000;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.regulation-text strong {
    font-weight: 700;
    color: black;
}

/* Right Column Content */
.right-column p {
    font-size: 18px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 24px;
}

.right-column p:last-child {
    margin-bottom: 0;
}

.value-highlights {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.value-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.value-highlight:nth-child(2) {
    grid-template-columns: 1fr 1fr;
}

.value-highlight:nth-child(2) .value-content {
    order: 1;
}

.value-highlight:nth-child(2) .value-visual {
    order: 2;
}

.value-content h3 {
    font-size: 2.2rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 12px;
}

/* Specific styling for the first value highlight title */
.value-highlight:first-child .value-content h3 {
    line-height: 1.2;
    margin-bottom: 20px;
}

.value-subtitle {
    font-size: 18px;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 30px;
}

/* Specific styling for the first value highlight description */
.value-highlight:first-child .value-subtitle {
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

.value-highlight:first-child .value-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

/* Specific styling for the first value highlight title */
.value-highlight:first-child .value-content h3 {
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Specific styling for the second value highlight (duplicated first) */
.value-highlight:nth-child(2) .value-subtitle {
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

.value-highlight:nth-child(2) .value-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.value-highlight:nth-child(2) .value-content h3 {
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Specific styling for the third value highlight (Work Smarter) */
.value-highlight:nth-child(3) .value-subtitle {
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

.value-highlight:nth-child(3) .value-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

/* Specific styling for the fourth value highlight (Eliminate Duplicate Effort) */
.value-highlight:nth-child(4) .value-subtitle {
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

.value-highlight:nth-child(4) .value-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.value-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-item i {
    color: var(--primary-green);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item strong {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    display: block;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

/* Value Visual Styles */
.value-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.value-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    margin-left: 0;
    align-self: flex-start;
}

.value-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* Value Arrow Styles */
.value-arrow {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    min-height: 300px;
    padding-top: 0;
}

.value-arrow .arrow-shape {
    width: 100%;
    height: 1px;
    position: relative;
    background: var(--primary-green);
    animation: arrowPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.value-arrow .arrow-shape::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--primary-green);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.value-arrow:hover .arrow-shape {
    background: var(--neutral-dark-green);
    transform: translateX(10px);
}

.value-arrow:hover .arrow-shape::after {
    border-left-color: var(--neutral-dark-green);
}

@keyframes arrowPulse {
    0%, 100% { 
        transform: translateX(0px);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(5px);
        opacity: 1;
    }
}

/* Specific styling for the first value highlight with EU regulation image */
.value-highlight:first-child .value-visual {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px 40px 40px 0;
}

/* Compliance Dashboard Visual */
.compliance-dashboard {
    background: white;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 24px;
    width: 320px;
    border: 1px solid white;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.status-indicator {
    width: 16px;
    height: 16px;
    color: var(--primary-green);
    font-size: 14px;
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.dashboard-header span {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.scan-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.scan-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.scan-item.flagged {
    background: #ffeaea;
    color: #d63031;
}

.scan-item.verified {
    background: #d4edda;
    color: #155724;
}

.scan-item i {
    font-size: 16px;
}

.progress-indicator {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-bar-small {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill-small {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), #66BB6A);
    border-radius: 3px;
    animation: progressScan 3s ease-in-out infinite;
}

@keyframes progressScan {
    0% { width: 0%; }
    50% { width: 75%; }
    100% { width: 100%; }
}

.scan-status {
    font-size: 12px;
    color: #000000;
    text-align: center;
}

/* Workflow Hub Visual */
.workflow-hub {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-center {
    width: 120px;
    height: 120px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 4px 16px rgba(82, 160, 97, 0.2);
    z-index: 2;
    position: relative;
    text-align: center;
    line-height: 1.2;
}

.team-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.team-node {
    position: absolute;
    width: 85px;
    height: 85px;
    background: white;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    color: #000000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.team-node i {
    font-size: 16px;
    color: var(--primary-green);
    margin-bottom: 2px;
}

.team-node.legal {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.team-node.marketing {
    top: 25%;
    right: 15px;
    transform: translateY(-50%);
}

.team-node.esg {
    bottom: 15px;
    right: 25%;
    transform: translateX(50%);
}

.team-node.product {
    bottom: 15px;
    left: 25%;
    transform: translateX(-50%);
}

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    background: var(--primary-green);
    opacity: 0.6;
}

.line-1 {
    top: 75px;
    left: 50%;
    width: 2px;
    height: 75px;
    transform: translateX(-50%);
}

.line-2 {
    top: 35%;
    right: 75px;
    width: 75px;
    height: 2px;
    transform: translateY(-50%);
}

.line-3 {
    bottom: 75px;
    right: 37%;
    width: 2px;
    height: 75px;
    transform: translateX(50%) rotate(25deg);
    transform-origin: bottom;
}

.line-4 {
    bottom: 75px;
    left: 37%;
    width: 2px;
    height: 75px;
    transform: translateX(-50%) rotate(-25deg);
    transform-origin: bottom;
}

/* Validated Product Visual */
.validated-product {
    background: white;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 40px;
    width: 320px;
    border: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.validated-tshirt {
    width: 200px;
    height: 220px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.validated-product:hover .validated-tshirt {
    transform: scale(1.05);
}

.validation-label {
    margin-top: 10px;
}

.validation-label span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #d4edda;
    color: #155724;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #c3e6cb;
}

.validation-badge {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-green), #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(82, 160, 97, 0.3);
    animation: validationPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.validation-badge i {
    color: white;
    font-size: 16px;
}

.powered-by-text {
    font-size: 12px;
    color: #000000;
    margin-top: 8px;
    text-align: center;
    font-weight: 500;
}

@keyframes validationPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(82, 160, 97, 0.3);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 8px 24px rgba(82, 160, 97, 0.5);
    }
}

/* Platform Stats Section */
.platform-stats-section {
    padding: 20px 20px;
    background: #F8F5EE;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.stats-banner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    background: var(--primary-green);
    border-radius: 4px;
    padding: 55px 40px 0;
    box-shadow: 0 8px 32px rgba(82, 160, 97, 0.2);
    border: 1px solid var(--primary-green);
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.stats-banner .stat-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.stats-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    width: 100%;
}

.stats-info h3 {
    font-size: 3rem;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.stats-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.stats-updated {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.platform-stats-section .stats-grid {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-stats-section .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 10px 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    flex: 1;
    min-width: 0;
    background: transparent;
}

.platform-stats-section .stat-item:last-child {
    border-right: none;
}

.platform-stats-section .stat-item .stat-number {
    font-size: 28px;
    font-weight: 400;
    color: white !important;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
    text-align: center;
    white-space: nowrap;
}

.platform-stats-section .stat-item .stat-label {
    font-size: 11px;
    font-weight: 500;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.2;
    text-align: center;
    max-width: 160px;
    white-space: normal;
    word-wrap: break-word;
    hyphens: auto;
}

/* Solution Section */
.solution-section {
    padding: 55px 0;
    background: #F8F5EE;
}

.solution-header {
    text-align: center;
    margin-bottom: 0px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.solution-header h2 {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Raleway', sans-serif;
}

.solution-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(0,0,0,0.85);
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

/* News Header - Centered styling to match solution section */
.news-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.news-header h2 {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Raleway', sans-serif;
}

.news-header p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0,0,0,0.85);
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

/* All Articles Section - Center the News & Insights header */
.all-articles-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.all-articles-section .section-header h2 {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    width: 100%;
}

.all-articles-section .section-header p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0,0,0,0.85);
    margin: 0;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.solution-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-benefit-item {
    background: transparent;
    border: 1px solid #000;
    border-radius: 4px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.solution-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.5);
}

.solution-benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
    font-family: 'Raleway', sans-serif;
}

.solution-benefit-item p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0,0,0,0.85);
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

/* Creative Features Showcase */
.features-showcase {
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.features-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 8px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid white;
}

.tab-button {
    display: flex;
    box-sizing: border-box;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 16px 20px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    min-width: 100px;
    /* flex-grow: 0; */
}

.tab-button:hover {
    background: transparent;
    border: 2px solid #2B6B9A;
    border-radius: 4px;
}

.tab-button:hover .tab-icon {
    background:  #2B6B9A;
    /* border: 1px solid white; */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-button:hover .tab-icon i {
    color:  white
}

.tab-button:hover .tab-icon-img {
    filter: brightness(0) saturate(100%) invert(1) !important;
}

.tab-button:hover span {
    color: black;
}

.tab-button.active {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(82, 160, 97, 0.3);
}

.tab-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F5EE;
    transition: all 0.3s ease;
}

.tab-button.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
}

.tab-icon i {
    font-size: 18px;
    color: #000;
    transition: all 0.3s ease;
}

.tab-button.active .tab-icon i {
    color: white;
}

.tab-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%);
}

.tab-button.active .tab-icon-img {
    filter: brightness(0) saturate(100%) invert(1);
}

.tab-button:hover .tab-icon-img {
    filter: brightness(0) saturate(100%) invert(1);
}

.tab-button span {
    font-size: 12px;
    font-weight: 500;
    color: #000;
    transition: all 0.3s ease;
    text-align: center;
}

.tab-button.active span {
    color: white;
    font-weight: 500;
}

.features-content {
    position: relative;
    min-height: 400px;
}

.feature-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.feature-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.feature-panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid white;
}

.feature-text h3 {
    font-size: 2rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Raleway', sans-serif;
}

.feature-text p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0,0,0,0.85);
    margin-bottom: 24px;
    font-family: 'Raleway', sans-serif;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(0,0,0,0.85);
    font-family: 'Raleway', sans-serif;
}

.feature-benefits i {
    color: var(--primary-green);
    font-size: 12px;
    width: 16px;
    flex-shrink: 0;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Feature Demo Styles */
.monitoring-demo {
    width: 280px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
}

.scan-progress {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scan-line {
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scan-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    animation: scanAnimation 2s ease-in-out infinite;
}

@keyframes scanAnimation {
    0% { left: -100%; }
    100% { left: 100%; }
}

.scan-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scan-stats .stat {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.detection-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alert-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    animation: alertPulse 2s ease-in-out infinite;
}

.alert-card.critical {
    background: #F05844;
    color: white;
    box-shadow: 0 4px 12px rgba(240, 88, 68, 0.3);
}

@keyframes alertPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.verification-interface {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 2px solid #C4B6A6;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.verification-interface::before {
    content: '';
    display: block;
    height: 40px;
    background: #C4B6A6;
    background-image: 
        radial-gradient(circle at 12px 20px, #ff5f56 4px, transparent 4px),
        radial-gradient(circle at 28px 20px, #ffbd2e 4px, transparent 4px),
        radial-gradient(circle at 44px 20px, #27ca3f 4px, transparent 4px);
    position: relative;
    margin: -12px -12px 12px -12px;
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid #C4B6A6;
}

.verification-interface {
    position: relative;
}

.verification-interface::before {
    content: '';
    display: block;
    height: 40px;
    background: #C4B6A6;
    background-image: 
        radial-gradient(circle at 12px 20px, #ff5f56 4px, transparent 4px),
        radial-gradient(circle at 28px 20px, #ffbd2e 4px, transparent 4px),
        radial-gradient(circle at 44px 20px, #27ca3f 4px, transparent 4px);
    position: relative;
    margin: -12px -12px 12px -12px;
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid #C4B6A6;
}

.verification-interface .verification-status {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-blue);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
    text-align: center;
}

        .verification-interface .verification-status::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--primary-green);
            border-radius: 50%;
            animation: verificationDotPulse 1.5s ease-in-out infinite;
            flex-shrink: 0;
        }

        @keyframes verificationDotPulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(82, 160, 97, 0.4);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.2);
                box-shadow: 0 0 0 8px rgba(82, 160, 97, 0);
            }
        }

        /* Data Verification Progress Line */
        .data-verification-progress {
            width: 100%;
            margin: 8px 0;
        }

        .progress-line {
            width: 100%;
            height: 3px;
            background: rgba(43, 107, 154, 0.2);
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }

        .progress-line::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 60%;
            background: linear-gradient(90deg, 
                rgba(43, 107, 154, 0.6) 0%, 
                var(--primary-blue) 50%, 
                rgba(43, 107, 154, 0.6) 100%);
            border-radius: 2px;
            animation: dataVerificationProgress 3s ease-in-out infinite;
        }

        @keyframes dataVerificationProgress {
            0% {
                transform: translateX(-100%);
                opacity: 0.6;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateX(167%);
                opacity: 0.6;
            }
        }

.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.cert-badge.verified {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 4px 12px rgba(82, 160, 97, 0.3);
    animation: verifiedPulse 3s ease-in-out infinite;
}

@keyframes verifiedPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(82, 160, 97, 0.3); }
    50% { box-shadow: 0 8px 24px rgba(82, 160, 97, 0.5); }
}

.guidance-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guidance-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #2B6B9A;
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(43, 107, 154, 0.3);
}

.oversight-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* World Map Container */
.world-map-container {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Realistic World Map */
.realistic-world-map {
    width: 100%;
    position: relative;
    background: white;
    border-radius: 4px;
    border: 1px solid transparent;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(43, 107, 154, 0.2);
    overflow: hidden;
}

/* World Map Image Container */
.world-map-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 4px;
}

.europe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: all 0.3s ease;
}

.world-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.3s ease;
}

.world-map-image:hover {
    transform: scale(1.02);
}

/* Scanning Beam Overlay */
.scan-beam-overlay {
    position: absolute;
    top: 0;
    left: -200px;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(43, 107, 154, 0.3) 30%, 
        rgba(43, 107, 154, 0.6) 50%, 
        rgba(43, 107, 154, 0.3) 70%, 
        transparent 100%);
    animation: scanBeamOverlay 4s ease-in-out infinite;
    z-index: 3;
}

@keyframes scanBeamOverlay {
    0% {
        left: -200px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: calc(100% + 200px);
        opacity: 0;
    }
}


/* Monitoring Indicator */
.monitoring-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 12px 12px;
    background: white;
    border-radius: 4px;
    border: 1px solid var(--primary-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    justify-content: center;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(43, 107, 154, 0.4);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(43, 107, 154, 0);
    }
}

.monitoring-indicator span {
    font-size: 12px;
    font-weight: 500;
    color: #000;
}

/* Responsive Design for World Map */
@media (max-width: 768px) {
    .world-map-container {
        max-width: 320px;
    }
    
    .animated-world-map {
        height: 160px;
        padding: 8px;
    }
    
    .map-legend {
        flex-direction: column;
        gap: 12px;
        padding: 10px 16px;
    }
    
    .legend-item {
        font-size: 11px;
    }
    
    .legend-color {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .world-map-container {
        max-width: 280px;
    }
    
    .animated-world-map {
        height: 140px;
        padding: 6px;
    }
    
    .map-legend {
        gap: 10px;
        padding: 8px 12px;
    }
    
    .legend-item {
        font-size: 10px;
    }
    
    .legend-color {
        width: 12px;
        height: 12px;
    }
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.market-item {
    padding: 16px 20px;
    background: var(--primary-green);
    color: white;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(82, 160, 97, 0.3);
}

.reporting-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px;
    background: #f8f9fa;
    border: 2px dashed #e5e5e5;
    border-radius: 8px;
    color: #666;
}

.chart-placeholder i {
    font-size: 32px;
    color: var(--primary-green);
}

.chart-placeholder span {
    font-size: 14px;
    font-weight: 500;
}

/* Reporting & Insights Dashboard Styles */
.reporting-insights-demo {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.insights-dashboard {
    background: white;
    border-radius: 6px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    padding: 8px;
    font-family: 'Inter', sans-serif;
    height: 280px;
    overflow: visible;
    transform: scale(0.8);
    transform-origin: center;
}

.insights-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #2B6B9A;
}

.insights-title h4 {
    font-size: 10px;
    font-weight: 600;
    color: #000;
    margin: 0 0 1px 0;
    font-family: 'Raleway', sans-serif;
}

.report-period {
    font-size: 8px;
    color: #2B6B9A;
    font-weight: 500;
    background: rgba(43, 107, 154, 0.1);
    padding: 1px 4px;
    border-radius: 2px;
}

.export-btn {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 3px 6px;
    background: #2B6B9A;
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 7px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
    min-height: 18px;
    white-space: nowrap;
}

.export-btn:hover {
    background: #1e4d6b;
    transform: translateY(-1px);
}

.export-btn i {
    font-size: 6px;
    color: white;
}

        /* Charts Grid */
        .charts-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 8px;
            margin-bottom: 8px;
        }

.chart-container {
    background: white;
    border-radius: 3px;
    padding: 6px;
    border: 1px solid #C4B6A6;
}

.chart-container.chart-container-small {
    background: white;
    border: 1px solid #C4B6A6;
    max-width: 140px;
    height: 120px;
}

.chart-container.full-width {
    grid-column: 1 / -1;
}

.chart-header {
    margin-bottom: 4px;
}

.chart-header h5 {
    font-size: 8px;
    font-weight: 600;
    color: #000;
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

/* Pie Chart Styles */
.pie-chart {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 8px;
}

.pie-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.pie-segment {
    transition: all 0.3s ease;
    animation: drawPie 2s ease-out;
}

@keyframes drawPie {
    0% {
        stroke-dasharray: 0 100;
    }
    100% {
        stroke-dasharray: var(--segment-size, 35) calc(100 - var(--segment-size, 35));
    }
}

.critical-segment {
    --segment-size: 35;
    animation-delay: 0s;
}

.medium-segment {
    --segment-size: 40;
    animation-delay: 0.3s;
}

.low-segment {
    --segment-size: 25;
    animation-delay: 0.6s;
}

.pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.total-issues {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.total-label {
    font-size: 6px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.pie-legend {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
    color: #000;
}

.legend-color {
    width: 6px;
    height: 6px;
    border-radius: 1px;
    flex-shrink: 0;
}

.legend-color.critical {
    background: #F05844;
}

.legend-color.medium {
    background: #F8B73B;
}

.legend-color.low {
    background: #FFFF99;
}

/* Line Chart Styles */
.line-chart {
    position: relative;
    width: 100%;
    height: 70px;
    margin-bottom: 6px;
}

.line-svg {
    width: 100%;
    height: 100%;
}

.trend-line {
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: drawLine 3s ease-out;
}

@keyframes drawLine {
    0% {
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dasharray: 1000;
        stroke-dashoffset: 0;
    }
}

.compliance-line {
    animation-delay: 0.5s;
}

.risk-line {
    animation-delay: 1s;
}

.data-point {
    opacity: 0;
    animation: fadeInPoint 0.5s ease-out 2s forwards;
}

@keyframes fadeInPoint {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.chart-legend {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.chart-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 7px;
    color: #000;
}

.legend-line {
    width: 12px;
    height: 1px;
    border-radius: 1px;
}

.legend-line.compliance {
    background: #2B6B9A;
}

.legend-line.risk {
    background: #F05844;
    position: relative;
}

.legend-line.risk::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 1px,
        #F05844 1px,
        #F05844 2px
    );
}

/* Horizontal Bar Chart Styles */
.bar-chart-horizontal {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bar-item {
    display: grid;
    grid-template-columns: 45px 1fr 30px;
    gap: 6px;
    align-items: center;
}

.bar-label {
    font-size: 8px;
    font-weight: 500;
    color: #000;
    text-align: right;
}

.bar-track {
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 2s ease-out;
    animation: fillBar 2s ease-out 1s both;
    position: relative;
}

@keyframes fillBar {
    0% {
        width: 0% !important;
    }
    100% {
        width: var(--bar-width, 50%);
    }
}

.bar-value {
    font-size: 8px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

/* Report Summary Styles */
.report-summary {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background: rgba(43, 107, 154, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(43, 107, 154, 0.1);
}

.summary-card {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex: 1;
}

.summary-icon {
    width: 32px;
    height: 32px;
    background: #2B6B9A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-icon i {
    color: white;
    font-size: 14px;
}

.summary-content h6 {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin: 0 0 4px 0;
    font-family: 'Raleway', sans-serif;
}

.summary-content p {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.3;
    margin: 0;
}

.summary-stats {
    display: flex;
    gap: 12px;
}

.summary-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.summary-stats .stat-number {
    font-size: 14px;
    font-weight: 700;
    color: #2B6B9A;
    line-height: 1;
}

.summary-stats .stat-label {
    font-size: 8px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

/* Responsive Design for Reporting Dashboard */
@media (max-width: 768px) {
    .reporting-insights-demo {
        max-width: 100%;
    }
    
    .insights-dashboard {
        padding: 15px;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .chart-container {
        padding: 10px;
    }
    
    .pie-chart {
        width: 100px;
        height: 100px;
    }
    
    .total-issues {
        font-size: 16px;
    }
    
    .total-label {
        font-size: 7px;
    }
    
    .line-chart {
        height: 80px;
    }
    
    .report-summary {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }
    
    .summary-stats {
        align-self: stretch;
        justify-content: space-around;
    }
}

@media (max-width: 480px) {
    .insights-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .export-btn {
        align-self: flex-end;
    }
    
    .pie-chart {
        width: 80px;
        height: 80px;
    }
    
    .total-issues {
        font-size: 14px;
    }
    
    .bar-item {
        grid-template-columns: 50px 1fr 35px;
        gap: 6px;
    }
    
    .bar-label {
        font-size: 9px;
    }
    
    .bar-value {
        font-size: 9px;
    }
    
    .summary-stats {
        gap: 8px;
    }
    
    .summary-stats .stat-number {
        font-size: 12px;
    }
    
    .summary-stats .stat-label {
        font-size: 7px;
    }
}

/* E-commerce Monitoring Demo Styles */
.ecommerce-monitoring-demo {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.ecommerce-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 2px solid #C4B6A6;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mockup-header {
    height: 30px;
    background: #C4B6A6;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.mockup-header .header-dots {
    display: flex;
    gap: 6px;
    margin-right: 16px;
    align-items: center;
}

.mockup-header .header-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #adb5bd;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;
}

.mockup-header .header-dots span:hover {
    transform: scale(1.1);
}

.mockup-header .header-dots span:first-child { 
    background: linear-gradient(135deg, #ff6b5a 0%, #ff5f56 100%);
    box-shadow: 0 2px 4px rgba(255, 95, 86, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.mockup-header .header-dots span:nth-child(2) { 
    background: linear-gradient(135deg, #ffcd3c 0%, #ffbd2e 100%);
    box-shadow: 0 2px 4px rgba(255, 189, 46, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.mockup-header .header-dots span:nth-child(3) { 
    background: linear-gradient(135deg, #32d74b 0%, #27ca3f 100%);
    box-shadow: 0 2px 4px rgba(39, 202, 63, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mockup-header .browser-tabs {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 2px;
}

.mockup-header .tab {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 9px;
    background: #f8f9fa;
    border-radius: 6px 6px 0 0;
    font-size: 8px;
    color: #6c757d;
    border: 1px solid #dee2e6;
    border-bottom: none;
    min-width: 90px;
    max-width: 135px;
}

.mockup-header .tab.active {
    background: white;
    color: #495057;
    border-color: white;
}

.mockup-header .tab-icon {
    font-size: 12px;
}

.mockup-header .tab-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.mockup-header .live-monitor {
    font-size: 9px;
    color: white;
    font-weight: 500;
    padding: 6px 9px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mockup-header .active-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.mockup-nav {
    display: none;
}

.nav-logo {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.nav-menu {
    display: flex;
    gap: 16px;
}

.nav-menu span {
    font-size: 12px;
    color: rgba(0,0,0,0.7);
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-menu span:hover {
    color: var(--primary-green);
}

/* No border styles for mockup nav elements */
.nav-logo.no-border,
.nav-menu.no-border {
    border: none !important;
    box-shadow: none !important;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
}

.product-card {
    background: #f8f5ee;
    border: 1px solid var(--primary-blue);
    border-radius: 4px;
    padding: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card.scanning {
    border-color: var(--primary-blue);
    background: rgba(248, 183, 59, 0.05);
}

.product-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    width: 100%;
    height: 80px;
    background: #e5e5e5;
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-placeholder::after {
    content: '👕';
    font-size: 24px;
    opacity: 0.5;
}

.scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(82, 160, 97, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card.scanning .scan-overlay {
    opacity: 1;
    animation: scanPulse 2s ease-in-out infinite;
}

@keyframes scanPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.scan-beam {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-blue), transparent);
    animation: scanBeam 2s ease-in-out infinite;
}

@keyframes scanBeam {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

.product-info {
    text-align: left;
}

.product-info h4 {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
    line-height: 1.2;
}

.sustainability-claim {
    font-size: 10px;
    color: rgba(0,0,0,0.7);
    margin-bottom: 8px;
    line-height: 1.3;
}

.scan-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--primary-blue);
    font-weight: 500;
}

.scan-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: scanDotPulse 1.5s ease-in-out infinite;
}

@keyframes scanDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.scanning-progress {
    padding: 16px;
    background: white;
    border-top: 1px solid white;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2B6B9A,  #2B6B9A);
    border-radius: 2px;
    animation: progressScan 3s ease-in-out infinite;
}

@keyframes progressScan {
    0% { width: 0%; }
    50% { width: 75%; }
    100% { width: 100%; }
}

.scan-stats {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.scan-stats .stat {
    font-size: 11px;
    color: rgba(0,0,0,0.7);
    font-weight: 500;
    text-align: center;
    flex: 1;
}

.scan-stats .stat-number {
    color: var(--primary-green);
    font-weight: 600;
}

/* Staggered Animation Delays */
.product-card[data-scan-delay="0"] {
    animation-delay: 0s;
}

.product-card[data-scan-delay="0.5"] {
    animation-delay: 0.5s;
}

.product-card[data-scan-delay="1"] {
    animation-delay: 1s;
}

.product-card[data-scan-delay="1.5"] {
    animation-delay: 1.5s;
}

.product-card[data-scan-delay="0"] .scan-beam {
    animation-delay: 0s;
}

.product-card[data-scan-delay="0.5"] .scan-beam {
    animation-delay: 0.5s;
}

.product-card[data-scan-delay="1"] .scan-beam {
    animation-delay: 1s;
}

.product-card[data-scan-delay="1.5"] .scan-beam {
    animation-delay: 1.5s;
}

/* E-commerce Monitoring Demo Responsive Design */
@media (max-width: 768px) {
    .ecommerce-monitoring-demo {
        max-width: 320px;
    }
    
    .product-grid {
        gap: 8px;
        padding: 12px;
    }
    
    .product-card {
        padding: 8px;
    }
    
    .product-image {
        height: 60px;
    }
    
    .product-placeholder::after {
        font-size: 18px;
    }
    
    .product-info h4 {
        font-size: 11px;
    }
    
    .sustainability-claim {
        font-size: 9px;
    }
    
    .scan-indicator {
        font-size: 9px;
    }
    
    .scanning-progress {
        padding: 12px;
    }
    
    .scan-stats .stat {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .ecommerce-monitoring-demo {
        max-width: 280px;
    }
    
    .mockup-nav {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .nav-menu {
        gap: 12px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .product-image {
        height: 50px;
    }
}

.platform-demo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* min-height: 360px; */
    padding: 20px;
}

.team-icons {
    display: flex;
    gap: 12px;
}

.team-icon {
    padding: 12px 16px;
    background: var(--primary-green);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(82, 160, 97, 0.3);
}

/* Simple Detection Demo Styles */
.detection-demo-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.simple-alert-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    min-width: 320px;
    position: relative;
    overflow: hidden;
}

.simple-alert-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #F05844;
    animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% { 
        background: #F05844;
        box-shadow: 0 0 0 0 rgba(240, 88, 68, 0.4);
    }
    50% { 
        background: #F05844;
        box-shadow: 0 0 0 8px rgba(240, 88, 68, 0);
    }
}

.alert-icon {
    width: 50px;
    height: 50px;
    background: #F05844;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.1);
    }
}

.alert-icon i {
    color: white;
    font-size: 20px;
}

.alert-content {
    flex: 1;
    min-width: 0;
}

.alert-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
    line-height: 1.3;
    font-family: 'Raleway', sans-serif;
}

.alert-content p {
    font-size: 14px;
    color: rgba(0,0,0,0.7);
    line-height: 1.4;
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

.alert-badge {
    flex-shrink: 0;
}

.alert-badge span {
    display: inline-block;
    padding: 6px 12px;
    background: #F05844;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Raleway', sans-serif;
}

/* Issue Detection Demo Styles */
.detection-demo {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.detection-dashboard {
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.3s ease;
}

.detection-dashboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.dashboard-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detection-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-indicator.scanning {
    position: relative;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.5);
        opacity: 0.7;
    }
}

.status-text {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.detection-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.detection-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.detection-stats .stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #F05844;
    line-height: 1;
}

.detection-stats .stat-label {
    font-size: 11px;
    color: rgba(0,0,0,0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detection-feed {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.detection-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    animation: detectionItemAppear 0.6s ease-out forwards;
}

.detection-item[data-delay="0"] {
    animation-delay: 0.5s;
}

.detection-item[data-delay="1"] {
    animation-delay: 1s;
}

.detection-item[data-delay="2"] {
    animation-delay: 1.5s;
}

@keyframes detectionItemAppear {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.detection-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.detection-item.critical {
    background: rgba(240, 88, 68, 0.05);
    border-color: rgba(240, 88, 68, 0.2);
}

.detection-item.warning {
    background: rgba(248, 183, 59, 0.05);
    border-color: rgba(248, 183, 59, 0.2);
}

.detection-item.low {
    background: rgba(108, 117, 125, 0.05);
    border-color: rgba(108, 117, 125, 0.2);
}

.detection-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.detection-item.critical .detection-icon {
    background: #F05844;
    color: white;
}

.detection-item.warning .detection-icon {
    background: #F8B73B;
    color: white;
}

.detection-item.low .detection-icon {
    background: #6c757d;
    color: white;
}

.detection-icon i {
    font-size: 14px;
}

.detection-content {
    flex: 1;
    min-width: 0;
}

.detection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    gap: 10px;
}

.risk-level {
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.risk-level.critical {
    background: #F05844;
    color: white;
}

.risk-level.warning {
    background: #F8B73B;
    color: white;
}

.risk-level.low {
    background: #6c757d;
    color: white;
}

.detection-time {
    font-size: 11px;
    color: rgba(0,0,0,0.6);
    font-weight: 500;
    white-space: nowrap;
}

.detection-message {
    margin-bottom: 8px;
}

.detection-message strong {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    display: block;
    margin-bottom: 2px;
    line-height: 1.3;
}

.detection-message p {
    font-size: 12px;
    color: rgba(0,0,0,0.7);
    line-height: 1.4;
    margin: 0;
}

.detection-product {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 11px;
}

.product-name {
    color: #000;
    font-weight: 500;
}

.product-id {
    color: rgba(0,0,0,0.6);
    font-weight: 400;
}

.detection-action {
    display: flex;
    align-items: flex-start;
    margin-top: 2px;
}

.detection-action .action-btn {
    padding: 4px 8px;
    background: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.detection-action .action-btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    transform: translateY(-1px);
}

.detection-summary {
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    padding: 16px 20px;
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    text-align: center;
}

.summary-count {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.summary-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-item.critical .summary-count {
    color: #F05844;
}

.summary-item.critical .summary-label {
    color: #F05844;
}

.summary-item.warning .summary-count {
    color: #F8B73B;
}

.summary-item.warning .summary-label {
    color: #F8B73B;
}

.summary-item.low .summary-count {
    color: #6c757d;
}

.summary-item.low .summary-label {
    color: #6c757d;
}

/* Detection Demo Responsive Design */
@media (max-width: 768px) {
    .detection-demo {
        max-width: 320px;
    }
    
    .dashboard-header {
        padding: 12px 16px;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .detection-stats {
        align-self: stretch;
        justify-content: flex-end;
    }
    
    .detection-feed {
        padding: 12px 16px;
        gap: 10px;
    }
    
    .detection-item {
        padding: 10px;
    }
    
    .detection-icon {
        width: 28px;
        height: 28px;
    }
    
    .detection-icon i {
        font-size: 12px;
    }
    
    .detection-message strong {
        font-size: 12px;
    }
    
    .detection-message p {
        font-size: 11px;
    }
    
    .detection-summary {
        padding: 12px 16px;
        gap: 15px;
    }
    
    .summary-count {
        font-size: 18px;
    }
    
    .summary-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .detection-demo {
        max-width: 280px;
    }
    
    .dashboard-header {
        padding: 10px 12px;
    }
    
    .status-text {
        font-size: 13px;
    }
    
    .detection-stats .stat-number {
        font-size: 16px;
    }
    
    .detection-stats .stat-label {
        font-size: 10px;
    }
    
    .detection-feed {
        padding: 10px 12px;
        max-height: 250px;
    }
    
    .detection-item {
        padding: 8px;
        gap: 10px;
    }
    
    .detection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .detection-summary {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .summary-count {
        font-size: 16px;
    }
}

/* Features Grid Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 50px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
    }
    
    .feature-icon i {
        font-size: 18px;
    }
    
    .feature-content h4 {
        font-size: 17px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .feature-item {
        padding: 18px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 16px;
    }
    
    .feature-content h4 {
        font-size: 16px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .feature-item {
        padding: 16px;
        gap: 16px;
    }
    
    .feature-content h4 {
        font-size: 15px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
}

/* Solution Section Responsive Design */
@media (max-width: 1024px) {
    .solution-benefits {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 600px;
    }
    
    .solution-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: left !important;
    }
    
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        text-align: left !important;
    }
    
    .hero-title {
        order: 1 !important;
    }
    
    .hero-visual {
        order: 2 !important;
        margin: 20px 0 !important;
    }
    
    .hero-description {
        order: 3 !important;
    }
    
    .hero-actions {
        order: 4 !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
}
@media (max-width: 768px) {  
    /* Ensure 44px touch targets for mobile buttons */
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        min-height: 44px !important;
        padding: 12px 24px !important;
        font-size: 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
    }
    
    /* Ensure all mobile buttons meet 44px touch target requirement */
    .btn-primary,
    .btn-secondary {
        min-height: 44px !important;
        min-width: 44px !important;
        padding: 12px 24px !important;
    }
    
    /* Mobile navigation touch targets */
    .navbar-nav .nav-link {
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        padding: 12px 0 !important;
    }
    
    /* Mobile CTA buttons */
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        min-height: 44px !important;
        padding: 12px 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Newsletter form mobile touch targets */
    .newsletter-form .btn-primary {
        min-height: 44px !important;
        padding: 12px 24px !important;
    }
    
    .email-input {
        min-height: 44px !important;
        padding: 12px 16px !important;
    }
}

/* Mobile-only: Hide simple chart visuals in detection feature */
@media (max-width: 768px) {
    #detection .simple-chart-visual,
    #detection .line-chart-visual {
        display: none !important;
    }
}

/* Mobile-only: Hide chart visuals in reporting feature */
@media (max-width: 768px) {
    #reporting .simple-chart-visual,
    #reporting .pie-chart-visual {
        display: none !important;
    }
}

/* Mobile-only: Hide platform visual in unified platform feature */
@media (max-width: 768px) {
    #platform .feature-visual {
        display: none !important;
    }
}
    
    .solution-benefit-item h3 {
        font-size: 18px;
    }
    
.solution-benefit-item p {
font-size: 15px;
    }

@media (max-width: 480px) {
    .solution-header h2 {
        font-size: 1.8rem;
    }
    
    .solution-header p {
        font-size: 15px;
    }
    
    .solution-benefit-item {
        padding: 25px 20px;
    }
    
    .solution-benefit-item h3 {
        font-size: 16px;
    }
    
    .solution-benefit-item p {
        font-size: 14px;
    }
}

/* Platform Stats Responsive Design */
@media (max-width: 1024px) {
    .stats-banner {
        padding: 40px 30px;
        gap: 30px;
    }
    
    .platform-stats-section .stats-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .platform-stats-section .stat-item {
        flex: 1;
        min-width: 120px;
        border-right: 1px solid rgba(255, 255, 255, 0.4);
        border-bottom: none;
        padding: 10px 5px;
    }
    
    .platform-stats-section .stat-item:last-child {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .platform-stats-section {
        padding: 40px 0;
    }
    
    .stats-banner {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .stats-icon {
        width: 60px;
        height: 60px;
    }
    
    .stats-icon i {
        font-size: 24px;
    }
    
    .stats-info h3 {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item .stat-number {
        font-size: 36px;
    }
    
    .stat-item {
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 15px;
    }
    
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .stats-banner {
        padding: 20px 15px;
    }
    
    .stats-info h3 {
        font-size: 16px;
    }
    
    .stat-item .stat-number {
        font-size: 32px;
    }
    
    .stat-item .stat-label {
        font-size: 11px;
    }
}

/* Value Proposition Responsive Design */
@media (max-width: 1024px) {
    .value-highlight {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .value-highlight:nth-child(even) {
        direction: ltr;
    }
    
    .workflow-hub {
        width: 250px;
        height: 250px;
    }
    
    .hub-center {
        width: 80px;
        height: 80px;
        font-size: 10px;
    }
    
    .hub-center i {
        font-size: 20px;
    }
    
    .team-node {
        width: 60px;
        height: 60px;
        font-size: 9px;
    }
    
    .team-node i {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .value-proposition-section {
        padding: 60px 0;
    }
    
    .value-proposition-section .section-header h2 {
        font-size: 2rem;
    }
    
    .value-highlights {
        gap: 60px;
    }
    
    .value-content h3 {
        font-size: 1.8rem;
    }
    
    .value-visual {
        padding: 20px;
    }
    
    .compliance-dashboard,
    .trust-metrics {
        width: 280px;
        padding: 20px;
    }
    
    .workflow-hub {
        width: 200px;
        height: 200px;
    }
    
    .hub-center {
        width: 60px;
        height: 60px;
        font-size: 9px;
    }
    
    .hub-center i {
        font-size: 16px;
    }
    
    .team-node {
        width: 50px;
        height: 50px;
        font-size: 8px;
    }
    
    .team-node i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .value-proposition-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .value-content h3 {
        font-size: 1.5rem;
    }
    
    .compliance-dashboard,
    .trust-metrics {
        width: 100%;
        max-width: 280px;
    }
}

/* About Us Section */
.about-us-section {
    padding: 0 0 0 0;
    background: #F8F5EE;
    padding-top: 100px;
}

/* About Hero Image */
.about-hero-image {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    background: #F8F5EE;
   
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 4px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-overlay-content h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-overlay-content p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

/* About Hero Image Responsive Design */
@media (max-width: 1024px) {
    .about-hero-image {
        height: 25vh;
        min-height: 200px;
    }
    
    .hero-overlay-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-hero-image {
        height: 25vh;
        min-height: 180px;
        padding-bottom: 60px;
    }
    
    .hero-overlay-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-overlay-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .about-hero-image {
        height: 20vh;
        min-height: 150px;
        margin-bottom: 40px;
    }
    
    .hero-overlay-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0;
    }
}

/* Mission Hero Section */
.mission-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.mission-hero-content h2 {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    margin-bottom: 40px;
}

.mission-hero-body p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0,0,0,0.85);
    margin-bottom: 24px;
}

.about-section-title {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    margin: 0 0 40px 0;
    text-align: left;
}

.mission-tagline {
    margin-top: 40px;
    text-align: left;
}

.mission-tagline strong {
    font-size: 18px;
    color: rgba(0,0,0,0.85);
    font-weight: 400;
    font-style: normal;
    font-family: 'Raleway', sans-serif;
    line-height: 1.7;
}

/* Mission Visual Grid */
.mission-hero-visual {
    position: relative;
}

.mission-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.mission-image-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(82, 160, 97, 0.1), transparent);
    transition: left 0.6s ease;
}

.mission-image-placeholder:hover::before {
    left: 100%;
}

.mission-image-placeholder:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(82, 160, 97, 0.2);
}

.mission-image-placeholder i {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.mission-image-placeholder:hover i {
    transform: scale(1.1);
}

.mission-image-placeholder span {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-dark-blue);
}

.main-image {
    grid-row: 1 / 2;
}

.accent-image-1 {
    grid-row: 2 / 3;
}

.accent-image-2 {
    grid-row: 3 / 4;
}

.main-image i {
    font-size: 64px;
}

/* CEO Quote Styles */
.ceo-quote {
    background: var(--primary-green);
    border-radius: 4px;
    padding: 60px 50px 60px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-mark {
    display: none;
}

.ceo-quote blockquote {
    margin: 0;
    padding: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.about-us-section .ceo-quote blockquote p {
    font-family: 'Raleway', sans-serif !important;
    font-size: 22px !important;
    line-height: 1.6 !important;
    color: white !important;
    font-style: italic !important;
    margin: 0 !important;
    text-align: left !important;
    font-weight: 400 !important;
    text-transform: italic !important;
}

.ceo-quote blockquote p .highlight {
    color: #52A061;
}

.quote-attribution {
    margin-top: 40px;
    padding-top: 0;
    border-top: none;
    position: relative;
}

.ceo-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ceo-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    box-shadow: none;
}

.ceo-details strong {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
    text-transform: none;
    letter-spacing: 0;
}

.ceo-details span {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: white;
    font-weight: 400;
}

/* Brand icon in top right corner */
.ceo-quote::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-image: url('../images/Brandmark_Black.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 10;
    filter: invert(1) brightness(2);
}

/* About Content Section */
.about-content-section {
    margin-bottom: 80px;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.about-text-content h3 {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-text-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0,0,0,0.85);
    margin-bottom: 20px;
}

/* About Visual Content - 3-Image Layout */
.about-image-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    width: 100%;
    height: 600px;
}

.collage-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.collage-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(82, 160, 97, 0.2);
}

.collage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

/* 3-Image Layout */
/* Top left - Flying Shirt */
.image-1 {
    grid-column: 1;
    grid-row: 1;
}

/* Top right - CIFF 2024 */
.image-2 {
    grid-column: 2;
    grid-row: 1;
}

/* Bottom full width - Team */
.image-3 {
    grid-column: 1 / 3;
    grid-row: 2;
}

.team-section {
    margin-bottom: 40px;
    background: #F8F5EE;
    padding: 60px 0;
    margin: 0 0 0px 0;
}

.team-section h3 {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Modern Team Grid Layout */
.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-header-card {
    background: #F8F5EE;
    padding: 40px 30px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    border: 1px solid var(--primary-green);
}

.team-header-card h3 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
}

.team-header-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0,0,0,0.85);
    margin: 0;
}

.team-member-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.member-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.member-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.team-member-card:hover .member-card-image {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 20px 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.member-overlay h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 4px;
    color: white;
}

.member-overlay p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
    color: white;
}

.social-links-overlay {
    display: flex;
    gap: 10px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.social-link-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #000;
    border: 1px solid black;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-overlay:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.social-link-overlay i {
    font-size: 14px;
    color: white;
}

/* Email Display Overlay Styling */
.email-display-overlay {
    display: flex;
    align-items: center;
    gap: 0;
    background: transparent;
    color: white;
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.email-display-overlay:hover {
    transform: translateY(-1px);
}

.email-display-overlay i {
    display: none;
}

.email-display-overlay .email-text {
    color: white;
    font-size: 14px;
    font-weight: 400;
}

.join-team-card {
    background: var(--primary-green);
    border-radius: 4px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    border: 1px solid var(--primary-green);
    aspect-ratio: 1;
    transition: all 0.3s ease;
}

.join-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(82, 160, 97, 0.3);
}

.join-team-content h4 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}

.join-team-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.9);
}

.join-team-content .btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 12px 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    border-radius: 4px;
    align-self: flex-start;
}

.join-team-content .btn-secondary:hover {
    background: white;
    color: var(--primary-green);
}

.team-member {
    background: #F8F5EE;
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(82, 160, 97, 0.05), transparent);
    transition: left 0.6s ease;
}

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.member-photo {
    width: 240px;
    height: 240px;
    margin: 0 auto 20px;
    border-radius: 4px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.member-image {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
    object-position: center;
    display: block;
    border: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
    position: relative;
    z-index: 2;
}

.member-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(82, 160, 97, 0.3);
}

/* Peter's image in black and white */
.team-member:nth-child(2) .member-image {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.team-member:nth-child(2) .member-image:hover {
    filter: grayscale(100%);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(82, 160, 97, 0.3);
}

/* Fallback background pattern */
.member-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%), 
                linear-gradient(-45deg, #f8f9fa 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f8f9fa 75%), 
                linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.1;
    z-index: 1;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: var(--neutral-gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.photo-placeholder i {
    font-size: 48px;
    color: var(--neutral-gray-dark);
}

.team-member h4 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.member-role {
    font-size: 16px;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 16px;
}

.member-bio {
    font-size: 14px;
    color: rgba(0,0,0,0.95);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    border: 2px solid #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 16px;
    color: white;
    transition: color 0.3s ease;
}

.social-link:hover {
    background: #52A061;
    border-color: #52A061;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(82, 160, 97, 0.3);
}

.social-link:hover i {
    color: white;
}

.backed-by-section {
    background: #F8F5EE;
    padding: 0;
    margin: 0;
}

.partners-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 40px 20px;
    background: white;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(82, 160, 97, 0.05), transparent);
    animation: bannerShimmer 4s ease-in-out infinite;
}

@keyframes bannerShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.logo-placeholder {
    width: 160px;
    height: 80px;
    background: #f8f9fa;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-gray-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-placeholder:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: scale(1.1) translateY(-2px);
}

.partner-logo-img {
    width: 140px;
    height: 70px;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(30%) opacity(0.7);
    animation: logoFloat 6s ease-in-out infinite;
}

.partner-logo:nth-child(1) .partner-logo-img { animation-delay: 0s; }
.partner-logo:nth-child(2) .partner-logo-img { animation-delay: 1s; }
.partner-logo:nth-child(3) .partner-logo-img { animation-delay: 2s; }
.partner-logo:nth-child(4) .partner-logo-img { animation-delay: 3s; }
.partner-logo:nth-child(5) .partner-logo-img { animation-delay: 4s; }

@keyframes logoFloat {
    0%, 100% { 
        transform: scale(1) translateY(0px);
    }
    25% { 
        transform: scale(1.05) translateY(-2px);
    }
    50% { 
        transform: scale(1.1) translateY(-4px);
        filter: grayscale(0%) opacity(1);
    }
    75% { 
        transform: scale(1.05) translateY(-2px);
    }
}

.partner-logo-img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15) translateY(-5px);
    animation-play-state: paused;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.map-header p {
    font-size: 18px;
    color: rgba(0,0,0,0.85);
    margin: 0;
}

.map-container {
    margin-bottom: 40px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-info {
    display: flex;
    justify-content: center;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    width: 100%;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.location-item i {
    color: var(--primary-blue);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.location-item strong {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    display: block;
    margin-bottom: 8px;
}

.location-item p {
    font-size: 14px;
    color: rgba(0,0,0,0.85);
    line-height: 1.5;
    margin: 0;
}

/* Map Section Responsive Design */
@media (max-width: 1024px) {
    .location-details {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .location-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .location-item i {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-header h2 {
        font-size: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .location-details {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .map-header h2 {
        font-size: 1.8rem;
    }
    
    .map-header p {
        font-size: 16px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .location-details {
        gap: 20px;
    }
    
    .location-item strong {
        font-size: 15px;
    }
    
    .location-item p {
        font-size: 13px;
    }
}

/* Newsletter Section */
.newsletter-section {

    padding: 100px 0;
    background: url('../images/andreas-gucklhorn-mawU2PoJWfU-unsplash.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-banner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    background: #F8F5EE;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.newsletter-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.newsletter-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--neutral-dark-green));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(82, 160, 97, 0.3);
}

.newsletter-icon i {
    font-size: 48px;
    color: white;
}

.newsletter-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.newsletter-info strong {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.newsletter-info span {
    font-size: 14px;
    color: #000;
    opacity: 0.8;
}

.newsletter-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #d4edda;
    color: #155724;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #c3e6cb;
}

.newsletter-message {
    position: relative;
    text-align: left;
    width: 100%;
}

.newsletter-form {
    width: 100%;
}

.newsletter-message h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.newsletter-message p {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    align-items: stretch;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    flex-direction: row;
}

.email-input {
    padding: 16px 20px;
    border: 2px solid #ffffff !important;
    border-radius: 4px;
    font-size: 16px;
    flex-grow: 1;
    font-family: 'Raleway', sans-serif;
    background: #ffffff !important;
    color: #000;
    transition: all 0.3s ease;
}

.newsletter-form .btn-primary {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    align-self: stretch;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0px #ffffff;
}

.email-input::placeholder {
    color: #999;
}

.newsletter-disclaimer {
    font-size: 12px !important;
    color: #000;
    margin: 0;
}

.newsletter-disclaimer a {
    color: var(--primary-green);
    text-decoration: none;
}

.newsletter-disclaimer a:hover {
    text-decoration: underline;
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.newsletter-benefits .benefit-promise {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #F8F5EE;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-benefits .benefit-promise:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #F8F5EE;
}

.newsletter-benefits .benefit-promise i {
    color: var(--primary-green);
    font-size: 20px;
    flex-shrink: 0;
}

.newsletter-benefits .benefit-promise span {
    font-size: 15px;
    font-weight: 500;
    color: var(--neutral-dark-blue);
    line-height: 1.4;
}

/* Newsletter Responsive Design */
@media (max-width: 1024px) {
    .newsletter-banner {
        text-align: center;
        gap: 30px;
        align-items: center;
        margin: 0;
    }
    
    .newsletter-message {
        text-align: center;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-banner {
        padding: 30px 20px;
    }
    
    .newsletter-icon {
        width: 100px;
        height: 100px;
    }
    
    .newsletter-icon i {
        font-size: 40px;
    }
    
    .newsletter-message h2 {
        font-size: 1.8rem;
    }
    
    .email-input {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .newsletter-message h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .email-input {
        min-width: auto;
        width: 100%;
    }
    
    .newsletter-form .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-benefits .benefit-promise {
        padding: 15px;
    }
    
    .newsletter-benefits .benefit-promise span {
        font-size: 14px;
    }
}

/* Policy Hero Background */
.policy-hero-background {
    background: var(--primary-blue);
    padding: 120px 0 80px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background-content {
    text-align: center;
    color: white;
}

.hero-background-content h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Raleway', sans-serif;
}

/* Policy Hero Background Responsive Design */
@media (max-width: 1024px) {
    .hero-background-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-background-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-background-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0;
    }
}

/* Privacy Policy Styles */
.privacy-policy-section {
    padding: 120px 0 80px;
    background: #F8F5EE;
    margin-top: 0;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.last-updated {
    font-size: 16px;
    color: var(--primary-green);
    font-weight: 500;
    margin: 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-green);
}

.privacy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    margin-top: 25px;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0,0,0,0.85);
    margin-bottom: 16px;
}

.privacy-section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.privacy-section li {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0,0,0,0.85);
    margin-bottom: 8px;
}

.privacy-section li strong {
    color: #000;
    font-weight: 600;
}

.company-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-green);
    margin: 20px 0;
}

.company-info p {
    margin-bottom: 8px;
}

.company-info p:last-child {
    margin-bottom: 0;
}

.data-category {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid var(--primary-blue);
}

.data-category h3 {
    margin-top: 0;
    color: var(--primary-blue);
}

.legal-basis {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid var(--primary-blue);
}

.legal-basis h3 {
    margin-top: 0;
    color: var(--primary-blue);
}

.data-sharing {
    margin-bottom: 25px;
}

.third-party-service {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid var(--primary-yellow);
}

.third-party-service h3 {
    margin-top: 0;
    color: var(--primary-yellow);
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-green);
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border: 2px solid #2B6B9A;
    border-radius: 4px;
    overflow: hidden;
}

.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
    border: 2px solid #2B6B9A;
    border-radius: 4px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #2B6B9A;
    vertical-align: top;
}

.cookie-table th {
    background: #2B6B9A;
    font-weight: 600;
    color: white;
    border-bottom: 2px solid #2B6B9A;
}

.cookie-table td {
    color: rgba(0,0,0,0.85);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}


/* New Contact Page Styles */
.contact-section {
    padding: 80px 0 80px;
    background: #F8F5EE;
    margin-top: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: flex-start;
}

/* Left Content Area */
.contact-content-area {
    padding-right: 40px;
    padding-left: 0;
}

.contact-intro {
    margin-bottom: 60px;
}

.contact-tagline {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-content-area h1 {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-description {
    font-size: 16px;
    color: rgba(0,0,0,0.85);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Layout Grid */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Left Side - Contact Info */
.contact-info-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.contact-info-item p {
    font-size: 14px;
    color: rgba(0,0,0,0.85);
    line-height: 1.5;
    margin: 0;
}

.social-links-contact {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.social-links-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: 1px var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.social-links-contact a i {
    font-size: 16px;
    color: white;
}

/* Right Side - Team Contact Cards */
.contact-team-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-team-right h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.team-contact-cards-compact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-contact-card-compact {
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid white;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s ease;
    min-width: 320px;
}

.team-contact-card-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.team-member-photo-small {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-photo-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.team-member-info-compact {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-member-info-compact h4 {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-bottom: 4px;
    line-height: 1.2;
    font-family: 'Raleway', sans-serif;
}

.team-member-info-compact .member-title {
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 8px;
}

.member-description-compact {
    font-size: 13px;
    color: rgba(0,0,0,0.85);
    line-height: 1.4;
    margin-bottom: 12px;
}

.member-email {
    font-size: 13px;
    color: var(--primary-green) !important;
    line-height: 1.4;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-email i {
    color: var(--primary-green);
    font-size: 12px;
}

.team-member-info-compact .btn-secondary.small {
    padding: 8px 16px;
    font-size: 13px;
    gap: 6px;
    align-self: flex-start;
}

/* Legacy styles for backward compatibility */
.team-contact-section {
    margin-bottom: 40px;
}

.team-contact-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}

.team-contact-cards-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-contact-card-new {
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    transition: all 0.3s ease;
}

.team-contact-card-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.team-member-photo {
    flex-shrink: 0;
}

.contact-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-green);
}

.team-member-info {
    flex: 1;
}

.team-member-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.member-title {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 6px;
}

.member-description {
    font-size: 13px;
    color: rgba(0,0,0,0.85);
    line-height: 1.4;
    margin-bottom: 12px;
}

.contact-actions {
    display: flex;
    gap: 10px;
}

.btn-secondary.small {
    padding: 8px 16px;
    font-size: 13px;
    gap: 6px;
}

/* Right Form Area */
.contact-form-area {
    background: #DBD5D1;
    border-radius: 4px;
    padding: 0;
    position: relative;
}

.contact-form-container {
    padding: 40px;
}

.contact-form-container h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

.form-subtitle {
    font-size: 14px;
    color: rgba(0,0,0,0.7);
    margin-bottom: 30px;
    line-height: 1.5;
    font-family: 'Raleway', sans-serif;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-new {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    padding: 16px 20px;
    border: 1px solid white;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    background: white;
    color: #000;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
    color: #999;
    font-size: 16px;
}

.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(82, 160, 97, 0.1);
}

.form-group-new textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-new select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 50px;
}

.checkbox-group-new {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
}

/* main label wrapper */
.checkbox-label-new {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.6;
    cursor: pointer;
    font-size: 14px;
    flex-wrap: nowrap;
    /* keep checkbox and text together */
}

.checkbox-label-new > span:not(.checkmark-new) {
    flex: 1;
    word-wrap: break-word;
    /* allows long text to wrap within the span */
}

.checkbox-label-new input[type="checkbox"] {
    display: none;
}

/* custom checkbox visual */
.checkmark-new {
    width: 18px;
    height: 18px;
    border: 2px solid #e5e5e5;
    border-radius: 3px;
    background: white;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 3px;
}

.checkbox-label-new input[type="checkbox"]:checked + .checkmark-new {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.checkbox-label-new input[type="checkbox"]:checked + .checkmark-new::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* links inside label */
.checkbox-label-new a {
    color: #3b82f6;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label-new a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Standalone class for policy links with no extra spacing */
.inline-policy-link {
    color: #3b82f6;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
}

.inline-policy-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Visual distinction for optional vs required checkboxes */
.checkbox-optional em {
    color: #64748b;
    font-style: normal;
    font-size: 13px;
}

.checkbox-required strong {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 13px;
}

.btn-contact-submit {
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: flex-start;
}

.btn-contact-submit:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(82, 160, 97, 0.3);
}

/* Response Promise Section */
.response-promise-section {
    padding: 60px 0;
    background: #F8F5EE;
}

.response-promise-new {
    background: white;
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.promise-icon-new {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promise-icon-new i {
    color: white;
    font-size: 20px;
}

.promise-content-new h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.promise-content-new p {
    font-size: 16px;
    color: rgba(0,0,0,0.85);
    line-height: 1.6;
    margin: 0;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    margin: 20px;
    background: #DBD5D1;
    border-radius: 4px;
    width: 600px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

div.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #000;
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary-red);
}

.modal-content {
    padding: 20px 40px 40px;
}

.modal-intro {
    margin-bottom: 30px;
}

.modal-intro p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-form .form-group-new {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.modal-form .form-group-new input,
.modal-form .form-group-new select,
.modal-form .form-group-new textarea {
    padding: 16px 20px;
    border: 1px solid white;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    background: white;
    color: #000;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.modal-form .form-group-new input::placeholder,
.modal-form .form-group-new textarea::placeholder {
    color: #999;
    font-size: 16px;
}

.modal-form .form-group-new input:focus,
.modal-form .form-group-new select:focus,
.modal-form .form-group-new textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(82, 160, 97, 0.1);
}

.modal-form .form-group-new textarea {
    resize: vertical;
    min-height: 120px;
}

.modal-form .form-group-new select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 50px;
}

.modal-form .checkbox-group-new {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
}

.modal-form .checkbox-label-new input[type="checkbox"] {
    display: none;
}

.modal-form /* custom checkbox visual */
.checkmark-new {
    width: 18px;
    height: 18px;
    border: 2px solid #e5e5e5;
    border-radius: 3px;
    background: white;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 3px;
}

.modal-form .checkbox-label-new input[type="checkbox"]:checked + .checkmark-new {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.modal-form .checkbox-label-new input[type="checkbox"]:checked + .checkmark-new::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.modal-form /* links inside label */
.checkbox-label-new a {
    color: #3b82f6;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
}

.modal-form .checkbox-label-new a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.modal-form .btn-contact-submit {
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: flex-start;
}

.modal-form .btn-contact-submit:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(82, 160, 97, 0.3);
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .modal-container {
        max-width: 95%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 20px 25px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 15px 25px 30px;
    }
    
    .modal-intro {
        margin-bottom: 25px;
    }
}

/* Article Newsletter CTA */
.article-newsletter-cta {
    margin: 40px 0;
    padding: 0;
}

.newsletter-cta-content {
    background: linear-gradient(135deg, #2B6B9A 0%, #52A061 100%);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-cta-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-cta-icon i {
    font-size: 24px;
    color: white;
}

.newsletter-cta-text {
    flex: 1;
}

.newsletter-cta-text h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-family: 'Raleway', sans-serif;
}

.newsletter-cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.newsletter-cta-content .btn-primary {
    background: white;
    color: var(--primary-blue);
    flex-shrink: 0;
    white-space: nowrap;
}

.newsletter-cta-content .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .newsletter-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .newsletter-cta-content .btn-primary {
        width: 100%;
    }
}

/* Newsletter Modal Specific Styles */
.modal-container--newsletter {
    max-width: 500px;
}

.newsletter-form-modal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-form-modal .form-group-new {
    display: flex;
    flex-direction: column;
}

.newsletter-form-modal input[type="email"] {
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    background: white;
    transition: all 0.3s ease;
}

.newsletter-form-modal input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(43, 107, 154, 0.1);
}

.newsletter-form-modal button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.newsletter-form-modal .newsletter-disclaimer {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.4;
    margin: -10px 0 0 0;
    text-align: center;
}

.newsletter-form-modal .newsletter-disclaimer a {
    color: var(--primary-blue);
    text-decoration: none;
}

.newsletter-form-modal .newsletter-disclaimer a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-container {
        max-width: 100%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 15px 20px 10px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .modal-content {
        padding: 10px 20px 25px;
    }
    
    .modal-intro {
        margin-bottom: 20px;
    }
}

/* Contact Page Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-content-area {
        padding-right: 0;
    }
    
    .contact-content-area h1 {
        font-size: 2.5rem;
    }
    
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 100px 0 60px;
    }
    
    .contact-grid {
        gap: 40px;
    }
    
    .contact-content-area h1 {
        font-size: 2.2rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-layout-grid {
        gap: 30px;
    }
    
    .team-contact-card-compact {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        align-items: center;
    }
    
    .team-member-photo-small {
        align-self: center;
        margin-bottom: 15px;
    }
    
    .contact-photo-small {
        width: 60px;
        height: 60px;
    }
    
    .team-member-info-compact {
        align-items: center;
        text-align: center;
    }
    
    .member-email {
        justify-content: center;
        text-align: center;
    }
    
    .team-contact-card-new {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .contact-photo {
        width: 80px;
        height: 80px;
    }
    
    .response-promise-new {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .contact-content-area h1 {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .contact-layout-grid {
        gap: 25px;
    }
    
    .contact-info-left {
        gap: 30px;
    }
    
    .team-contact-cards-compact {
        gap: 12px;
    }
    
    .team-contact-cards-new {
        gap: 15px;
    }
    
    .response-promise-new {
        padding: 20px 15px;
    }
    
    .promise-content-new h4 {
        font-size: 1.3rem;
    }
    
    .promise-content-new p {
        font-size: 14px;
    }
}

/* Privacy Policy Responsive Design */
@media (max-width: 1024px) {
    .privacy-content {
        padding: 40px;
    }
    
    .privacy-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 100px 0 60px;
    }
    
    .privacy-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .privacy-header {
        margin-bottom: 40px;
    }
    
    .privacy-header h1 {
        font-size: 2.2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .data-category,
    .legal-basis,
    .company-info,
    .contact-info,
    .third-party-service {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        margin: 0 10px;
        padding: 20px 15px;
    }
    
    .privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 15px;
    }
}

/* About Us Responsive Design */
@media (max-width: 1024px) {
    .mission-hero {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .mission-hero-content h2 {
        font-size: 2.8rem;
    }
    
    .mission-image-grid {
        height: 400px;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .partners-banner {
        gap: 30px;
        padding: 25px 20px;
    }
    
    .partner-logo-img {
        width: 120px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 0;
    }
    
    .mission-hero {
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .mission-hero-content h2 {
        font-size: 2.4rem;
    }
    
    .mission-image-grid {
        height: 300px;
    }
    
    .mission-image-placeholder i {
        font-size: 32px;
    }
    
    .main-image i {
        font-size: 48px;
    }
    
    .mission-image-placeholder span {
        font-size: 14px;
    }
    
    .about-text-content h3 {
        font-size: 2rem;
    }
    
    .about-image-stack {
        gap: 15px;
    }
    
    .about-image-placeholder {
        padding: 30px 20px;
    }
    
    .team-member {
        padding: 30px 20px;
    }
    
    .team-section h3,
    .backed-by-section h3 {
        font-size: 28px;
    }
    
    .partners-banner {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .partner-logo-img {
        width: 100px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-banner {
        flex-direction: column;
        gap: 15px;
        padding: 20px 10px;
    }
    
    .partner-logo-img {
        width: 120px;
        height: 60px;
    }
    
    .logo-placeholder {
        width: 120px;
        height: 60px;
        font-size: 12px;
    }
}


/* About Teaser Section */
.about-teaser-section {
    padding: 55px 0;
    background: #F8F5EE;
}

.about-teaser-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.about-teaser-text h2 {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-teaser-text p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0,0,0,0.85);
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px solid #e5e5e5;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
}

.trust-badge i {
    color: var(--primary-green);
    font-size: 16px;
}

.trust-badge:hover {
    border-color: var(--primary-green);
    background: rgba(82, 160, 97, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(82, 160, 97, 0.2);
}

.partner-logos-mini {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.mini-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mini-partner-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mini-partner-img {
    width: 80px;
    height: 40px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(30%) opacity(0.8);
    transition: all 0.4s ease;
    animation: logoZoom 3s ease-in-out infinite;
}

.mini-partner-logo:nth-child(1) .mini-partner-img { animation-delay: 0s; }
.mini-partner-logo:nth-child(2) .mini-partner-img { animation-delay: 1s; }
.mini-partner-logo:nth-child(3) .mini-partner-img { animation-delay: 2s; }

@keyframes logoZoom {
    0%, 100% { 
        transform: scale(1);
        filter: grayscale(30%) opacity(0.8);
    }
    50% { 
        transform: scale(1.05);
        filter: grayscale(0%) opacity(1);
    }
}

.mini-partner-logo:hover .mini-partner-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.2);
    animation-play-state: paused;
}

.about-teaser-cta {
    margin-top: 20px;
}

.about-teaser-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Accelerator Box Styles */
.accelerator-box {
    background: var(--primary-green);
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(82, 160, 97, 0.3);
    border: 1px solid var(--primary-green);
    padding: 40px;
    max-width: 400px;
}

.accelerator-box p {
    font-size: 16px;
    line-height: 1.7;
    color: white;
    margin-bottom: 30px;
    text-align: left;
}

.accelerator-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.accelerator-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: var(--primary-green);
    border-radius: 4px;
}

.accelerator-logo-img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(20%) opacity(0.9);
    transition: all 0.3s ease;
}

.founder-photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.founder-photo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.founder-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-green);
    box-shadow: 0 8px 24px rgba(82, 160, 97, 0.3);
    transition: all 0.3s ease;
}

.founder-photo-container:hover .founder-photo {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(82, 160, 97, 0.4);
}

.founder-info {
    text-align: center;
}

.founder-info strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.founder-info span {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 500;
}

/* About Teaser Responsive Design */
@media (max-width: 1024px) {
    .about-teaser-content {
        /* grid-template-columns: 1fr; */
        gap: 40px;
        text-align: center;
    }
    
    .about-teaser-text h2 {
        font-size: 2.5rem;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .partner-logos-mini {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-teaser-section {
        padding: 60px 0;
    }
    
    .about-teaser-text h2 {
        font-size: 2.2rem;
    }
    
    .founder-photo-container {
        padding: 30px;
    }
    
    .founder-photo {
        width: 100px;
        height: 100px;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .partner-logos-mini {
        gap: 15px;
    }
    
    .mini-partner-img {
        width: 70px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .about-teaser-text h2 {
        font-size: 1.8rem;
    }
    
    .about-teaser-text p {
        font-size: 16px;
    }
    
    .founder-photo-container {
        padding: 20px;
    }
    
    .founder-photo {
        width: 80px;
        height: 80px;
    }
    
    .trust-badge {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .partner-logos-mini {
        flex-direction: column;
        gap: 10px;
    }
    
    .mini-partner-img {
        width: 100px;
        height: 50px;
    }
}

/* Article Page Styles */
.article-hero {
    padding: 60px 0 30px;
    background: #F8F5EE;
    margin-top: 70px;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    font-size: 14px;
}

.article-breadcrumb a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.article-breadcrumb a:hover {
    text-decoration: underline;
}

.article-breadcrumb span {
    color: var(--primary-green);
    font-weight: 500;
}

.article-breadcrumb i {
    font-size: 12px;
    color: rgba(0,0,0,0.4);
}

.article-header {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.article-category {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.category-tag {
    background: #000;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(0,0,0,0.7);
    font-weight: 500;
}

.reading-time i {
    color: var(--primary-green);
    font-size: 12px;
}

/* Article Meta Hero - Reading Time Centering */
.article-meta-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.article-meta-hero .reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(0,0,0,0.7);
    font-weight: 500;
}

.article-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Raleway', sans-serif;
}

.article-subtitle {
    font-size: 20px;
    color: rgba(0,0,0,0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-green);
}

.author-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
}

.author-details span {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 500;
}

.article-date span {
    font-size: 14px;
    color: rgba(0,0,0,0.6);
}

/* Article Hero Image */
.article-hero-image {
    padding: 0 0 80px;
    background: #F8F5EE;
}

.hero-image-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.article-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 30px 20px;
}

.image-caption p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Image Overlay Tags */
.image-overlay-tags {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.image-overlay-tags .category-tag {
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    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.1);
}

/* Image Caption Below */
.image-caption-below {
    padding: 20px 0 0;
    text-align: left;
}

.image-caption-below p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0,0,0,0.85);
    margin: 0;
    font-style: italic;
    max-width: 800px;
    margin: 0;
}

/* Article Content */
.article-content {
    padding: 80px 0;
    background: #F8F5EE;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: flex-start;
    min-height: 600px; /* Prevent grid collapse on short content */
}

/* Ensure sidebar stays on side for desktop/tablet landscape */
@media (min-width: 601px) {
    .article-layout {
        grid-template-columns: 1fr 300px !important;
    }

    .article-sidebar {
        position: sticky !important;
        top: 100px;
    }
}

.article-main {
    max-width: none;
    min-height: 1200px; /* Ensures sidebar stays on side even for short articles */
}

.article-body {
    font-family: 'Raleway', sans-serif;
}

.content-section {
    margin-bottom: 30px;
}

.content-section h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: 'Raleway', sans-serif;
}

.content-section p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0,0,0,0.85);
    margin-bottom: 24px;
    font-family: 'Raleway', sans-serif;
}

/* Highlight Box */
.highlight-box {
    display: flex;
    gap: 15px;
    padding: 0;
    background: transparent;
    border-left: none;
    border-radius: 4px;
    margin: 0 0 20px 0;
}

.highlight-icon {
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-icon i {
    color: white;
    font-size: 9px;
}

.highlight-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.4;
}

.highlight-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0,0,0,0.85);
    margin: 0;
}

/* Blue CTA Highlight Box */
.highlight-box-cta {
    background: #2B6B9A;
    border-left: 4px solid #2B6B9A;
    padding: 20px;
}

.highlight-box-cta .highlight-icon {
    background: white;
}

.highlight-box-cta .highlight-icon i {
    color: #2B6B9A;
}

.highlight-box-cta .highlight-content h4 {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 20px;
}

.highlight-box-cta .highlight-content p {
    color: white;
    margin-bottom: 20px;
}

.btn-cta-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-highlight:hover {
    background: white;
    color: #2B6B9A;
    font-weight: 600;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stats-grid .stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.stats-grid .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
    display: block;
}

.stats-grid .stat-label {
    font-size: 14px;
    color: rgba(0,0,0,0.85);
    line-height: 1.4;
    font-weight: 500;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-green);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0,0,0,0.85);
    margin: 0;
}

/* Quote Section */
.quote-section {
    margin: 50px 0;
    padding: 40px;
    background: var(--primary-green);
    border-left: 4px solid var(--primary-green);
    border-radius: 4px;
}

.quote-section blockquote {
    margin: 0 0 20px 0;
    padding: 0;
}

.quote-section blockquote p {
    font-size: 20px;
    line-height: 1.6;
    color: white;
    font-style: italic;
    margin: 0;
}

.quote-author strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-author-photo {
    flex-shrink: 0;
}

.author-quote-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.quote-author-info {
    flex: 1;
}

.quote-author-info strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.quote-author-info span {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

/* Checklist */
.checklist {
    margin: 40px 0;
}

.checklist-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checklist-icon i {
    color: white;
    font-size: 16px;
}

.checklist-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.checklist-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0,0,0,0.85);
    margin: 0;
}

/* Article Actions */
.article-actions {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.social-share h4,
.article-tags h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--primary-blue);
    color: white;
}

.share-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(82, 160, 97, 0.3);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-tag {
    background: #f8f9fa;
    color: #000;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-section {
    background: white;
    border: 1px solid white;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #000;
}

/* Table of Contents */
.table-of-contents {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-link {
    display: block;
    padding: 8px 0;
    color: rgba(0,0,0,0.7);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    padding-left: 12px;
}

.toc-link:hover,
.toc-link.active {
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    background: rgba(43, 107, 154, 0.05);
    border-left: 2px solid var(--primary-blue);
    padding-left: 11px;
}

/* Article Details */
.article-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 14px;
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

/* Author Bio */
.author-bio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
}

.author-bio-header {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.author-bio-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-green);
    flex-shrink: 0;
}

.bio-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-bio-info {
    flex: 1;
}

.author-bio-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 0;
}

.author-description {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(0,0,0,0.85);
    margin-bottom: 15px;
    text-align: left;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #000;
    border: 1px solid black;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social-link:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.author-social-link i {
    font-size: 14px;
}

/* Related Articles */
.related-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-article {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-article:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.related-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
    line-height: 1.3;
}

.related-content p {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(0,0,0,0.7);
    margin-bottom: 8px;
}

.related-meta {
    font-size: 11px;
    color: var(--primary-green);
    font-weight: 500;
}

/* Sources Section */
.sources-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sources-list li {
    margin-bottom: 12px;
}

.source-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.source-link:hover {
    color: var(--primary-green);
    gap: 12px;
}

.source-link i {
    font-size: 12px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

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

/* Sources section heading styling */
.content-section h2:has(+ .sources-list),
.content-section h2[id*="sources"],
.content-section h2:contains("Sources") {
    font-size: 18px;
    font-weight: 600;
}

/* Article Page Responsive Design */
@media (max-width: 600px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }

    .article-main {
        display: flex;
        flex-direction: column;
    }

    .article-body {
        order: 1;
    }

    .article-actions {
        order: 2;
    }

    .article-sidebar {
        position: static;
        order: 3;
    }

    .back-to-news {
        order: 4;
    }

    .sidebar-section {
        margin-bottom: 20px;
    }

    .article-title {
        font-size: 2.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .article-hero {
        padding: 100px 0 40px;
    }

    .article-header {
        text-align: left;
        margin: 0;
    }

    .article-title {
        font-size: 2.2rem;
    }

    .article-subtitle {
        font-size: 18px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .article-meta-hero {
        text-align: left !important;
        justify-content: flex-start !important;
    }

    .article-hero-img {
        height: 300px;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .content-section p {
        font-size: 16px;
    }
    
    .article-actions {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-date {
        width: 50px;
        height: 50px;
        font-size: 11px;
    }
    
    .timeline::before {
        left: 25px;
    }
}

@media (max-width: 480px) {
    .article-hero {
        padding: 80px 0 30px;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-subtitle {
        font-size: 16px;
    }
    
    .article-category {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .article-hero-img {
        height: 250px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .highlight-box,
    .quote-section {
        padding: 20px;
    }
    
    .sidebar-section {
        padding: 20px;
    }

    .article-actions {
        padding-left: 8px;
        padding-right: 8px;
    }

    .social-share h4 {
        padding-left: 8px;
    }

    .share-buttons {
        padding-left: 8px;
        flex-wrap: nowrap;
    }

    .share-btn {
        justify-content: center;
        flex-shrink: 0;
    }
}
        /* CSS Variables */
        :root {
            --primary-red: #F05844;
            --primary-yellow: #F8B73B;
            --primary-blue: #2B6B9A;
            --primary-green: #52A061;
            --neutral-white: #FFFFFF;
            --neutral-dark-brown: #401D20;
            --neutral-dark-blue: #000000;
            --neutral-dark-green: #123423;
            --neutral-gray-dark: #000000;
            --neutral-gray-light: #AFBFB0;
            --neutral-off-white: #F1F2F1;
            --neutral-beige-light: #DBD5D1;
            --neutral-beige: #C4B6A6;
            --neutral-cream: #F0EADE;
            --neutral-light-gray: #F8F5EE;
            --neutral-black: #000000;
        }

        /* Main Section */
        .how-it-works {
            padding: 55px 0;
            background: #F8F5EE;
            font-family: 'Raleway', sans-serif;
            position: relative;
        }

        .ease-indicator {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

        .ease-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--primary-blue);
            color: white;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 2px 4px rgba(43, 107, 154, 0.15);
            min-width: 240px;
            justify-content: center;
            opacity: 0.95;
        }

        .ease-badge.yellow {
            background: var(--primary-yellow);
            box-shadow: 0 4px 12px rgba(248, 183, 59, 0.3);
            animation: badgePulseYellow 3s ease-in-out infinite 1.5s;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 1;
        }

        .ease-badge.yellow:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(248, 183, 59, 0.4);
        }

        @keyframes badgePulseBlue {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 4px 12px rgba(43, 107, 154, 0.3);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 20px rgba(43, 107, 154, 0.4);
            }
        }

        @keyframes badgePulseYellow {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 4px 12px rgba(248, 183, 59, 0.3);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 20px rgba(248, 183, 59, 0.4);
            }
        }

        /* Process Steps */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            margin-bottom: 20px;
            justify-items: center;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }


        /* Step Container */
        .step-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        /* Step Visual */
        .step-visual {
            margin-bottom: 24px;
            position: relative;
            height: 240px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .visual-mockup {
            width: 280px;
            height: 210px;
            background: white;
            border-radius: 4px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }


        /* Monitor Mockup */
        .monitor-mockup .mockup-screen,
        .detect-mockup .mockup-screen {
            width: 100%;
            height: 100%;
            background: #f8f9fa;
            border-radius: 8px;
            border: 2px solid #e9ecef;
            position: relative;
            overflow: hidden;
        }

        .screen-header {
            height: 24px;
            background: #e9ecef;
            display: flex;
            align-items: center;
            padding: 0 12px;
        }

        /* Detect mockup specific styling */
        .detect-mockup .screen-header {
            border-radius: 6px 6px 0 0;
            background-color: #DBD5D1 !important;
        }

        .detect-mockup .mockup-screen {
            border-color: #DBD5D1 !important;
        }

        .header-dots {
            display: flex;
            gap: 4px;
        }

        .header-dots span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #adb5bd;
        }

        .header-dots span:first-child {
            background: #ff5f56;
        }

        .header-dots span:nth-child(2) {
            background: #ffbd2e;
        }

        .header-dots span:nth-child(3) {
            background: #27ca3f;
        }

        .screen-content {
            padding: 0;
            height: calc(100% - 24px);
            position: relative;
            overflow: hidden;
        }

        .ecommerce-background {
            width: 100%;
            height: 100%;
            background-image: url('../images/Ecommercefrontpage_tworows.png');
            background-size: contain;
            background-position: top center;
            background-repeat: no-repeat;
            background-color: white;
            position: relative;
        }

        /* Detect background specific styling */
        .detect-background {
            background-image: url('../images/issuedetection-overview.png') !important;
        }

        .scan-indicator {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            animation: scanPulse 2s ease-in-out infinite;
            z-index: 3;
        }

        .scan-indicator-2,
        .legal-icon-center-2,
        .central-lightbulb-icon-2 {
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            z-index: 3;
        }

        @keyframes scanPulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 0 0 0 rgba(43, 107, 154, 0.4);
            }

            50% {
                transform: translate(-50%, -50%) scale(1.1);
                box-shadow: 0 0 0 15px rgba(43, 107, 154, 0);
            }
        }

        .scanning-lines {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(43, 107, 154, 0.2), transparent);
            animation: scanAnimation 2.5s ease-in-out infinite;
            z-index: 2;
        }

        @keyframes scanAnimation {
            0% {
                left: -100%;
            }

            100% {
                left: 100%;
            }
        }

        /* Detect Mockup */
        .detect-mockup .chart-container {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .chart-bars {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            width: 100%;
            height: 100px;
        }

        .bar {
            height: 12px;
            background: var(--primary-yellow);
            border-radius: 0 6px 6px 0;
            transition: all 0.3s ease;
            animation: barGrowHorizontal 2s ease-out infinite;
        }

        .bar.critical {
            background: var(--primary-red);
            animation: criticalPulseHorizontal 1.5s ease-in-out infinite;
        }

        @keyframes barGrowHorizontal {
            0% {
                width: 0;
            }

            100% {
                width: var(--bar-width, 50%);
            }
        }

        @keyframes criticalPulseHorizontal {

            0%,
            100% {
                background: var(--primary-red);
                transform: scale(1);
            }

            50% {
                background: #ff6b6b;
                transform: scaleX(1.1);
            }
        }

        /* Risk Tags */
        .risk-tags {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
            align-items: center;
        }

        .risk-tag {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            animation: tagPulse 2s ease-in-out infinite;
            min-width: 100px;
            text-align: center;
        }

        .risk-tag.critical {
            background: var(--primary-red);
            animation: criticalTagPulse 1.5s ease-in-out infinite;
        }

        .risk-tag.medium {
            background: var(--primary-yellow);
            animation: mediumTagPulse 2s ease-in-out infinite 0.5s;
        }

        .risk-tag.high {
            background: #FF8C00;
            animation: highTagPulse 2s ease-in-out infinite 1s;
        }

        .risk-tag.low {
            background: var(--primary-green);
            animation: lowTagPulse 2s ease-in-out infinite 1.5s;
        }

        @keyframes criticalTagPulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 2px 8px rgba(240, 88, 68, 0.3);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 4px 16px rgba(240, 88, 68, 0.4);
            }
        }

        @keyframes mediumTagPulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 2px 8px rgba(248, 183, 59, 0.3);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 4px 16px rgba(248, 183, 59, 0.4);
            }
        }

        @keyframes highTagPulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 4px 16px rgba(255, 140, 0, 0.4);
            }
        }

        @keyframes lowTagPulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 2px 8px rgba(82, 160, 97, 0.3);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 4px 16px rgba(82, 160, 97, 0.4);
            }
        }

        /* Legal Icon Center */
        .legal-icon-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            box-shadow: 0 4px 12px rgba(43, 107, 154, 0.3);
            animation: legalIconPulse 2s ease-in-out infinite;
            z-index: 3;
        }

        @keyframes legalIconPulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 4px 12px rgba(43, 107, 154, 0.3);
            }

            50% {
                transform: translate(-50%, -50%) scale(1.05);
                box-shadow: 0 6px 20px rgba(43, 107, 154, 0.4);
            }
        }

        /* Risk Tag Positioning */
        .risk-tag-top {
            position: absolute;
            top: 20%;
            left: 20%;
            transform: translate(-50%, -50%);
            padding: 4px 8px;
            font-size: 8px;
            min-width: 60px;
        }

        .risk-tag-bottom {
            position: absolute;
            bottom: 15%;
            right: 15%;
            transform: translate(50%, 50%);
            padding: 4px 8px;
            font-size: 8px;
            min-width: 60px;
        }

        .risk-tag-left {
            position: absolute;
            top: 80%;
            left: 10%;
            transform: translate(-50%, -50%);
            padding: 4px 8px;
            font-size: 8px;
            min-width: 60px;
        }

        .risk-tag-right {
            position: absolute;
            top: 30%;
            right: 10%;
            transform: translate(50%, -50%);
            padding: 4px 8px;
            font-size: 8px;
            min-width: 60px;
        }

        .risk-tag-top-right {
            position: absolute;
            top: 15%;
            right: 45%;
            transform: translate(50%, -50%);
            padding: 4px 8px;
            font-size: 8px;
            min-width: 60px;
        }

        .risk-tag-bottom-left {
            position: absolute;
            bottom: 25%;
            left: 35%;
            transform: translate(-50%, 50%);
            padding: 4px 8px;
            font-size: 8px;
            min-width: 60px;
        }

        .risk-tag-center-left {
            position: absolute;
            top: 50%;
            left: 2%;
            transform: translate(-50%, -50%);
            padding: 4px 8px;
            font-size: 8px;
            min-width: 60px;
        }

        /* Guide Mockup */
        .guide-mockup .guidance-dashboard {
            width: 100%;
            height: 100%;
            background: #2c3e50;
            border-radius: 8px;
            padding: 16px;
            color: white;
            position: relative;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .status-indicator {
            width: 24px;
            height: 24px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            animation: statusPulse 3s ease-in-out infinite;
        }

        @keyframes statusPulse {

            0%,
            100% {
                background: var(--primary-green);
                box-shadow: 0 0 0 0 rgba(82, 160, 97, 0.4);
            }

            50% {
                background: #27ca3f;
                box-shadow: 0 0 0 8px rgba(82, 160, 97, 0);
            }
        }

        .action-button {
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 11px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .guidance-metrics {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .metric {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .metric-icon {
            width: 20px;
            height: 20px;
            background: var(--primary-green);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
        }

        .metric-value {
            display: flex;
            flex-direction: column;
        }

        .metric-value .label {
            font-size: 10px;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .metric-value .number {
            font-size: 18px;
            font-weight: 600;
            animation: numberCount 3s ease-out infinite;
        }

        @keyframes numberCount {
            0% {
                opacity: 0.5;
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0.8;
            }
        }

        /* Guidance Advisory Mini Component */
        .guidance-advisory-mini {
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 8px;
            border: 1px solid var(--primary-blue);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            font-size: 8px;
            line-height: 1.2;
        }

        .advisory-header-mini {
            background: linear-gradient(135deg, #2B6B9A 0%, #1e4d6b 100%);
            color: white;
            padding: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
            min-height: 28px;
            border-radius: 4px 4px 0 0;
        }

        .advisory-icon-mini {
            width: 16px;
            height: 16px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .advisory-icon-mini i {
            color: white;
            font-size: 8px;
        }

        .advisory-title-mini {
            flex: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 4px;
        }

        .advisory-text {
            font-size: 8px;
            font-weight: 600;
            color: white;
            line-height: 1.1;
        }

        .advisory-badge-mini {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 2px 6px;
            border-radius: 8px;
            font-size: 6px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            flex-shrink: 0;
        }

        .advisory-content-mini {
            padding: 8px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .guidance-text-mini {
            padding: 2px 16px 0;
            filter: blur(1px);
            font-size: 11px;
            line-height: 1.4;
            color: rgba(0, 0, 0, 0.9);
            text-align: left;
        }

        .guidance-text-mini--overlay {
            top: 59px;
            left: 24px;
            position: absolute;
            font-size: 11px;
        }

        .flagged-text-mini {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 3px;
            padding: 4px 6px;
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }

        .flagged-label {
            font-size: 6px;
            font-weight: 600;
            color: #856404;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .highlighted-word-mini {
            background: #F05844;
            color: white;
            padding: 1px 3px;
            border-radius: 2px;
            font-weight: 600;
            font-size: 6px;
            animation: highlightPulseMini 2s ease-in-out infinite;
        }

        @keyframes highlightPulseMini {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(240, 88, 68, 0.4);
            }

            50% {
                box-shadow: 0 0 0 3px rgba(240, 88, 68, 0);
            }
        }

        .advisory-message-mini {
            display: flex;
            gap: 6px;
            align-items: flex-start;
        }

        .message-icon-mini {
            width: 12px;
            height: 12px;
            background: #F05844;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .message-icon-mini i {
            color: white;
            font-size: 6px;
        }

        .message-text-mini {
            font-size: 7px;
            line-height: 1.3;
            color: rgba(0, 0, 0, 0.85);
            flex: 1;
        }

        .recommendation-mini {
            display: flex;
            gap: 6px;
            align-items: flex-start;
            padding: 4px;
            background: #f8f9fa;
            border-radius: 3px;
            border-left: 2px solid var(--primary-green);
        }

        .recommendation-icon-mini {
            width: 10px;
            height: 10px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .recommendation-icon-mini i {
            color: white;
            font-size: 5px;
        }

        .recommendation-text-mini {
            font-size: 6px;
            line-height: 1.3;
            color: rgba(0, 0, 0, 0.85);
            flex: 1;
        }

        .advisory-footer-mini {
            background: #f8f9fa;
            padding: 4px 8px;
            border-top: 1px solid #e5e5e5;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 20px;
        }

        .advisory-meta-mini {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 5px;
            color: rgba(0, 0, 0, 0.6);
        }

        .advisory-meta-mini i {
            color: var(--primary-green);
            margin-right: 2px;
            font-size: 5px;
        }

        .advisory-actions-mini {
            display: flex;
            gap: 4px;
        }

        .action-btn-mini {
            padding: 2px 6px;
            border: 1px solid #e5e5e5;
            background: white;
            color: #000;
            border-radius: 2px;
            font-size: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .action-btn-mini:hover {
            background: var(--primary-green);
            border-color: var(--primary-green);
            color: white;
        }

        /* Animation for the mini guidance component */
        .guidance-advisory-mini {
            animation: guidanceAppear 1s ease-out 0.5s both;
        }

        @keyframes guidanceAppear {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Central Light Bulb Icon */
        .central-lightbulb-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: 0 8px 24px rgba(43, 107, 154, 0.4);
            animation: lightbulbPulse 2.5s ease-in-out infinite;
        }

        .central-lightbulb-icon i {
            color: white;
            font-size: 20px;
            animation: lightbulbGlow 3s ease-in-out infinite;
        }

        @keyframes lightbulbPulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 8px 24px rgba(43, 107, 154, 0.4);
            }

            50% {
                transform: translate(-50%, -50%) scale(1.1);
                box-shadow: 0 12px 32px rgba(43, 107, 154, 0.6);
            }
        }

        @keyframes lightbulbGlow {

            0%,
            100% {
                color: white;
                text-shadow: 0 0 0 rgba(255, 255, 255, 0);
            }

            50% {
                color: #fff;
                text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
            }
        }

        /* Action Tags Mini */
        .action-tags-mini {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 5;
        }

        .action-tag-mini {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 10px;
            border-radius: 4px;
            font-size: 8px;
            font-weight: 600;
            background: rgba(43, 107, 154, 0.1);
            color: var(--primary-blue);
            animation: actionTagPulse 2s ease-in-out infinite;
            min-width: 100px;
            gap: 6px;
        }

        .action-tag-mini .action-name {
            font-size: 10px;
            line-height: 1;
        }

        .action-tag-mini i {
            font-size: 7px;
            color: #333333;
        }

        @keyframes actionTagPulse {

            0%,
            100% {
                opacity: 0.8;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.02);
            }
        }

        /* Verify Mockup */
        .verify-mockup {
            width: 370px;
            height: 260px;
        }

        .verify-mockup .verification-interface {
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 8px;
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .verification-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .verification-status {
            width: 100%;
        }

        .status-text {
            font-size: 9px;
            color: #666;
            font-weight: 500;
        }

        .progress-bar {
            width: 100%;
            height: 3px;
            background: #e9ecef;
            border-radius: 2px;
            overflow: hidden;
            margin-top: 2px;
        }

        .progress-fill {
            height: 100%;
            background: var(--primary-blue);
            border-radius: 2px;
            animation: progressFill 3s ease-in-out infinite;
        }

        @keyframes progressFill {
            0% {
                width: 0%;
            }

            50% {
                width: 75%;
            }

            100% {
                width: 100%;
            }
        }

        .certification-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 6px;
            flex: 1;
        }

        .cert-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 4px 6px;
            border-radius: 4px;
            font-size: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cert-item.verified {
            background: rgba(43, 107, 154, 0.1);
            color: var(--primary-blue);
            animation: certVerified 2s ease-in-out infinite;
        }

        .cert-item.pending {
            background: rgba(248, 183, 59, 0.1);
            color: var(--primary-yellow);
            animation: certPending 1.5s ease-in-out infinite;
        }

        @keyframes certVerified {

            0%,
            100% {
                opacity: 0.8;
            }

            50% {
                opacity: 1;
            }
        }

        @keyframes certPending {

            0%,
            100% {
                opacity: 0.6;
            }

            50% {
                opacity: 1;
            }
        }

        .cert-item i {
            font-size: 8px;
        }

        .verification-counter {
            text-align: center;
            padding: 4px;
            background: rgba(43, 107, 154, 0.1);
            border-radius: 4px;
        }

        .counter-text {
            font-size: 8px;
            color: var(--primary-blue);
            font-weight: 600;
            animation: counterPulse 3s ease-in-out infinite;
        }

        @keyframes counterPulse {

            0%,
            100% {
                opacity: 0.7;
            }

            50% {
                opacity: 1;
            }
        }

        /* Central Check Icon */
        .central-check-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: 0 8px 24px rgba(43, 107, 154, 0.4);
            animation: centralCheckPulse 2.5s ease-in-out infinite;
        }

        .check-icon {
            width: 25px;
            height: 25px;
            filter: brightness(0) invert(1);
            animation: checkIconRotate 3s ease-in-out infinite;
        }

        @keyframes centralCheckPulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 8px 24px rgba(43, 107, 154, 0.4);
            }

            50% {
                transform: translate(-50%, -50%) scale(1.1);
                box-shadow: 0 12px 32px rgba(43, 107, 154, 0.6);
            }
        }

        @keyframes checkIconRotate {

            0%,
            100% {
                transform: rotate(0deg) scale(1);
            }

            25% {
                transform: rotate(5deg) scale(1.05);
            }

            75% {
                transform: rotate(-5deg) scale(1.05);
            }
        }

        /* Step Content */
        .step-content {
            max-width: 240px;
        }

        .step-content h3 {
            font-size: 1.6rem;
            font-weight: 500;
            color: #000;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .step-content p {
            font-size: 15px;
            line-height: 1.6;
            color: rgba(0, 0, 0, 0.8);
            margin: 0;
        }

        /* Process Conclusion */
        .process-conclusion {
            text-align: center;
            width: 100%;
            padding: 40px 0;
            background: transparent;
            border-radius: 4px;
            position: relative;
            overflow: hidden;
        }

        .conclusion-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .conclusion-content h3 {
            font-size: 3rem;
            font-weight: 400;
            color: #000;
            margin-bottom: 20px;
            line-height: 1.3;
            text-align: center;
        }

        .conclusion-content p {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(0, 0, 0, 0.8);
            margin: 0;
            text-align: center;
        }

        /* Issue Detection Dashboard Styles */
        .issue-detection-dashboard {
            width: 100%;
            max-width: 450px;
            background: #F8F5EE;
            border-radius: 4px;
            padding: 10px;
            box-shadow: 0 8px 32px rgba(43, 107, 154, 0.15);
            border: 2px solid #2B6B9A;
            font-family: 'Inter', sans-serif;
            margin: 0 auto;
            height: 240px;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 6px;
            padding-bottom: 4px;
            border-bottom: 1px solid rgba(43, 107, 154, 0.2);
        }

        .dashboard-title h3 {
            font-size: 10px;
            font-weight: 600;
            color: #2B6B9A;
            margin: 0 0 2px 0;
        }

        .dashboard-status {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .status-indicator.active {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #52A061;
            animation: statusPulse 2s ease-in-out infinite;
        }

        .dashboard-status span {
            font-size: 7px;
            color: rgba(43, 107, 154, 0.8);
            font-weight: 500;
        }

        .dashboard-controls .time-filter {
            background: rgba(43, 107, 154, 0.1);
            color: #2B6B9A;
            padding: 2px 4px;
            border-radius: 2px;
            font-size: 7px;
            font-weight: 500;
        }

        .chart-section {
            margin-bottom: 12px;
        }

        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .chart-header h4 {
            font-size: 7px;
            font-weight: 500;
            color: rgba(43, 107, 154, 0.8);
            margin: 0;
        }


        .bar-chart {
            display: flex;
            align-items: flex-end;
            gap: 8px;
            height: 100px;
            padding: 5px 0;
        }

        .chart-y-axis {
            display: flex;
            flex-direction: column-reverse;
            justify-content: space-between;
            height: 80px;
            padding-right: 6px;
            border-right: 1px solid rgba(43, 107, 154, 0.2);
        }

        .chart-y-axis span {
            font-size: 8px;
            color: rgba(43, 107, 154, 0.6);
            font-weight: 500;
        }

        .chart-bars-container {
            display: flex;
            align-items: flex-end;
            gap: 8px;
            flex: 1;
            height: 80px;
        }

        .bar-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
        }

        .bar-stack {
            display: flex;
            flex-direction: column-reverse;
            width: 100%;
            max-width: 24px;
            border-radius: 4px 4px 0 0;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(43, 107, 154, 0.1);
            animation: barGrowUp 2s ease-out;
        }

        .bar-segment {
            width: 100%;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .bar-segment:hover {
            opacity: 0.8;
            transform: scaleX(1.05);
        }

        .bar-segment {
            background: #401D20;
        }

        .bar-label {
            font-size: 8px;
            color: rgba(43, 107, 154, 0.8);
            font-weight: 500;
            margin-top: 4px;
            text-align: center;
            line-height: 1.1;
        }

        @keyframes barGrowUp {
            0% {
                transform: scaleY(0);
            }

            100% {
                transform: scaleY(1);
            }
        }

        @keyframes criticalPulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(240, 88, 68, 0.4);
            }

            50% {
                box-shadow: 0 0 0 4px rgba(240, 88, 68, 0);
            }
        }

        .dashboard-stats {
            display: flex;
            gap: 6px;
            margin-bottom: 8px;
            margin-top: 6px;
        }

        .stat-card {
            flex: 1;
            background: white;
            border-radius: 4px;
            padding: 4px 6px;
            text-align: center;
            border: 1px solid rgba(43, 107, 154, 0.2);
        }

        .stat-number {
            font-size: 11px;
            font-weight: 700;
            color: #2B6B9A;
            margin-bottom: 1px;
            display: block;
        }

        .stat-label {
            font-size: 7px;
            color: rgba(43, 107, 154, 0.7);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .dashboard-alert {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(240, 88, 68, 0.1);
            border: 1px solid rgba(240, 88, 68, 0.3);
            border-radius: 4px;
            padding: 6px;
            animation: alertPulse 3s ease-in-out infinite;
        }

        .dashboard-alert .alert-icon {
            width: 16px;
            height: 16px;
            background: #F05844;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .dashboard-alert .alert-icon i {
            color: white;
            font-size: 8px;
        }

        .alert-content {
            flex: 1;
        }

        .alert-content strong {
            font-size: 9px;
            color: #F05844;
            font-weight: 600;
            display: block;
            margin-bottom: 1px;
        }

        .alert-content span {
            font-size: 8px;
            color: rgba(240, 88, 68, 0.8);
        }

        .alert-timestamp {
            font-size: 7px;
            color: rgba(240, 88, 68, 0.6);
            font-weight: 500;
        }

        @keyframes alertPulse {

            0%,
            100% {
                background: rgba(240, 88, 68, 0.1);
                border-color: rgba(240, 88, 68, 0.3);
            }

            50% {
                background: rgba(240, 88, 68, 0.15);
                border-color: rgba(240, 88, 68, 0.4);
            }
        }

        /* New Compact Dashboard Styles */
        .dashboard-main-content {
            display: flex;
            gap: 8px;
            margin-bottom: 8px;
        }

        .chart-section-half {
            flex: 1;
            min-width: 0;
        }

        .trends-section-half {
            flex: 1;
            min-width: 0;
        }

        /* Compact Bar Chart Styles */
        .bar-chart-compact {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            height: 60px;
            padding: 3px 0;
        }

        .chart-y-axis-compact {
            display: flex;
            flex-direction: column-reverse;
            justify-content: space-between;
            height: 50px;
            padding-right: 4px;
            border-right: 1px solid rgba(43, 107, 154, 0.2);
        }

        .chart-y-axis-compact span {
            font-size: 6px;
            color: rgba(43, 107, 154, 0.6);
            font-weight: 500;
        }

        .chart-bars-container-compact {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            flex: 1;
            height: 50px;
        }

        .bar-group-compact {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
        }

        .bar-stack-compact {
            display: flex;
            flex-direction: column-reverse;
            width: 100%;
            max-width: 8px;
            border-radius: 1px 1px 0 0;
            overflow: hidden;
            box-shadow: 0 1px 4px rgba(43, 107, 154, 0.1);
            animation: barGrowUp 2s ease-out;
        }

        .bar-label-compact {
            display: none;
        }

        /* Trends Chart Styles */
        .trends-chart {
            height: 60px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .trend-line-container {
            position: relative;
            height: 50px;
            background: rgba(43, 107, 154, 0.05);
            border-radius: 4px;
            padding: 4px;
        }

        .trend-line-svg {
            width: 100%;
            height: 100%;
        }

        .trend-line-path {
            stroke-dasharray: 200;
            stroke-dashoffset: 200;
            animation: drawTrendLine 3s ease-in-out infinite;
        }

        @keyframes drawTrendLine {
            0% {
                stroke-dashoffset: 200;
            }

            50% {
                stroke-dashoffset: 0;
            }

            100% {
                stroke-dashoffset: 0;
            }
        }

        .trend-endpoint {
            opacity: 0;
            animation: showEndpoint 3s ease-in-out infinite;
        }

        @keyframes showEndpoint {

            0%,
            40% {
                opacity: 0;
            }

            50%,
            100% {
                opacity: 1;
            }
        }

        .trend-labels {
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            padding: 0 4px;
        }

        .trend-label-start,
        .trend-label-end {
            font-size: 6px;
            color: rgba(43, 107, 154, 0.6);
            font-weight: 500;
        }

        .trend-indicator {
            display: none;
        }

        /* Compact Alert Styles */
        .dashboard-alert-compact {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(240, 88, 68, 0.1);
            border: 1px solid rgba(240, 88, 68, 0.3);
            border-radius: 3px;
            padding: 4px;
            animation: alertPulse 3s ease-in-out infinite;
        }

        .alert-icon-compact {
            width: 12px;
            height: 12px;
            background: #F05844;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .alert-icon-compact i {
            color: white;
            font-size: 6px;
        }

        .alert-content-compact {
            flex: 1;
        }

        .alert-content-compact strong {
            font-size: 7px;
            color: #F05844;
            font-weight: 600;
            display: block;
            margin-bottom: 1px;
        }

        .alert-content-compact span {
            font-size: 6px;
            color: rgba(240, 88, 68, 0.8);
        }

        .alert-timestamp-compact {
            font-size: 6px;
            color: rgba(240, 88, 68, 0.6);
            font-weight: 500;
        }

        /* Unified Platform Visual Styles */
        .unified-platform-visual {
            position: relative;
            width: 100%;
            height: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
        }

        /* Central Platform Hub - Button Style */
        .platform-hub {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 50px;
            background: linear-gradient(135deg, #2B6B9A 0%, #1e4d6b 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(43, 107, 154, 0.3);
            z-index: 10;
        }

        .platform-logo {
            display: none;
        }

        .platform-name {
            font-size: 14px;
            color: white;
            font-weight: 600;
            text-align: center;
        }

        .platform-pulse {
            display: none;
        }

        /* Department Nodes */
        .department-nodes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .department-node {
            position: absolute;
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            /* cursor: pointer; */
            transition: all 0.3s ease;
        }

        .node-icon {
            font-size: 20px;
            margin-bottom: 4px;
            color: #2B6B9A;
        }

        .node-label {
            font-size: 10px;
            font-weight: 600;
            color: #2B6B9A;
            text-align: center;
        }

        /* Department Node Positioning - Horizontal row alignment */
        .esg-node {
            top: 50px;
            left: 10%;
            transform: translateX(-50%);
        }

        .legal-node {
            top: 50px;
            left: 30%;
            transform: translateX(-50%);
        }

        .marketing-node {
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
        }

        .ecommerce-node {
            top: 50px;
            left: 70%;
            transform: translateX(-50%);
        }

        .leadership-node {
            top: 50px;
            left: 90%;
            transform: translateX(-50%);
        }

        /* Connection Lines */
        .connection-line {
            position: absolute;
            background: #2B6B9A;
            z-index: 1;
        }

        /* Individual connection lines from departments to central hub */
        .esg-line {
            width: 2px;
            height: 120px;
            top: 130px;
            left: 10%;
            transform: translateX(-50%) rotate(25deg);
            transform-origin: top center;
        }

        .legal-line {
            width: 2px;
            height: 90px;
            top: 130px;
            left: 30%;
            transform: translateX(-50%) rotate(10deg);
            transform-origin: top center;
        }

        .marketing-line {
            width: 2px;
            height: 80px;
            top: 130px;
            left: 50%;
            transform: translateX(-50%);
            transform-origin: top center;
        }

        .ecommerce-line {
            width: 2px;
            height: 90px;
            top: 130px;
            left: 70%;
            transform: translateX(-50%) rotate(-10deg);
            transform-origin: top center;
        }

        .leadership-line {
            width: 2px;
            height: 120px;
            top: 130px;
            left: 90%;
            transform: translateX(-50%) rotate(-25deg);
            transform-origin: top center;
        }

        /* Data Flow Indicators */
        .data-flow-indicators {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 5;
        }

        .flow-particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #52A061;
            border-radius: 50%;
            opacity: 0;
            animation: flowParticle 4s ease-in-out infinite;
        }

        .flow-1 {
            top: 100px;
            left: 50%;
            animation-delay: 0s;
            animation-name: flowParticleVertical;
        }

        .flow-2 {
            top: 50%;
            left: 100px;
            animation-delay: 1s;
            animation-name: flowParticleHorizontal;
        }

        .flow-3 {
            top: 50%;
            right: 100px;
            animation-delay: 2s;
            animation-name: flowParticleHorizontalReverse;
        }

        .flow-4 {
            bottom: 120px;
            left: 25%;
            animation-delay: 3s;
            animation-name: flowParticleDiagonal;
        }

        .flow-5 {
            bottom: 120px;
            right: 25%;
            animation-delay: 3.5s;
            animation-name: flowParticleDiagonalReverse;
        }

        @keyframes flowParticleVertical {

            0%,
            100% {
                opacity: 0;
                transform: translateY(0px);
            }

            50% {
                opacity: 1;
                transform: translateY(50px);
            }
        }

        @keyframes flowParticleHorizontal {

            0%,
            100% {
                opacity: 0;
                transform: translateX(0px);
            }

            50% {
                opacity: 1;
                transform: translateX(50px);
            }
        }

        @keyframes flowParticleHorizontalReverse {

            0%,
            100% {
                opacity: 0;
                transform: translateX(0px);
            }

            50% {
                opacity: 1;
                transform: translateX(-50px);
            }
        }

        @keyframes flowParticleDiagonal {

            0%,
            100% {
                opacity: 0;
                transform: translate(0px, 0px);
            }

            50% {
                opacity: 1;
                transform: translate(25px, -50px);
            }
        }

        @keyframes flowParticleDiagonalReverse {

            0%,
            100% {
                opacity: 0;
                transform: translate(0px, 0px);
            }

            50% {
                opacity: 1;
                transform: translate(-25px, -50px);
            }
        }

        /* Department Node Color Variations */
        .esg-node .node-icon {
            color: #52A061;
        }

        .esg-node .node-label {
            color: #52A061;
        }

        .legal-node .node-icon {
            color: #401D20;
        }

        .legal-node .node-label {
            color: #401D20;
        }

        .marketing-node .node-icon {
            color: #F8B73B;
        }

        .marketing-node .node-label {
            color: #F8B73B;
        }

        .ecommerce-node .node-icon {
            color: #F05844;
        }

        .ecommerce-node .node-label {
            color: #F05844;
        }

        .leadership-node .node-icon {
            color: #2B6B9A;
        }

        .leadership-node .node-label {
            color: #2B6B9A;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .process-steps {
                grid-template-columns: repeat(3, 1fr);
                gap: 5px;
                margin-bottom: 0;
            }

            .visual-mockup {
                width: 300px;
                height: 220px;
                padding: 18px;
            }

            .step-content {
                max-width: 280px;
            }

            .step-content h3 {
                font-size: 1.6rem;
            }

            .step-content p {
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2.8rem;
            }

            .section-header p {
                font-size: 16px;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 50px;
                margin-bottom: 80px;
            }

            .visual-mockup {
                width: 340px;
                height: 230px;
                padding: 20px;
            }

            .step-content {
                max-width: 350px;
            }

            .step-content h3 {
                font-size: 1.8rem;
            }

            .step-content p {
                font-size: 15px;
            }

            .process-conclusion {
                padding: 30px 20px;
            }

            .conclusion-content h3 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .how-it-works {
                padding: 60px 0;
            }

            .section-header {
                margin-bottom: 60px;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }

            .section-header p {
                font-size: 15px;
            }

            .process-steps {
                gap: 35px;
            }

            .visual-mockup {
                width: 280px;
                height: 180px;
                padding: 16px;
            }

            .step-content {
                max-width: 300px;
            }

            .step-content h3 {
                font-size: 1.5rem;
                margin-bottom: 12px;
            }

            .step-content p {
                font-size: 14px;
            }

            .process-conclusion {
                padding: 25px 0;
            }

            .conclusion-content h3 {
                font-size: 1.8rem;
            }

            .conclusion-content p {
                font-size: 15px;
            }
        }

        /* Hero Scanner Visual Styles */
        .hero .scanner-visual-container {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero .step-visual {
            margin-bottom: 24px;
            position: relative;
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .hero .visual-mockup {
            width: 375px;
            height: 300px;
            background: transparent;
            border-radius: 0;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 15px;
        }

        /* Monitor Mockup */
        .hero .monitor-mockup .mockup-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 16px;
            border: 2px solid #C4B6A6;
            position: relative;
            overflow: hidden;
        }

        .hero .screen-header {
            height: 30px;
            background: #C4B6A6;
            display: flex;
            align-items: center;
            padding: 0 15px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .hero .header-dots {
            display: flex;
            gap: 6px;
            margin-right: 16px;
        }

        .hero .header-dots span {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #adb5bd;
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease;
        }

        .hero .header-dots span:first-child {
            background: linear-gradient(135deg, #ff6b5a 0%, #ff5f56 100%);
            box-shadow: 0 2px 4px rgba(255, 95, 86, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .hero .header-dots span:nth-child(2) {
            background: linear-gradient(135deg, #ffcd3c 0%, #ffbd2e 100%);
            box-shadow: 0 2px 4px rgba(255, 189, 46, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .hero .header-dots span:nth-child(3) {
            background: linear-gradient(135deg, #32d74b 0%, #27ca3f 100%);
            box-shadow: 0 2px 4px rgba(39, 202, 63, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .hero .browser-tabs {
            display: flex;
            align-items: center;
            flex: 1;
            gap: 2px;
        }

        .hero .tab {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 4px 9px;
            background: #f8f9fa;
            border-radius: 6px 6px 0 0;
            font-size: 8px;
            color: #6c757d;
            border: 1px solid #dee2e6;
            border-bottom: none;
            min-width: 90px;
            max-width: 135px;
        }

        .hero .tab.active {
            background: white;
            color: #495057;
            border-color: white;
        }

        .hero .tab-icon {
            font-size: 12px;
        }

        .hero .tab-title {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1;
        }

        .hero .live-monitor {
            font-size: 9px;
            color: white;
            font-weight: 500;
            padding: 6px 9px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .hero .active-dot {
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            animation: activePulse 2s ease-in-out infinite;
        }

        @keyframes activePulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.6;
                transform: scale(1.2);
            }
        }

        .hero .screen-content {
            padding: 0;
            height: calc(100% - 30px);
            position: relative;
            overflow: hidden;
            background: #ffffff;
        }

        .hero .ecommerce-background {
            width: 100%;
            height: 100%;
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .hero .product-catalog {
            width: 100%;
            height: 100%;
            background-image: url('../images/e-commerce-shop.png');
            background-size: 100% auto;
            background-position: top center;
            background-repeat: repeat-y;
            position: absolute;
            top: 0;
            left: 0;
            animation: catalogScroll 12s ease-in-out infinite;
        }

        .hero .product-page {
            width: 100%;
            height: 100%;
            background: white;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            padding: 15px;
            animation: productPageAppear 12s ease-in-out infinite;
            overflow-y: auto;
        }

        @keyframes catalogScroll {

            0%,
            100% {
                background-position: top center;
                opacity: 1;
            }

            35% {
                background-position: bottom center;
                opacity: 1;
            }

            50% {
                background-position: bottom center;
                opacity: 0;
            }

            50.1%,
            99.9% {
                background-position: top center;
                opacity: 0;
            }
        }

        @keyframes productPageAppear {

            0%,
            35% {
                opacity: 0;
                transform: translateY(20px);
            }

            50%,
            85% {
                opacity: 1;
                transform: translateY(0);
            }

            100% {
                opacity: 0;
                transform: translateY(20px);
            }
        }

        .hero .product-header {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .hero .product-image {
            width: 90px;
            height: 120px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            color: #6c757d;
            flex-shrink: 0;
            overflow: hidden;
        }

        .hero .product-info {
            flex: 1;
        }

        .hero .product-title {
            font-size: 10px;
            font-weight: 600;
            color: #212529;
            margin-bottom: 4px;
        }

        .hero .product-price {
            font-size: 13px;
            font-weight: 700;
            color: #000000;
            margin-bottom: 6px;
        }

        .hero .product-description {
            font-size: 8px;
            line-height: 1.4;
            color: #495057;
            margin-bottom: 9px;
        }

        .hero .highlighted-text {
            background: rgba(240, 88, 68, 0.2);
            padding: 2px 4px;
            border-radius: 3px;
            position: relative;
            animation: highlightPulse 3s ease-in-out infinite;
        }

        @keyframes highlightPulse {

            0%,
            100% {
                background: rgba(240, 88, 68, 0.2);
            }

            50% {
                background: rgba(240, 88, 68, 0.3);
            }
        }

        .hero .highlighted-text-green {
            background: rgba(82, 160, 97, 0.2);
            padding: 2px 4px;
            border-radius: 3px;
            position: relative;
            animation: highlightPulseGreen 3s ease-in-out infinite;
        }

        @keyframes highlightPulseGreen {

            0%,
            100% {
                background: rgba(82, 160, 97, 0.2);
            }

            50% {
                background: rgba(82, 160, 97, 0.3);
            }
        }

        .hero .product-features {
            margin-top: 16px;
        }

        .hero .feature-title {
            font-size: 10px;
            font-weight: 600;
            color: #212529;
            margin-bottom: 6px;
        }

        .hero .feature-list {
            list-style: none;
            padding: 0;
        }

        .hero .feature-item {
            font-size: 8px;
            color: #495057;
            margin-bottom: 4px;
            padding-left: 14px;
            position: relative;
        }

        .hero .feature-item::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #28a745;
        }

        .hero .scanning-lines {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(43, 107, 154, 0.2), transparent);
            animation: scanAnimation 2.5s ease-in-out infinite;
            z-index: 2;
        }

        @keyframes scanAnimation {
            0% {
                left: -100%;
            }

            100% {
                left: 100%;
            }
        }

        /* Analyzing Line */
        .hero .analyzing-line {
            width: 100%;
            height: 4px;
            background: rgba(43, 107, 154, 0.2);
            border-radius: 2px;
            overflow: hidden;
            position: relative;
            margin-top: 10px;
        }

        .hero .line-progress {
            height: 100%;
            background: linear-gradient(90deg,
                    rgba(43, 107, 154, 0.6) 0%,
                    var(--primary-blue) 50%,
                    rgba(43, 107, 154, 0.6) 100%);
            border-radius: 2px;
            width: 40%;
            animation: analyzingProgress 2s ease-in-out infinite;
        }

        @keyframes analyzingProgress {
            0% {
                transform: translateX(-100%);
                opacity: 0.6;
            }

            50% {
                opacity: 1;
            }

            100% {
                transform: translateX(200%);
                opacity: 0.6;
            }
        }

        /* Analyzer Overlay */
        .hero .analyzer-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            opacity: 1;
            animation: analyzerOverlayAppear 12s ease-in-out infinite;
        }

        @keyframes analyzerOverlayAppear {

            0%,
            35% {
                opacity: 1;
            }

            45%,
            100% {
                opacity: 0;
            }
        }

        /* Analyzer Section */
        .hero .analyzer-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            background: transparent;
        }

        .hero .analyzer-text {
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-blue);
            margin-bottom: 8px;
            text-align: center;
            opacity: 0.8;
            animation: analyzerTextPulse 3s ease-in-out infinite;
        }

        @keyframes analyzerTextPulse {

            0%,
            100% {
                opacity: 0.8;
            }

            50% {
                opacity: 1;
            }
        }

        /* Alert Tags */
        .hero .alert-tag {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 7px 12px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 4;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            animation: alertAppearLoop 12s ease-in-out infinite;
        }

        .hero .red-alert {
            background: rgba(240, 88, 68, 0.95);
            color: white;
        }

        .hero .green-alert {
            background: rgba(82, 160, 97, 0.95);
            color: white;
        }

        .hero .alert-1 {
            top: calc(50% - 40px);
            left: calc(50% - 65px);
            animation-delay: 0.5s;
        }

        .hero .alert-2 {
            top: calc(50% + 0px);
            left: calc(50% - 65px);
            animation-delay: 1s;
        }

        .hero .alert-3 {
            top: calc(50% + 40px);
            left: calc(50% - 65px);
            animation-delay: 1.5s;
        }

        .hero .alert-4 {
            top: calc(50% + 40px);
            left: calc(50% - 65px);
            animation-delay: 2s;
        }

        .hero .alert-5 {
            top: calc(50% + 80px);
            left: calc(50% - 65px);
            animation-delay: 2.5s;
        }

        .hero .alert-icon {
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .hero .alert-icon i {
            font-size: 8px;
            color: white;
        }

        .hero .alert-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .hero .alert-badge {
            font-size: 8px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: white;
            line-height: 1;
        }

        .hero .alert-text {
            font-size: 9px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.1;
        }

        @keyframes alertAppearLoop {

            0%,
            45% {
                opacity: 0;
                transform: scale(0.8) translateY(10px);
            }

            50%,
            80% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }

            85%,
            100% {
                opacity: 0;
                transform: scale(0.8) translateY(10px);
            }
        }

        /* Responsive Design for Hero Scanner */
        @media (max-width: 768px) {
            .hero .visual-mockup {
                width: 450px;
                height: 380px;
            }

            .hero .screen-header {
                height: 32px;
                padding: 0 12px;
            }

            .hero .header-dots span {
                width: 10px;
                height: 10px;
            }

            .hero .tab {
                padding: 4px 8px;
                font-size: 10px;
                min-width: 100px;
                max-width: 140px;
            }

            .hero .screen-content {
                height: calc(100% - 32px);
            }
        }

        @media (max-width: 480px) {
            .hero .visual-mockup {
                width: 400px;
                height: 350px;
            }

            .hero .screen-header {
                height: 28px;
                padding: 0 10px;
            }

            .hero .header-dots span {
                width: 8px;
                height: 8px;
            }

            .hero .tab {
                padding: 3px 6px;
                font-size: 9px;
                min-width: 80px;
                max-width: 120px;
            }

            .hero .screen-content {
                height: calc(100% - 28px);
            }
        }

        /* Data Insights Graph Styles */
        .detection-visual-container {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            justify-content: center;
        }

        .data-insights-graph {
            flex-shrink: 0;
            margin-top: 20px;
        }

        .graph-container {
            width: 280px;
            height: 210px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(43, 107, 154, 0.15);
            border: 2px solid #2B6B9A;
            padding: 16px;
            font-family: 'Inter', sans-serif;
            display: flex;
            flex-direction: column;
        }

        .graph-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(43, 107, 154, 0.2);
        }

        .graph-header h4 {
            font-size: 14px;
            font-weight: 600;
            color: #2B6B9A;
            margin: 0;
        }

        .graph-status {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .graph-status .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #52A061;
            animation: statusPulse 2s ease-in-out infinite;
        }

        .graph-status span {
            font-size: 10px;
            color: rgba(43, 107, 154, 0.8);
            font-weight: 500;
        }

        .graph-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .risk-chart {
            flex: 1;
        }

        .chart-bars {
            display: flex;
            flex-direction: column;
            gap: 8px;
            height: 100%;
            justify-content: center;
        }

        .risk-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            height: 20px;
        }

        .bar-fill {
            height: 12px;
            border-radius: 6px;
            position: relative;
            transition: all 0.3s ease;
            animation: barGrowAnimation 2s ease-out;
            min-width: 40px;
        }

        .critical-bar .bar-fill {
            background: linear-gradient(90deg, #F05844 0%, #ff6b6b 100%);
            box-shadow: 0 2px 8px rgba(240, 88, 68, 0.3);
            animation: criticalBarPulse 3s ease-in-out infinite;
        }

        .medium-bar .bar-fill {
            background: linear-gradient(90deg, #F8B73B 0%, #ffcd3c 100%);
            box-shadow: 0 2px 8px rgba(248, 183, 59, 0.3);
        }

        .low-bar .bar-fill {
            background: linear-gradient(90deg, #C4B6A6 0%, #d4c8be 100%);
            box-shadow: 0 2px 8px rgba(196, 182, 166, 0.3);
        }

        @keyframes barGrowAnimation {
            0% {
                width: 0;
                opacity: 0.5;
            }

            100% {
                width: var(--bar-width);
                opacity: 1;
            }
        }

        @keyframes criticalBarPulse {

            0%,
            100% {
                box-shadow: 0 2px 8px rgba(240, 88, 68, 0.3);
                transform: scaleY(1);
            }

            50% {
                box-shadow: 0 4px 16px rgba(240, 88, 68, 0.5);
                transform: scaleY(1.1);
            }
        }

        .bar-label {
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 80px;
        }

        .risk-type {
            font-size: 11px;
            font-weight: 600;
            color: #2B6B9A;
            min-width: 50px;
        }

        .risk-count {
            font-size: 12px;
            font-weight: 700;
            color: #000;
            background: rgba(43, 107, 154, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
            min-width: 20px;
            text-align: center;
        }

        .key-metrics {
            display: flex;
            gap: 12px;
            margin-top: 8px;
        }

        .metric-item {
            flex: 1;
            text-align: center;
            padding: 8px;
            background: rgba(43, 107, 154, 0.05);
            border-radius: 6px;
            border: 1px solid rgba(43, 107, 154, 0.1);
        }

        .metric-value {
            font-size: 16px;
            font-weight: 700;
            color: #2B6B9A;
            margin-bottom: 2px;
            animation: metricCountUp 2s ease-out;
        }

        .metric-label {
            font-size: 9px;
            color: rgba(43, 107, 154, 0.7);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        @keyframes metricCountUp {
            0% {
                opacity: 0.5;
                transform: scale(0.8);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Simple Bar Chart Visual Styles */
        .simple-chart-visual {
            flex-shrink: 0;
            margin-top: 5px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 8px;
        }

        .simple-bars-container {
            display: flex;
            align-items: flex-end;
            gap: 6px;
            height: 60px;
            padding: 10px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

        .simple-bar {
            border-radius: 4px 4px 0 0;
            transition: all 0.3s ease;
            animation: simpleBarGrow 2s ease-out;
            min-width: 12px;
        }

        .bar-1 {
            height: 22px;
            background: #401D20;
            animation-delay: 0.2s;
        }

        .bar-2 {
            height: 31px;
            background: #DBD5D1;
            animation-delay: 0.4s;
        }

        .bar-3 {
            height: 26px;
            background: #401D20;
            animation-delay: 0.6s;
        }

        .bar-4 {
            height: 36px;
            background: #DBD5D1;
            animation-delay: 0.8s;
        }

        .bar-5 {
            height: 41px;
            background: #401D20;
            animation-delay: 1s;
        }

        .bar-6 {
            height: 45px;
            background: #DBD5D1;
            animation-delay: 1.2s;
        }

        .bar-7 {
            height: 24px;
            background: #C4B6A6;
            animation-delay: 1.4s;
        }

        @keyframes simpleBarGrow {
            0% {
                height: 0;
                opacity: 0.5;
            }

            100% {
                opacity: 1;
            }
        }

        .simple-bar:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Line Chart Visual Styles */
        .line-chart-visual {
            flex-shrink: 0;
            margin-top: 0px;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
        }

        .line-chart-container {
            width: 120px;
            height: 70px;
            padding: 8px;
            background: white;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .line-chart-svg {
            width: 100%;
            height: 100%;
        }

        .trend-line {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: drawLine 3s ease-in-out forwards;
        }

        .main-line {
            filter: drop-shadow(0 2px 4px rgba(64, 29, 32, 0.3));
        }

        @keyframes drawLine {
            0% {
                stroke-dashoffset: 1000;
            }

            100% {
                stroke-dashoffset: 0;
            }
        }

        .data-point {
            opacity: 0;
            animation: fadeInPoint 0.5s ease-in-out forwards;
        }

        .data-point:nth-child(3) {
            animation-delay: 0.5s;
        }

        .data-point:nth-child(4) {
            animation-delay: 0.7s;
        }

        .data-point:nth-child(5) {
            animation-delay: 0.9s;
        }

        .data-point:nth-child(6) {
            animation-delay: 1.1s;
        }

        .data-point:nth-child(7) {
            animation-delay: 1.3s;
        }

        .data-point:nth-child(8) {
            animation-delay: 1.5s;
        }

        .data-point:nth-child(9) {
            animation-delay: 1.7s;
        }

        .data-point:nth-child(10) {
            animation-delay: 1.9s;
        }

        .data-point:nth-child(11) {
            animation-delay: 2.1s;
        }

        @keyframes fadeInPoint {
            0% {
                opacity: 0;
                transform: scale(0);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Greenwashing Likelihood Chart Styles */
        .greenwashing-chart {
            grid-column: span 2;
        }

        .chart-subtitle {
            font-size: 10px;
            color: rgba(43, 107, 154, 0.6);
            font-weight: 400;
            margin-top: 2px;
        }

        .greenwashing-visual {
            background: #F1F2F1;
            border-radius: 8px;
            padding: 20px;
            margin-top: 12px;
        }

        .risk-assessment-header {
            text-align: center;
            margin-bottom: 16px;
        }

        .risk-assessment-header h3 {
            font-size: 32px;
            font-weight: 600;
            color: #401D20;
            margin: 0 0 8px 0;
        }

        .location-indicator {
            font-size: 12px;
            color: rgba(64, 29, 32, 0.7);
            font-weight: 500;
        }

        .risk-scale {
            margin: 20px 0;
        }

        .scale-bar {
            position: relative;
            height: 12px;
            border-radius: 6px;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .scale-gradient {
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    #F8D775 0%,
                    #F8B73B 25%,
                    #F05844 50%,
                    #C73E1D 75%,
                    #8B2635 100%);
        }

        .scale-marker {
            position: absolute;
            top: -2px;
            width: 16px;
            height: 16px;
            background: white;
            border: 2px solid #401D20;
            border-radius: 50%;
            transform: translateX(-50%);
            animation: markerPulse 2s ease-in-out infinite;
        }

        @keyframes markerPulse {

            0%,
            100% {
                transform: translateX(-50%) scale(1);
                box-shadow: 0 0 0 0 rgba(64, 29, 32, 0.4);
            }

            50% {
                transform: translateX(-50%) scale(1.1);
                box-shadow: 0 0 0 4px rgba(64, 29, 32, 0);
            }
        }

        .scale-labels {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: rgba(64, 29, 32, 0.7);
            font-weight: 500;
        }

        .severity-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-top: 20px;
        }

        .severity-card {
            background: white;
            border-radius: 8px;
            padding: 16px 12px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: cardAppear 0.6s ease-out forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .severity-card.low {
            animation-delay: 0.1s;
        }

        .severity-card.moderate {
            animation-delay: 0.2s;
        }

        .severity-card.high {
            animation-delay: 0.3s;
        }

        .severity-card.critical {
            animation-delay: 0.4s;
        }

        @keyframes cardAppear {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .severity-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        .severity-percentage {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .severity-label {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .severity-count {
            font-size: 12px;
            color: rgba(0, 0, 0, 0.6);
            font-weight: 500;
        }

        .severity-card.low .severity-percentage {
            color: #F8D775;
        }

        .severity-card.low .severity-label {
            color: #F8B73B;
        }

        .severity-card.moderate .severity-percentage {
            color: #F8B73B;
        }

        .severity-card.moderate .severity-label {
            color: #F8B73B;
        }

        .severity-card.high .severity-percentage {
            color: #F05844;
        }

        .severity-card.high .severity-label {
            color: #F05844;
        }

        .severity-card.critical .severity-percentage {
            color: #8B2635;
        }

        .severity-card.critical .severity-label {
            color: #8B2635;
        }

        /* Pie Chart Visual Styles */
        .pie-chart-visual {
            flex-shrink: 0;
            margin-top: 0px;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
        }

        .pie-chart-container {
            width: 96px;
            height: 96px;
            padding: 6px;
            background: white;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pie-chart-svg {
            width: 100%;
            height: 100%;
        }

        .pie-slice {
            opacity: 0;
            animation: fadeInSlice 0.8s ease-in-out forwards;
            transform-origin: center;
        }

        .pie-slice:nth-child(1) {
            animation-delay: 0.2s;
        }

        .pie-slice:nth-child(2) {
            animation-delay: 0.4s;
        }

        .pie-slice:nth-child(3) {
            animation-delay: 0.6s;
        }

        .pie-slice:nth-child(4) {
            animation-delay: 0.8s;
        }

        .pie-slice:nth-child(5) {
            animation-delay: 1.0s;
        }

        @keyframes fadeInSlice {
            0% {
                opacity: 0;
                transform: scale(0);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .pie-slice:hover {
            opacity: 0.8;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }

        /* Analyzing Overlay Animations */
        @keyframes analyzingPulse {

            0%,
            100% {
                opacity: 0.9;
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.05);
            }
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Responsive adjustments for simple chart */
        @media (max-width: 768px) {
            .detection-visual-container {
                flex-direction: row;
                align-items: center;
            }

            .simple-bars-container {
                padding: 16px;
                gap: 10px;
                height: 100px;
            }

            .simple-bar {
                min-width: 20px;
            }

            .bar-1 {
                height: 35px;
            }

            .bar-2 {
                height: 50px;
            }

            .bar-3 {
                height: 42px;
            }

            .bar-4 {
                height: 58px;
            }

            .bar-5 {
                height: 65px;
            }

            .pie-chart-container {
                width: 100px;
                height: 100px;
            }
        }

        @media (max-width: 480px) {
            .simple-bars-container {
                padding: 12px;
                gap: 8px;
                height: 80px;
            }

            .simple-bar {
                min-width: 16px;
            }

            .bar-1 {
                height: 28px;
            }

            .bar-2 {
                height: 40px;
            }

            .bar-3 {
                height: 34px;
            }

            .bar-4 {
                height: 46px;
            }

            .bar-5 {
                height: 52px;
            }

            .pie-chart-container {
                width: 80px;
                height: 80px;
            }
        }

@media (max-width: 1200px) {
    .tab-button span {
        line-height: 1.2;
    }
}
@media (max-width: 1024px) {
    .cta-message h2 {
        font-size: 2rem;
    }
    
    .newsletter-form .newsletter-disclaimer {
        text-align: right; 
        padding: 0;
    }
    .newsletter-message p {
        padding: 0 40px;
    }
}

@media (max-width: 990px) {
    .container {
        max-width: 820px;
    }
}

@media (min-width: 768px) {
    .col-md-12 {
        display: flex;
        justify-content: center;
    }
    .hero-content {
        margin-bottom: 35px;
    }
}

@media (max-width: 991px) {
    .section-header {
        gap: 20px;
    }
    .value-proposition-section .section-header .right-p {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }
    .value-proposition-section .section-header p {
        grid-column: 1 / 3;
    }
    .feature-panel-content {
        grid-template-rows: fr1 fr1;
        grid-template-columns: unset;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .features-tabs {
        column-gap: 60px;
    }
    .features-tabs .tab-button {
        flex-grow: 0;
        padding: 5px 20px;
    }
    .features-showcase {
        margin-top: 30px;
    }
    .feature-visual {
        /* height: 225px; */
    }
    .unified-platform-visual {
        margin: 0 0;
        height: 220px;
    }
    .esg-node, .legal-node, .marketing-node, .ecommerce-node, .leadership-node {
        top: 0px;
        position: relative;
        left: 0;
        transform: unset;
    }
    .platform-demo {
        min-height: auto;
    }
    .department-nodes {
        position: relative;
        display: flex;
        gap: 30px;
    } 
    .platform-hub {
        position: relative;
        bottom: 0;
        left: 0;
        transform: unset;
    }
    .unified-platform-visual {
        height: auto;
        gap: 30px;
    }
    .world-map-image-container {
        height: 140px;
    }
    .about-teaser-content {
        grid-template-columns: unset;
        grid-template-rows: 0.9fr 1fr;
        gap: 40px;
    }
    .newsletter-message p {
        padding: 0;
    }
    
    /* Hero section mobile fixes */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-actions {
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .hero-content {
        text-align: left;
    }
}


@media (max-width: 445px) {
    .hero-content {
        padding: 0 0 30px 0;
    }
    .section-header {
        display: flex;
        flex-direction: column;
    }
    .value-proposition-section .section-header h2 {
        text-align: center;
    }
    .tab-button {
        min-width: 80px;
    }
    .feature-panel-content {
        padding: 15px;
    }
    .feature-text h3 {
        text-align: center;
    }
    .simple-chart-visual {
        flex-direction: row;
    }    
    .detection-visual-container {
        flex-direction: column;
    }
    .step-visual {
        margin-bottom: 0px;
        height: 250px;
    }
    .department-nodes {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .solution-section {
        padding: 60px 0 200px;
    }
    .visual-mockup {
        height: 220px;
    }
    .step-content {
        max-width: 100%;
    }
    .process-steps {
        margin-bottom: 20px;
    }
    .cta-personal {
        grid-template-columns: 1fr;
    }
    .cco-image {
        display: flex;
        flex-direction: row;
    }
    .newsletter-content {
        padding: 0 0;
    }
    .newsletter-banner {
        display: flex;
        flex-direction: column;
    } 
    .newsletter-visual {
        flex-direction: row;
    }
    .newsletter-icon {
        width: 70px;
        height: 70px;
    }

    .footer-section {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
    } 
    .footer-section--top {
        display: flex;
        flex-direction: column;
    }
}

/* Mobile-only: Left align newsletter banner elements */
@media (max-width: 768px) {
    .newsletter-banner {
        text-align: left !important;
        align-items: flex-start !important;
        justify-items: flex-start !important;
    }
    
    .newsletter-message {
        text-align: left !important;
    }
    
    .newsletter-message h2 {
        text-align: left !important;
    }
    
    .newsletter-message p {
        text-align: left !important;
    }
    
    .newsletter-form {
        text-align: left !important;
    }
    
    .newsletter-form .form-group {
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
    
    .newsletter-disclaimer {
        text-align: left !important;
    }
}

/* Mobile-only: Left align all articles section header and text */
@media (max-width: 768px) {
    .all-articles-section .section-header {
        text-align: left !important;
        align-items: flex-start !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: none !important;
    }
    
    .all-articles-section .section-header h2 {
        text-align: left !important;
        width: 100% !important;
    }
    
    .all-articles-section .section-header p {
        text-align: left !important;
        width: 100% !important;
        max-width: none !important;
    }
}

/* Mobile-only: Left align problem and solution sections */
@media (max-width: 768px) {
    /* Problem section mobile alignment - Make title full width and left aligned */
    #problem .section-header-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    #problem .section-header-title {
        text-align: left !important;
        width: 100% !important;
        grid-column: 1 / -1 !important;
    }
    
    #problem .section-header-title h2 {
        text-align: left !important;
        width: 100% !important;
    }
    
    #problem .regulation-highlights {
        text-align: left !important;
        align-items: flex-start !important;
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }
    
    #problem .regulation-item {
        text-align: left !important;
        justify-content: flex-start !important;
    }
    
    #problem .right-p {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }
    
    /* Problem section mobile styling - Match solution section style */
    #problem .section-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        margin-bottom: 60px !important;
        max-width: 900px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    #problem .section-header-title h2 {
        font-size: 3rem !important;
        font-weight: 400 !important;
        color: #000 !important;
        margin-bottom: 30px !important;
        line-height: 1.2 !important;
        font-family: 'Raleway', sans-serif !important;
        text-align: left !important;
        width: 100% !important;
    }
    
    #problem .left-p,
    #problem .right-p {
        font-size: 18px !important;
        line-height: 1.7 !important;
        color: rgba(0,0,0,0.85) !important;
        margin: 0 !important;
        font-family: 'Raleway', sans-serif !important;
        text-align: left !important;
        width: 100% !important;
        grid-column: 1 / -1 !important;
        margin-bottom: 10px !important;
    }
    
    #problem .right-p {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Solution section mobile alignment */
    #solution .solution-header {
        text-align: left !important;
    }
    
    #solution .solution-header h2 {
        text-align: left !important;
    }
    
    #solution .solution-header p {
        text-align: left !important;
    }
}

/* Mobile-only: About page specific left alignments */
@media (max-width: 768px) {
    /* 1. Hero section - left align the mission hero body */
    .mission-hero-body {
        text-align: left !important;
    }
    
    .mission-hero-body p {
        text-align: left !important;
    }
    
    .mission-tagline {
        text-align: left !important;
    }
    
    .mission-tagline strong {
        text-align: left !important;
    }
    
    /* 2. CEO quote - left align the ceo-details (name and title) */
    .ceo-details {
        text-align: left !important;
    }
    
    .ceo-details strong {
        text-align: left !important;
    }
    
    .ceo-details span {
        text-align: left !important;
    }
    
    /* 3. About us content - left align the about us title and text content */
    .about-text-content {
        text-align: left !important;
    }
    
    .about-text-content h3 {
        text-align: left !important;
    }
    
    .about-text-content p {
        text-align: left !important;
    }
}

/* Mobile responsive styles for burger menu and hero section */
@media (max-width: 768px) {
    /* Burger menu mobile styles */
    .navbar-collapse {
        background: var(--primary-blue) !important;
        padding: 20px !important;
        margin-top: 10px !important;
        border-radius: 4px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid var(--primary-blue) !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
    }
    
    .navbar-nav {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
    }
    
    .navbar-nav .nav-link {
        color: white !important;
        font-weight: bold !important;
        font-size: 16px !important;
        padding: 8px 0 !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .navbar-nav .nav-link:hover {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .nav-actions {
        width: 100% !important;
        justify-content: flex-start !important;
        margin-top: 10px !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .nav-actions .btn-primary {
        background: white !important;
        color: var(--primary-blue) !important;
        border: 1px solid white !important;
        min-height: 44px !important;
        padding: 12px 24px !important;
        font-weight: 600 !important;
    }
    
    .nav-actions .btn-primary:hover {
        background: var(--primary-green) !important;
        color: white !important;
        border: 1px solid var(--primary-green) !important;
    }
    
    /* Burger menu icon styling */
    .navbar-toggler {
        border: 2px solid var(--primary-blue) !important;
        border-radius: 4px !important;
        padding: 6px 8px !important;
        min-height: 44px !important;
        min-width: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(43, 107, 154, 0.25) !important;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232B6B9A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        width: 20px !important;
        height: 20px !important;
    }
    
    /* Hero section mobile layout */
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: left !important;
    }
    
    .hero-visual {
        order: -1 !important;
    }
    
    .hero-actions {
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
    
    .hero-content {
        text-align: left !important;
    }
    
    /* Mobile section reordering - Move stats banner under solution featured section */
    .solution-section {
        display: flex;
        flex-direction: column;
    }
    
    .features-showcase {
        order: 1;
    }
    
    .platform-stats-section {
        order: 2;
        margin-top: 200px;
        padding-top: 0;
    }
    
    /* Ensure stats banner title matches solution section title size on mobile */
    .platform-stats-section .stats-info h3 {
        font-size: 3rem !important;
        font-weight: 400 !important;
        line-height: 1.2 !important;
    }
    
    /* Center stats boxes vertically on mobile - stack under each other */
    .platform-stats-section .stats-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }
    
    .platform-stats-section .stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
        padding: 15px 20px !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .platform-stats-section .stat-item:last-child {
        border-bottom: none !important;
    }
    
    /* Ensure 44px touch targets for mobile buttons */
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        min-height: 44px !important;
        min-width: 44px !important;
        padding: 12px 24px !important;
        font-size: 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
    }
    
    /* All mobile buttons meet 44px touch target requirement */
    .btn-primary,
    .btn-secondary {
        min-height: 44px !important;
        min-width: 44px !important;
        padding: 12px 24px !important;
    }
    
    /* Mobile CTA buttons */
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        min-height: 44px !important;
        padding: 12px 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Newsletter form mobile touch targets */
    .newsletter-form .btn-primary {
        min-height: 44px !important;
        padding: 12px 24px !important;
    }
    
    .email-input {
        min-height: 44px !important;
        padding: 12px 16px !important;
    }
}

/* Navigation styles removed - using standard page navigation */

/* ===================================
   Segment Tabs Styling
   =================================== */
.segment-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0;
}

.segment-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    border: 2px solid #DBD5D1;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #401D20;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.segment-tab span {
    color: inherit;
}

.segment-tab i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.segment-tab:hover {
    border-color: var(--primary-blue);
    background: rgba(43, 107, 154, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.segment-tab:hover i {
    transform: scale(1.1);
}

.segment-tab.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(43, 107, 154, 0.3);
}

.segment-tab.active span {
    color: #fff;
}

.segment-tab.active i {
    color: #fff;
}

/* Segment Content Containers */
.segment-content {
    display: none;
    animation: fadeInSegment 0.5s ease;
}

.segment-content.active {
    display: block;
}

@keyframes fadeInSegment {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Segment Intro */
.segment-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(43, 107, 154, 0.05) 0%, rgba(82, 160, 97, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(43, 107, 154, 0.1);
}

.segment-intro h3 {
    font-size: 2.2rem;
    font-weight: 500;
    color: #401D20;
    margin-bottom: 16px;
    line-height: 1.3;
}

.segment-intro p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* Responsive segment tabs */
@media (max-width: 768px) {
    .segment-tabs {
        gap: 8px;
        padding: 15px 0;
    }

    .segment-tab {
        padding: 12px 20px;
        font-size: 14px;
    }

    .segment-tab i {
        font-size: 16px;
    }

    .segment-intro {
        padding: 30px 15px;
        margin-bottom: 40px;
    }

    .segment-intro h3 {
        font-size: 1.6rem;
    }

    .segment-intro p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .segment-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .segment-tab {
        justify-content: center;
        width: 100%;
    }
}

/* ===================================
   Segment Hero Styles
   =================================== */
.segment-hero {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 20px;
    padding: 20px 20px;
}

.segment-above-header {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.segment-hero h2 {
    font-size: 3rem;
    font-weight: 500;
    color: #401D20;
    margin-bottom: 20px;
    line-height: 1.2;
}

.segment-subheadline {
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.6;
    margin-bottom: 16px;
}

.segment-supporting {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.6;
    margin-bottom: 32px;
}

.segment-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-text-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.btn-text-link::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.btn-text-link:hover {
    color: var(--primary-blue);
    text-decoration: none;
}

.btn-text-link:hover::after {
    margin-left: 12px;
}

.segment-trust-signal {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    font-style: italic;
}

.section-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.85);
}

.how-it-works-cta {
    text-align: center;
    padding: 40px 0;
    margin-top: 40px;
}

.how-it-works-cta .btn-primary {
    font-size: 18px;
    padding: 18px 36px;
}

/* Responsive styles for segment hero */
@media (max-width: 768px) {
    .segment-hero h2 {
        font-size: 2rem;
    }

    .segment-subheadline {
        font-size: 1.1rem;
    }

    .segment-supporting {
        font-size: 1rem;
    }

    .segment-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .segment-cta-group .btn-primary {
        width: 100%;
    }
}

/* ===================================
   Segment Problem Section
   =================================== */
.segment-problem {
    max-width: 1160px;
    margin: 20px auto;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 16px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.segment-problem h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #401D20;
    margin-bottom: 30px;
    text-align: left;
}

.problem-visual {
    text-align: left;
    margin: 30px 0;
}

.visual-flow {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-red);
    line-height: 1.8;
}

.problem-copy {
    max-width: 800px;
    margin: 30px 0;
    text-align: left;
}

.problem-copy p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 16px;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    text-align: left;
    padding: 24px;
    background: #F5F9F7;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.stat-highlight {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-red);
    line-height: 1.5;
}

.segment-cta-center {
    text-align: center;
    margin: 40px 0;
}

/* ===================================
   Value Pillars
   =================================== */
.value-pillars {
    max-width: 1200px;
    margin: 20px auto;
    padding: 40px 20px;
}

.value-pillars h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #401D20;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.pillar {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid #DBD5D1;
    transition: all 0.3s ease;
}

.pillar:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.pillar h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #401D20;
    margin-bottom: 16px;
}

.pillar-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 16px;
}

.pillar-proof {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-green);
    line-height: 1.5;
}

/* ===================================
   Segment Testimonials
   =================================== */
.segment-testimonials {
    max-width: 1000px;
    margin: 80px auto;
    padding: 40px 20px;
    text-align: center;
}

.segment-testimonials h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #401D20;
    margin-bottom: 40px;
}

.testimonials-placeholder {
    padding: 60px 40px;
    background: #F8F5EE;
    border-radius: 12px;
    border: 2px dashed #DBD5D1;
}

.testimonials-placeholder p {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.5);
    font-style: italic;
}

/* ===================================
   Segment Final CTA
   =================================== */
.segment-final-cta {
    max-width: 1160px;
    margin: 20px auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(43, 107, 154, 0.08) 0%, rgba(82, 160, 97, 0.08) 100%);
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(43, 107, 154, 0.2);
    box-sizing: border-box;
}

.segment-final-cta h2 {
    font-size: 2.3rem;
    font-weight: 500;
    color: #401D20;
    margin-bottom: 20px;
    line-height: 1.3;
}

.segment-final-cta > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 30px;
}

.cta-micro-trust {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 16px;
    font-style: italic;
}

/* ===================================
   Segment How It Works
   =================================== */
.segment-how-it-works {
    max-width: 1200px;
    margin: 20px auto;
    padding: 40px 20px;
}

.segment-how-it-works h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #401D20;
    text-align: center;
    margin-bottom: 20px;
}

.section-subheadline {
    font-size: 1.2rem;
    text-align: center;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 60px;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .segment-problem,
    .value-pillars,
    .segment-testimonials,
    .segment-final-cta,
    .segment-how-it-works {
        padding: 40px 20px;
        margin: 40px auto;
    }

    .segment-problem h2,
    .value-pillars h2,
    .segment-testimonials h2,
    .segment-final-cta h2,
    .segment-how-it-works h2 {
        font-size: 1.8rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .problem-stats {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Pillar Proof Lists
   =================================== */
.pillar-proof-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-proof-list li {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-green);
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.pillar-proof-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Section view padding removed - using standard page navigation */

/* Mobile checkbox improvements for better clarity */
@media (max-width: 768px) {
    /* Add bottom padding to body to account for sticky banner */
    body {
        padding-bottom: 95px;
    }

    .checkbox-label-new {
        font-size: 14px;
        gap: 16px;
        padding: 12px;
        background: rgba(59, 130, 246, 0.05);
        border-radius: 4px;
        margin-bottom: 8px;
    }

    .modal-form .checkbox-label-new {
        font-size: 14px;
        gap: 16px;
        padding: 12px;
        background: rgba(59, 130, 246, 0.05);
        border-radius: 4px;
        margin-bottom: 8px;
    }

    .checkbox-required,
    .modal-form .checkbox-required {
        background: rgba(43, 107, 154, 0.08);
        border: 1px solid rgba(43, 107, 154, 0.2);
    }

    .checkmark-new,
    .modal-form .checkmark-new {
        width: 22px;
        height: 22px;
        border: 2px solid #2b6b9a;
        margin-top: 0;
    }

    .checkbox-label-new span:not(.checkmark-new),
    .modal-form .checkbox-label-new span:not(.checkmark-new) {
        flex: 1;
    }

    /* Top banner mobile improvements - Convert to bottom sticky bar */
    .top-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        margin-top: 0;
        padding: 14px 16px 16px;
        z-index: 1000;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
        background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a8e 100%);
        animation: slideUpBanner 0.6s ease-out;
    }

    @keyframes slideUpBanner {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .banner-content {
        flex-direction: column;
        gap: 10px;
        padding: 0;
        text-align: center;
        max-width: 100%;
    }

    .banner-text {
        font-size: 13px;
        line-height: 1.4;
        font-weight: 500;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.95);
        padding: 0 4px;
    }

    .banner-arrow {
        display: none;
    }

    .banner-cta {
        font-size: 14px;
        font-weight: 700;
        padding: 10px 24px;
        background: white;
        color: var(--primary-blue);
        border-radius: 6px;
        border: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        letter-spacing: 0.2px;
    }

    .banner-cta:active {
        transform: scale(0.98);
    }
}

/* ========================================
   Guides Page Custom Styles
   ======================================== */

/* Guides Hero Section */
.guides-hero {
    position: relative;
    width: 100%;
    height: 25vh;
    min-height: 200px;
    overflow: hidden;
}

.guides-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Guides Content Section */
.guides-content {
    padding: 80px 0;
    background: #F8F5EE;
}

.guides-video-wrapper {
    max-width: 900px;
    margin: 0 0 60px 0;
}

.guides-video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.guides-text-content {
    max-width: 900px;
}

.guides-text-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #000;
}

.guides-text-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000;
}

.guides-text-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0,0,0,0.85);
    margin-bottom: 20px;
}

.guides-text-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.guides-text-content ul li {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0,0,0,0.85);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.guides-text-content ul li strong {
    font-weight: 600;
    color: #000;
}

/* Guides Footer Image Section */
.guides-footer-image {
    width: 100%;
    height: 400px;
    background: url('../images/andreas-gucklhorn-mawU2PoJWfU-unsplash.jpg') center/cover no-repeat;
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .guides-hero {
        height: 30vh;
        min-height: 250px;
        margin-top: 60px;
    }

    .guides-content {
        padding: 60px 0;
    }

    .guides-video-wrapper {
        margin-bottom: 40px;
    }

    .guides-text-content h2 {
        font-size: 1.75rem;
    }

    .guides-text-content h3 {
        font-size: 1.3rem;
    }

    .guides-text-content p,
    .guides-text-content ul li {
        font-size: 16px;
    }

    .guides-footer-image {
        height: 250px;
    }
}
