:root {
    /* Logo-based colors */
    --navy-blue: #1a365d;
    --teal-green: #38b2ac;
    --light-teal: #4fd1c5;
    --dark-teal: #2c7a7b;
    --pure-white: #ffffff;
    --light-gray: #f7fafc;
    --medium-gray: #e2e8f0;
    --dark-gray: #2d3748;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --gradient-teal: linear-gradient(135deg, #38b2ac 0%, #4fd1c5 100%);
    --gradient-navy: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    background: var(--pure-white);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-teal);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-teal);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(56, 178, 172, 0.1);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-blue);
    letter-spacing: -0.02em;
}

.logo-number {
    color: var(--teal-green);
    margin-left: 0.25rem;
}

.logo-hexagons {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
}

.hexagon {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gradient-teal);
    transform: rotate(30deg);
    border-radius: 2px;
    opacity: 0.8;
}

.hexagon:nth-child(1) {
    top: 0;
    left: 0;
}

.hexagon:nth-child(2) {
    top: 8px;
    left: 10px;
    opacity: 0.6;
}

.hexagon:nth-child(3) {
    top: -2px;
    left: 14px;
    opacity: 0.4;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-teal);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-teal);
    color: var(--pure-white);
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}

.nav-cta {
    background: var(--teal-green);
    color: var(--pure-white);
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--light-gray);
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-content h1 span {
    color: var(--teal-green);
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-teal);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.value-proposition {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(56, 178, 172, 0.12);
}

.value-proposition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(77, 209, 197, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.value-prop-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.value-prop-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--teal-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(56, 178, 172, 0.3);
}

.value-prop-text h4 {
    color: var(--navy-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-prop-text p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-teal);
    color: var(--pure-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--teal-green);
    border: 2px solid var(--teal-green);
}

.btn-secondary:hover {
    background: var(--teal-green);
    color: var(--pure-white);
}

.hero-visual {
    position: relative;
}

.cbam-calculator {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,0.12), 0 0 0 1px rgba(56, 178, 172, 0.1);
    border: 1px solid rgba(56, 178, 172, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cbam-calculator:hover {
    transform: translateY(-2px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(56, 178, 172, 0.2);
}


.cbam-calculator::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(56, 178, 172, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.calculator-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.calculator-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-teal);
    border-radius: 2px;
}

.calculator-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.calculator-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.6;
}

.calculator-form {
    display: grid;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 700;
    color: var(--navy-blue);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-select, .form-input {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(56, 178, 172, 0.15);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--light-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    font-weight: 500;
}

.form-select::before, .form-input::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(56, 178, 172, 0.2) 0%, rgba(26, 54, 93, 0.1) 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-select:hover::before, .form-input:hover::before {
    opacity: 1;
}

.form-select:focus, .form-input:focus {
    outline: none;
    border-color: var(--teal-green);
    background: var(--pure-white);
    box-shadow: 0 0 0 6px rgba(56, 178, 172, 0.2), 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px) scale(1.02);
}

.calculator-result {
    background: var(--gradient-teal);
    color: var(--pure-white);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.calculator-result.show {
    opacity: 1;
    transform: translateY(0);
}

.result-amount {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.calculator-cta {
    background: var(--teal-green);
    color: var(--pure-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1.5rem;
    box-shadow: 0 12px 32px rgba(56, 178, 172, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 0.75rem;
}

.calculator-cta:hover {
    transform: translateY(-4px) scale(1.03);
    background: var(--dark-teal);
    box-shadow: 0 16px 40px rgba(56, 178, 172, 0.4);
}

.calculator-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.calculator-cta:hover::before {
    left: 100%;
}

.calculator-cta:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

/* What Sets Us Apart Section */
.differentiators {
    padding: 5rem 2rem;
    background: var(--pure-white);
    position: relative;
}

.differentiators::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(45deg, rgba(56, 178, 172, 0.02) 0%, rgba(26, 54, 93, 0.03) 100%);
    z-index: 0;
}

.differentiators::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(56, 178, 172, 0.02) 0%, rgba(26, 54, 93, 0.02) 100%);
    z-index: 0;
}

.differentiators-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
}

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

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

.diff-card {
    background: var(--light-gray);
    padding: 1.75rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 380px;
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-teal);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.diff-card:hover::before {
    transform: scaleX(1);
}

.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background: var(--pure-white);
}

.diff-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.diff-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.diff-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(226, 232, 240, 0.5);
    border-radius: 8px;
    overflow: hidden;
    margin: 0.5rem 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-teal);
    width: 0%;
    transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(56, 178, 172, 0.3);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

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

.metric-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--teal-green);
    margin: 1rem 0 0.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.metric-number.animate {
    opacity: 1;
    transform: translateY(0);
}

/* CBAM Implementation Timeline Section */
.timeline {
    padding: 5rem 2rem;
    background: var(--pure-white);
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(56, 178, 172, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(26, 54, 93, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.timeline-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline-wrapper {
    position: relative;
    margin-top: 4rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-teal);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

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

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

.timeline-dot {
    width: 80px;
    height: 80px;
    background: var(--pure-white);
    border: 4px solid var(--teal-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-green);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 8px 24px rgba(56, 178, 172, 0.3);
    transition: all 0.3s ease;
}

.timeline-dot:hover {
    background: var(--teal-green);
    color: var(--pure-white);
    transform: translateX(-50%) scale(1.1);
}

.timeline-content {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    width: calc(50% - 60px);
    position: relative;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background: var(--pure-white);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-badge {
    background: var(--teal-green);
    color: var(--pure-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.timeline-duration {
    background: rgba(56, 178, 172, 0.1);
    color: var(--teal-green);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }

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

    .timeline-dot {
        left: 30px;
        width: 60px;
        height: 60px;
    }

    .timeline-content {
        width: calc(100% - 40px);
        margin-left: 40px !important;
        margin-right: 0 !important;
    }
}

/* Live Compliance Dashboard Preview */
.dashboard-preview {
    padding: 5rem 2rem;
    background: var(--light-gray);
    position: relative;
}

.dashboard-container {
    max-width: 1280px;
    margin: 0 auto;
}

.dashboard-wrapper {
    margin-top: 4rem;
    perspective: 1000px;
}

.dashboard-frame {
    background: var(--pure-white);
    border-radius: 8px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transform: rotateX(5deg) rotateY(-2deg);
    transition: all 0.3s ease;
}

.dashboard-frame:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.02);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
}

.dashboard-header {
    background: var(--navy-blue);
    color: var(--pure-white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s infinite;
}

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

.dashboard-content {
    padding: 2rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    flex-shrink: 0;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.dashboard-charts {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.chart-container {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.chart-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-blue);
}

.chart-period {
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: var(--pure-white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.chart-visual {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 150px;
    padding: 1rem 0;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.bar-fill {
    width: 100%;
    background: var(--teal-green);
    border-radius: 4px 4px 0 0;
    height: var(--height);
    transition: all 0.6s ease;
    position: relative;
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--dark-teal);
    border-radius: 2px;
}

.bar-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.alert-panel {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--navy-blue);
}

.alert-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--pure-white);
    border-radius: 6px;
    font-size: 0.875rem;
}

.alert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.alert-item.low .alert-dot {
    background: #fbbf24;
}

.alert-item.medium .alert-dot {
    background: #f97316;
}

.alert-item.resolved .alert-dot {
    background: #22c55e;
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--pure-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-item i {
    color: var(--teal-green);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .dashboard-charts {
        grid-template-columns: 1fr;
    }

    .dashboard-frame {
        transform: none;
    }

    .dashboard-frame:hover {
        transform: scale(1.02);
    }
}

/* Interactive EU Map Section */
.eu-map-section {
    padding: 5rem 2rem;
    background: var(--pure-white);
    position: relative;
}

.eu-map-container {
    max-width: 1280px;
    margin: 0 auto;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: start;
}

.eu-map-interactive {
    position: relative;
    background: var(--light-gray);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    overflow: visible;
}

/* Map Container for Interactive EU Map */
#map-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    overflow: visible;
    border: 1px solid var(--medium-gray);
    cursor: grab;
}

#map-container:active {
    cursor: grabbing;
}

/* SVG Container for proper scaling */
#svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#svg-container svg,
#svg-container object {
    width: 100%;
    height: 100%;
    display: block;
    transform-origin: center center;
}

/* Ensure SVG maintains aspect ratio when scaled */
#svg-container svg {
    min-width: 100%;
    min-height: 100%;
    object-fit: contain;
    preserveAspectRatio: xMidYMid meet;
}

#svg-container object {
    pointer-events: all;
}

/* Zoom Controls */
.zoom-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.zoom-btn {
    width: 40px;
    height: 40px;
    background: var(--pure-white);
    border: 2px solid var(--teal-green);
    border-radius: 8px;
    color: var(--teal-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.zoom-btn:hover {
    background: var(--teal-green);
    color: var(--pure-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.zoom-btn:active {
    transform: scale(0.95);
}

.europe-svg-map {
    width: 100%;
    height: 500px;
    background: var(--light-gray);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.map-country {
    cursor: pointer;
    transition: all 0.3s ease;
    stroke: #34495e;
    stroke-width: 2;
}

.map-country:hover {
    stroke-width: 3;
    filter: brightness(1.1) drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.map-country.high-emissions {
    fill: #e74c3c;
}

.map-country.medium-emissions {
    fill: #f39c12;
}

.map-country.low-emissions {
    fill: #27ae60;
}

.map-country.non-eu {
    fill: #bdc3c7;
}

.country-card {
    background: var(--pure-white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.country-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-green);
}

.country-flag {
    width: 60px;
    height: 40px;
    border-radius: 4px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.flag-de { background: linear-gradient(to bottom, #000 33%, #dd0000 33%, #dd0000 66%, #ffce00 66%); }
.flag-fr { background: linear-gradient(to right, #0055a4 33%, #ffffff 33%, #ffffff 66%, #ef4135 66%); }
.flag-it { background: linear-gradient(to right, #009246 33%, #ffffff 33%, #ffffff 66%, #ce2b37 66%); }
.flag-es { background: linear-gradient(to bottom, #c60b1e 25%, #ffc400 25%, #ffc400 75%, #c60b1e 75%); }
.flag-pl { background: linear-gradient(to bottom, #ffffff 50%, #dc143c 50%); }
.flag-nl { background: linear-gradient(to bottom, #ae1c28 33%, #ffffff 33%, #ffffff 66%, #21468b 66%); }
.flag-be { background: linear-gradient(to right, #000000 33%, #ffd90c 33%, #ffd90c 66%, #ef3340 66%); }
.flag-se { background: linear-gradient(to bottom, #006aa7 40%, #fecc00 40%, #fecc00 60%, #006aa7 60%), linear-gradient(to right, #006aa7 45%, #fecc00 45%, #fecc00 55%, #006aa7 55%); }

.country-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
}

.emissions-level {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.emissions-level.high {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.emissions-level.medium {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.emissions-level.low {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.status-badge {
    background: var(--teal-green);
    color: var(--pure-white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.map-tooltip {
    position: absolute;
    background: var(--navy-blue);
    color: var(--pure-white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
    min-width: 200px;
}

.map-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.tooltip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tooltip-status {
    background: var(--teal-green);
    color: var(--pure-white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tooltip-metric {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.metric-value {
    font-weight: 600;
}

.map-legend {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.legend-section {
    margin-bottom: 2rem;
}

.legend-section:last-child {
    margin-bottom: 0;
}

.legend-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.map-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-stat {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    background: var(--pure-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--teal-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .map-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .eu-map-interactive {
        padding: 1rem;
    }
}

/* Parallax Scrolling Effects */
.parallax-element {
    transition: transform 0.1s ease-out;
}

.hero-parallax-bg {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background: radial-gradient(circle at 30% 70%, rgba(56, 178, 172, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(26, 54, 93, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.section-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.03;
}

/* Clients Section */
.clients {
    padding: 5rem 0;
    background: var(--light-gray);
    overflow: hidden;
    position: relative;
}

.clients::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(56, 178, 172, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(26, 54, 93, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.clients-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.clients-header {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.clients-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 3rem;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}

.clients-carousel {
    display: flex;
    gap: 2rem;
    padding: 10px 0;
    width: max-content;
    max-width: 100%;
}

/* On larger screens where all logos fit */
@media (min-width: 1400px) {
    .clients-carousel {
        justify-content: center;
    }
}

/* On smaller screens where logos overflow, enable scrolling */
@media (max-width: 1399px) {
    .clients-carousel-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
    }

    .clients-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .clients-carousel {
        animation: scrollBackForth 30s linear infinite;
        cursor: grab;
    }

    .clients-carousel:active {
        cursor: grabbing;
    }

    .clients-carousel:hover {
        animation-play-state: paused;
    }

    @keyframes scrollBackForth {
        0% {
            transform: translateX(50px);
        }
        25% {
            transform: translateX(50px);
        }
        75% {
            transform: translateX(calc(-100% + 100vw - 50px));
        }
        100% {
            transform: translateX(50px);
        }
    }
}

.client-logo-wrapper {
    flex: 0 0 220px;
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.client-logo-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.client-logo {
    max-width: 160px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

/* Consulting Plans Section */
.plans {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.plans-container {
    max-width: 1280px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.plan-card {
    background: var(--pure-white);
    border: 1px solid var(--medium-gray);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.plan-header {
    text-align: left;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--medium-gray);
    padding-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.plan-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.plan-price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.plan-price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--teal-green);
}

.plan-price-period {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.plan-price-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.plan-features i {
    color: var(--teal-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-cta {
    width: 100%;
    padding: 0.875rem;
    background: var(--teal-green);
    color: var(--pure-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-top: auto;
}

.plan-cta:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* CTA Section */
.cta {
    padding: 5rem 2rem;
    background: var(--gradient-navy);
    color: var(--pure-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--teal-green);
    border-radius: 50%;
    transform: rotate(45deg);
    opacity: 0.6;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: 30px;
    right: 60px;
    width: 24px;
    height: 24px;
    border: 2px solid var(--teal-green);
    border-radius: 50%;
    transform: rotate(45deg);
    opacity: 0.4;
}

.cta-badge {
    color: var(--teal-green);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(56, 178, 172, 0.1) 0%, rgba(26, 54, 93, 0.2) 100%);
    z-index: 0;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

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

.btn-white {
    background: var(--pure-white);
    color: var(--navy-blue);
}

.btn-white:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Footer */
footer {
    background: var(--navy-blue);
    color: var(--pure-white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-brand .logo-number {
    color: var(--teal-green);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--teal-green);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--teal-green);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}