:root {
    /* Base Colors */
    --white: #ffffff;
    --black: #000000;
    
    /* Dark Theme - Default */
    --bg-primary: #0f1119;
    --bg-secondary: #171b28;
    --bg-tertiary: #1e2436;
    --bg-quaternary: #282d3e;
    --text-primary: rgba(255, 255, 255, 0.9);
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --accent-color: #3a76f0;
    --accent-teal: #05b6d3;
    --hover-color: #4e84f0;
    --border-color: rgba(255, 255, 255, 0.08);

    /* Light Theme */
    --bg-primary-light: #ffffff;
    --bg-secondary-light: #f5f5f7;
    --bg-tertiary-light: #eaeaed;
    --bg-quaternary-light: #e2e2e7;
    --text-primary-light: rgba(0, 0, 0, 0.9);
    --text-secondary-light: rgba(0, 0, 0, 0.7);
    --text-tertiary-light: rgba(0, 0, 0, 0.5);
    --accent-color-light: #ff3b30; /* Apple Red */
    --accent-teal-light: #ff3b30; /* Converted to red */
    --hover-color-light: #ff6b6d;
    --border-color-light: rgba(0, 0, 0, 0.1);

    /* Apple-specific colors */
    --apple-red: #ff3b30;
    --apple-orange: #ff9500;
    --apple-yellow: #ffcc00;
    --apple-green: #34c759;
    --apple-mint: #00c7be;
    --apple-teal: #00c7be; /* Matched to mint */
    --apple-cyan: #00c7be; /* Matched to mint */
    --apple-blue: #ff3b30; /* Converted to red */
    --apple-indigo: #ff3b30; /* Converted to red */
    --apple-purple: #af52de;
    --apple-pink: #ff2d55;
    --apple-brown: #a2845e;
    --apple-gray: #8e8e93;

    /* State colors */
    --success-color: #34c759;
    --warning-color: #ff9500;
    --danger-color: #ff3b30;
    --info-color: #ff3b30; /* Changed to red */

    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #ff3b30, #ff6b6d); /* Changed to red gradient */
    --gradient-red: linear-gradient(135deg, #ff3b30, #ff6b6d);
    --gradient-purple: linear-gradient(135deg, #af52de, #d090ea);
    --gradient-orange: linear-gradient(135deg, #ff9500, #ffb340);
    --gradient-green: linear-gradient(135deg, #34c759, #63d97b);

    /* Chart colors */
    --chart-1: #ff3b30;
    --chart-2: #ff6b6d;
    --chart-3: #ff9500;
    --chart-4: #ffcc00;
    --chart-5: #34c759;

    --background-color: #000000;
    --text-color: #ffffff;
    --accent-color: #d22326;
    --dock-bg: rgba(255, 255, 255, 0.2);
    --dock-border: rgba(255, 255, 255, 0.3);
    --window-bg: rgba(40, 40, 40, 0.85);
    --apple-blue: #0071e3;
    --apple-green: #5ac74a;
    --apple-gray: #86868b;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-hover-bg: rgba(255, 255, 255, 0.08);
    --card-border: rgba(255, 255, 255, 0.1);
    --card-hover-border: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --transition-speed: 0.3s;
}

/* Light theme variables */
[data-theme="light"] {
    --background-color: #f5f5f7;
    --text-color: #1d1d1f;
    --dock-bg: rgba(240, 240, 240, 0.8);
    --dock-border: rgba(0, 0, 0, 0.06);
    --window-bg: rgba(255, 255, 255, 0.95);
    --card-bg: rgba(255, 255, 255, 1); /* Più bianco solido invece di semi-trasparente */
    --card-hover-bg: rgba(255, 255, 255, 1);
    --card-border: rgba(0, 0, 0, 0.06);
    --card-hover-border: rgba(0, 0, 0, 0.1);
    --text-primary: #1d1d1f;
    --text-secondary: rgba(0, 0, 0, 0.7);
    
    /* Apple-like colors palette - rosso invece di blu */
    --accent-color-light: #ff3b30; /* Apple red */
    --accent-secondary-light: #ff3b30; /* Apple red */
    --accent-success-light: #ff3b30; /* Rosso invece di verde */
    --accent-warning-light: #ff9500; /* Apple orange */
    --accent-danger-light: #ff3b30; /* Apple red */
    --accent-purple-light: #5e5ce6; /* Apple purple */
    --accent-pink-light: #ff2d55; /* Apple pink */
    --accent-teal-light: #5ac8fa; /* Apple teal */
    --accent-indigo-light: #5856d6; /* Apple indigo */
    
    /* Gradient colors for charts and graphics */
    --gradient-blue: linear-gradient(135deg, #ff3b30, #ff6b6d);
    --gradient-green: linear-gradient(135deg, #ff3b30, #ff6b6d);
    --gradient-orange: linear-gradient(135deg, #ff9500, #ffcc00);
    --gradient-red: linear-gradient(135deg, #ff3b30, #ff2d55);
    --gradient-purple: linear-gradient(135deg, #5e5ce6, #bf5af2);
}

/* Theme Switch Styles */
.theme-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: block !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 60px;
    height: 30px;
}

.theme-toggle-label {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 60px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    cursor: pointer;
    padding: 0 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.theme-toggle-label::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

#theme-toggle {
    display: none;
}

#theme-toggle:checked + .theme-toggle-label::before {
    transform: translateX(30px);
}

.theme-toggle-label .fa-sun {
    color: #ffd700;
    font-size: 14px;
    z-index: 1;
}

.theme-toggle-label .fa-moon {
    color: #ffffff;
    font-size: 14px;
    z-index: 1;
}

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

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Custom cursor */
a, button, .dock-app, .control, .cta-button {
    cursor: pointer;
}

/* Desktop Background - for VANTA.js */
.desktop-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #222222; /* fallback color */
}

/* Header Styles */
.header, .nav-row, .nav-logo, .website-link {
    display: none;
}

/* Hero Section */
.hero-section {
    padding-top: 30px;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

[data-theme="light"] .hero-title {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

[data-theme="light"] .hero-subtitle {
    color: #1d1d1f;
    font-weight: 400;
}

/* Dock Styles - MacOS Style */
.dock-container {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    padding-bottom: 50px;
}

.dock {
    display: flex;
    align-items: flex-end; /* Allinea le icone in basso */
    justify-content: center;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 18px;
    padding: 5px 10px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10; /* Ridotto per permettere alle icone di apparire sopra il dock */
    height: 65px; /* Altezza ridotta da 75px a 65px */
    box-sizing: content-box;
    margin-bottom: 8px;
    overflow: visible !important; /* Assicura che le icone possano uscire dal dock */
}

[data-theme="light"] .dock {
    background: transparent;
    border: none;
    box-shadow: none;
}

.dock-apps {
    display: flex;
    align-items: flex-end; /* Allinea le icone in basso */
    height: 100%;
    padding: 0 5px;
    max-width: 100%;
    overflow: visible !important; /* Assicura che le icone possano uscire dal dock */
    position: relative;
}

.dock-app {
    width: 60px; /* Aumentato da 45px a 60px */
    height: 60px; /* Aumentato da 45px a 60px */
    overflow: visible !important; /* Importante per far uscire le icone dal dock */
    cursor: pointer;
    position: relative;
    transform-origin: bottom center;
    transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0) translateY(0); /* Inizialmente a 0 */
    background: transparent !important;
    border: none;
    padding: 0;
    margin: 0 8px; /* Aumentato da 5px a 8px */
    box-shadow: none !important;
    border-radius: 0 !important;
    animation: dock-bounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation-delay: calc(var(--i, 0) * 0.08s);
    animation-fill-mode: backwards;
}

.dock-app img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    will-change: transform, filter;
    transform: translateZ(0);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    background: transparent !important;
    border: none !important;
    padding: 0;
    margin: 0;
    max-width: 100%;
    display: block;
    border-radius: 10px !important; /* Aggiunto per migliorare l'aspetto */
    box-shadow: none !important;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Aggiungi effetto specifico per hover */
.dock-app:hover img {
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3)) 
            drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
    transform: translateZ(0) scale(1.2);
    animation: icon-pulse 1.5s infinite alternate ease-in-out;
}

@keyframes icon-pulse {
    0% {
        filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3)) 
                drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
    }
    100% {
        filter: drop-shadow(0 5px 18px rgba(255, 255, 255, 0.4)) 
                drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
    }
}

.dock-app .tooltip {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.65);
    color: white;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    white-space: nowrap;
    font-weight: 400;
    letter-spacing: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    z-index: 1000;
}

/* Ensure tooltip is always hidden by default */
.dock-app .tooltip {
    opacity: 0 !important;
    transform: translateX(-50%) translateY(10px);
}

/* Only show tooltip for the specific hovered app */
.dock-app.hovered .tooltip {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0);
}

/* Aggiungi la freccia del tooltip */
.dock-app .tooltip::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .dock-app .tooltip {
    background: rgba(255, 255, 255, 0.9);
    color: #1d1d1f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .dock-app .tooltip::before {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.05);
}

/* Remove automatic tooltip show on hover - we'll handle this in JS */
.dock-app:hover .tooltip {
    opacity: 0;
}

/* Adjust dock container to ensure tooltips are visible */
.dock-container {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    padding-bottom: 50px;
}

[data-theme="light"] .dock-app .tooltip {
    background: rgba(240, 240, 240, 0.8);
    color: black;
}

/* Optimized bounce animation on dock load */
@keyframes dock-bounce {
    0% { transform: translateZ(0) translateY(0); }
    50% { transform: translateZ(0) translateY(-10px); }
    100% { transform: translateZ(0) translateY(0); }
}

.dock-app {
    animation: dock-bounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation-delay: calc(var(--i, 0) * 0.08s);
    animation-fill-mode: backwards;
}

/* Window Styles - macOS Dark Mode */
.app-window {
    position: absolute !important;
    background: rgba(40, 40, 40, 0.85);
    border-radius: 10px;
    opacity: 0;
    pointer-events: all;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(70, 70, 70, 0.6);
    z-index: 500;
    transform: scale(0.95);
    user-select: none;
}

.app-window.active {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
}

.app-window.minimized {
    transform: scale(0.1);
    opacity: 0;
    pointer-events: none;
}

.app-window.maximized {
    width: 90% !important;
    height: 80vh !important;
    top: 10vh !important;
    left: 5% !important;
    transform: none !important;
}

/* Window header and controls - macOS Dark Mode */
.window-header {
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: 32px;
    background: rgba(60, 60, 60, 0.9);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    user-select: none;
    position: relative;
    cursor: grab;
}

.window-header:active {
    cursor: grabbing;
}

.window-controls {
    display: flex;
    gap: 8px;
    margin-right: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
}

.control:hover {
    transform: scale(1.1);
}

.control.close {
    background-color: #ff5f57;
    border: 0.5px solid rgba(0, 0, 0, 0.2);
}

.control.minimize {
    background-color: #ffbd2e;
    border: 0.5px solid rgba(0, 0, 0, 0.2);
}

.control.maximize {
    background-color: #28c940;
    border: 0.5px solid rgba(0, 0, 0, 0.2);
}

/* Add icons to controls */
.control::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.control.close:hover::before {
    content: '×';
    opacity: 0.7;
}

.control.minimize:hover::before {
    content: '−';
    opacity: 0.7;
}

.control.maximize:hover::before {
    content: '+';
    opacity: 0.7;
}

.window-title {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    flex-grow: 1;
    margin-left: -52px; /* Offset the controls to center the title */
}

.window-content {
    padding: 20px;
    overflow-y: auto;
    height: calc(100% - 40px);
    font-family: 'SF Pro Display', 'Helvetica Neue', ui-sans-serif, -apple-system, system-ui, sans-serif;
    line-height: 1.6;
    letter-spacing: -0.022em;
}

#window-executive-summary .window-content {
    font-family: 'New York', 'Times New Roman', ui-serif, Georgia, serif;
    font-size: 1.05em;
    line-height: 1.7;
    letter-spacing: -0.015em;
}

#window-executive-summary .window-content h2 {
    font-family: 'SF Pro Display', 'Helvetica Neue', ui-sans-serif, -apple-system, system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 1.5em;
}

#window-executive-summary .window-content h3 {
    font-family: 'SF Pro Display', 'Helvetica Neue', ui-sans-serif, -apple-system, system-ui, sans-serif;
    font-weight: 500;
    letter-spacing: -0.025em;
    margin-top: 1.8em;
}

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

.window-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.window-content p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: #424245;
}

.window-content ul {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.window-content li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #424245;
}

.window-content strong {
    font-weight: 600;
    color: var(--text-color);
}

/* Focus styling */
.app-window.focused {
    z-index: 1000;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Custom scrollbar for dark mode */
.window-content::-webkit-scrollbar {
    width: 8px;
}

.window-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.window-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.window-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Screen overlay - Remove to allow multiple windows */
.screen-overlay {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .dock-app {
        width: 50px;
        height: 50px;
    }
    
    .window-content {
        padding: 2rem;
    }
    
    .window-content h2 {
        font-size: 2rem;
    }
    
    .app-window {
        width: 95%;
        height: 90vh;
    }
}

/* Custom content styling for different app windows - macOS Dark Mode */
.section-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    transition: all var(--transition-speed) ease;
    margin-bottom: var(--spacing-lg);
}

.section-card:hover {
    background: var(--card-hover-bg);
    border-color: var(--card-hover-border);
    transform: translateY(-2px);
}

.section-card h2 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

[data-theme="light"] .section-card h2 {
    color: var(--text-primary);
}

.section-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

[data-theme="light"] .section-card p {
    color: var(--text-secondary);
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 600;
}

[data-theme="light"] .highlight-text {
    color: var(--accent-color-light);
}

.stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(210, 35, 38, 0.05);
}

.stat-label {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

[data-theme="light"] .stat-label {
    color: var(--text-primary);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(210, 35, 38, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

[data-theme="light"] .stat-number {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.case-study-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(210, 35, 38, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(210, 35, 38, 0.15);
}

.case-study-content {
    padding: 2rem;
}

.case-study-header {
    text-align: center;
    margin-bottom: 3rem;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.client-logo {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
}

.client-info h3 {
    color: #ffffff;
    font-size: 2rem;
    margin: 0;
}

[data-theme="light"] .client-info h3 {
    color: var(--text-primary);
}

.client-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin: 0;
}

[data-theme="light"] .client-description {
    color: #434344;
    font-weight: 400;
}

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

.problem-section, .solution-section, .impact-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.problem-section:hover, .solution-section:hover, .impact-section:hover {
    transform: translateY(-5px);
}

.section-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.section-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.problem-section h3, .solution-section h3, .impact-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

[data-theme="light"] .problem-section h3, 
[data-theme="light"] .solution-section h3, 
[data-theme="light"] .impact-section h3 {
    color: var(--text-primary);
}

.problem-section p, .solution-section p, .impact-section p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

[data-theme="light"] .problem-section p, 
[data-theme="light"] .solution-section p, 
[data-theme="light"] .impact-section p {
    color: var(--text-secondary);
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-header {
    text-align: center;
    margin-bottom: 2rem;
}

.preview-header h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

[data-theme="light"] .preview-header h3 {
    color: var(--text-primary);
}

.preview-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

[data-theme="light"] .preview-header p {
    color: var(--text-secondary);
}

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

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

[data-theme="light"] .stat-box {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.stat-box i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

[data-theme="light"] .stat-box i {
    color: var(--accent-color-light);
}

.stat-box h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

[data-theme="light"] .stat-box h4 {
    color: var(--text-primary);
}

.stat-box p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

[data-theme="light"] .stat-box p {
    color: var(--text-secondary);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 8px;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.8);
}

.results-section {
    text-align: center;
}

.results-section h3 {
    color: #ffffff;
    margin-bottom: 2rem;
}

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

.result-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

[data-theme="light"] .result-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.result-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

[data-theme="light"] .result-item i {
    color: var(--accent-color-light);
}

.result-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

[data-theme="light"] .result-item h4 {
    color: var(--text-primary);
}

.result-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

[data-theme="light"] .result-item p {
    color: var(--text-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover .team-avatar {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(210, 35, 38, 0.2);
}

.team-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--text-color);
    font-size: 0.9rem;
}

.call-to-action {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 12px;
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
}

.call-to-action h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-main {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-highlight {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.cta-value {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cta-achievements {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 1rem 0;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.achievement-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.achievement-item p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.cta-footer {
    text-align: center;
}

.cta-ready {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.cta-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease;
}

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

.cta-button i {
    font-size: 1.2rem;
}

/* Light theme adjustments */
[data-theme="light"] .call-to-action {
    background: white;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .cta-highlight {
    color: var(--text-primary);
}

[data-theme="light"] .achievement-item i {
    color: var(--accent-color);
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--accent-color);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Graph styles */
.chart-container {
    width: 100%;
    height: 300px;
    margin: 2rem 0;
    position: relative;
}

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

.chart-tooltip {
    position: absolute;
    background: rgba(38, 38, 38, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Image slider */
.image-slider {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 12px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.slider-dot.active {
    background: white;
}

/* Resize handle */
.resize-handle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    cursor: nwse-resize;
    z-index: 10;
    background: transparent;
}

.resize-handle:after {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.app-window:hover .resize-handle:after {
    opacity: 0.8;
}

/* Draggable window */
.app-window.draggable {
    user-select: none;
}

/* Mobile Warning */
#mobile-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.mobile-warning-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-warning-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.mobile-warning-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1024px) {
    #mobile-warning {
        display: none;
    }
}

/* Key Points Component - Executive Summary */
.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.key-point {
    display: flex;
    background: rgba(60, 60, 60, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(100, 100, 100, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.key-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(70, 70, 70, 0.7);
}

/* Light theme styling for key-point */
[data-theme="light"] .key-point {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .key-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: white;
}

.key-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Light theme styling for key-icon */
[data-theme="light"] .key-icon {
    background: var(--gradient-red);
}

.key-icon i {
    font-size: 1.25rem;
    color: white;
}

.key-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
}

/* Light theme styling for key-content */
[data-theme="light"] .key-content h3 {
    color: var(--text-primary);
    font-weight: 600;
}

.key-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Light theme styling for key-content paragraph */
[data-theme="light"] .key-content p {
    color: var(--text-secondary);
}

.summary-footer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.summary-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-footer p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.01em;
}

[data-theme="light"] .summary-footer {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .summary-footer:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .summary-footer p {
    color: #1d1d1f;
}

/* Corporate Structure Styling */
.structure-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .structure-container {
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
    }
}

.entity-card {
    background: rgba(60, 60, 60, 0.7);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(100, 100, 100, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    max-width: 100%;
    margin-bottom: 1.5rem;
}

[data-theme="light"] .entity-card {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 100%;
    margin-bottom: 1.5rem;
}

[data-theme="light"] .entity-card.hong-kong {
    border-left: 4px solid var(--accent-color-light);
}

[data-theme="light"] .entity-card.uk {
    border-left: 4px solid var(--accent-color-light);
}

[data-theme="light"] .entity-header i {
    color: white;
    background: var(--gradient-red);
}

[data-theme="light"] .entity-header h3 {
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -0.022em;
}

[data-theme="light"] .entity-card h4 {
    color: var(--accent-color-light);
    font-weight: 500;
    letter-spacing: -0.016em;
}

[data-theme="light"] .entity-card ul {
    padding-left: 1.2rem;
    margin: 0;
}

[data-theme="light"] .entity-card li {
    color: var(--text-secondary);
    position: relative;
    padding-left: 5px;
}

[data-theme="light"] .entity-card li::before {
    content: "✓";
    color: var(--accent-color-light);
    position: absolute;
    left: -15px;
}

[data-theme="light"] .divider-line {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .divider-icon {
    background: var(--gradient-red);
}

[data-theme="light"] .team-model, 
[data-theme="light"] .structure-rationale {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .team-model h3, 
[data-theme="light"] .structure-rationale h3 {
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -0.022em;
}

[data-theme="light"] .team-model li, 
[data-theme="light"] .structure-rationale li {
    color: var(--text-secondary);
}

[data-theme="light"] .structure-rationale p {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .entity-card {
        max-width: 45%;
        margin-bottom: 0;
    }
}

.entity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.entity-card.hong-kong {
    border-left: 4px solid #ff5f57;
}

.entity-card.uk {
    border-left: 4px solid #ff5f57;
}

.entity-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.entity-header i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(80, 80, 80, 0.6);
    border-radius: 50%;
}

.entity-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
}

.entity-card h4 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin: 0.5rem 0 1rem;
}

.entity-card ul {
    padding-left: 1.2rem;
    margin: 0;
}

.entity-card li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.entity-divider {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .entity-divider {
        flex-direction: column;
        width: auto;
        margin: 0 2rem;
    }
}

.divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .divider-line {
        width: 1px;
        height: 100px;
    }
}

.divider-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    border-radius: 50%;
    margin: 0 1rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .divider-icon {
        margin: 1rem 0;
    }
}

.divider-icon i {
    color: white;
    font-size: 1rem;
}

.team-model, .structure-rationale {
    background: rgba(60, 60, 60, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(100, 100, 100, 0.4);
}

.team-model h3, .structure-rationale h3 {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.team-model ul, .structure-rationale ul {
    padding-left: 1.5rem;
}

.team-model li, .structure-rationale li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.structure-rationale p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.section-header h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    margin: 0 auto;
}

/* Executive Summary Styles */
.intro-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

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

.point {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.point i {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.point h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.point p {
    color: rgba(255, 255, 255, 0.8);
}

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

.entity-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.entity-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.entity-box i {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.entity-box h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.entity-box p {
    color: rgba(255, 255, 255, 0.8);
}

.callout-box {
    background: rgba(255, 59, 48, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.callout-box h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.callout-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.callout-box ul {
    padding-left: 1.5rem;
    margin: 0;
}

.callout-box ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.callout-box ul li:before {
    content: "✓";
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Light theme styling for callout-box list item checkmarks */
[data-theme="light"] .callout-box ul li:before {
    color: var(--accent-color-light);
}

.summary-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Corporate Structure Styles */
.structure-hierarchy {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .structure-hierarchy {
        flex-direction: row;
    }
}

.entity-responsibilities {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.entity-responsibilities li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.entity-responsibilities li i {
    color: var(--accent-color);
    margin-right: 0.8rem;
    font-size: 1rem;
}

.entity-responsibilities li::before {
    display: none;
}

.team-structure {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.team-block {
    flex: 1;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-icon {
    width: 48px;
    height: 48px;
    background: #ff3b30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.team-icon i {
    color: white;
    font-size: 1.5rem;
}

.team-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.team-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.team-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-content li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.structure-summary {
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

@media (max-width: 768px) {
    .team-structure {
        flex-direction: column;
        align-items: center;
    }
    
    .team-block {
        width: 100%;
    }
}

/* Market Opportunity Styles */
.market-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.market-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: -0.022em;
}

/* Light theme styling for market-intro */
[data-theme="light"] .market-intro p {
    color: var(--text-primary);
    font-weight: 400;
}

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

.chart {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

/* Light theme styling for chart */
[data-theme="light"] .chart {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

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

/* Light theme styling for chart hover */
[data-theme="light"] .chart:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.chart h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Light theme styling for chart heading */
[data-theme="light"] .chart h3 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.data-point {
    text-align: center;
}

.data-point .value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Light theme styling for data-point value */
[data-theme="light"] .data-point .value {
    color: var(--text-primary);
    font-weight: bold;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.data-point .year {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Light theme styling for data-point year */
[data-theme="light"] .data-point .year {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.chart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Light theme styling for chart-footer */
[data-theme="light"] .chart-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cagr {
    color: #ff5f57;
    font-weight: 500;
}

/* Light theme styling for CAGR */
[data-theme="light"] .cagr {
    color: var(--accent-color-light);
    font-weight: 600;
}

.source {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Light theme styling for source */
[data-theme="light"] .source {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.market-position {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.market-position h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* Light theme styling for market-position heading */
[data-theme="light"] .market-position h3 {
    color: var(--text-primary);
    font-weight: 600;
}

.market-position p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Light theme styling for market-position paragraph */
[data-theme="light"] .market-position p {
    color: var(--text-secondary);
}

.position-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Light theme styling for point */
[data-theme="light"] .point {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.point:hover {
    transform: translateX(10px);
}

/* Light theme styling for point hover */
[data-theme="light"] .point:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.point i {
    color: #ff5f57;
    font-size: 1.2rem;
}

/* Light theme styling for point icon */
[data-theme="light"] .point i {
    color: var(--accent-color-light);
    font-size: 1.2rem;
}

.point span {
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

/* Light theme styling for point text */
[data-theme="light"] .point span {
    color: var(--text-secondary);
    text-align: left;
}

.position-summary {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Light theme styling for position-summary */
[data-theme="light"] .position-summary {
    color: var(--text-primary);
    font-weight: 500;
    font-style: italic;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Services and Token Styles */
.services-token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.agency-services, .token-utility {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-area {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-area:hover {
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.service-header h4 {
    color: #ffffff;
    margin: 0;
}

.service-area ul {
    list-style: none;
    padding: 0;
}

.service-area ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-area ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.case-study {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.case-study h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.growth-timeline {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.timeline-item {
    text-align: center;
}

.timeline-item .amount {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-item .label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.token-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tier {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.tier-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tier-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.tier-header h4 {
    color: #ffffff;
    margin: 0;
}

.tier-amount {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: left;
}

.tier ul {
    list-style: none;
    padding: 0;
}

.tier ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tier ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.upcoming-features {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
}

.upcoming-features h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.upcoming-features ul {
    list-style: none;
    padding: 0;
}

.upcoming-features ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.upcoming-features ul li i {
    color: var(--accent-color);
}

.saas-integration {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.saas-integration h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.ecosystem-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.flow-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.flow-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.flow-item h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.flow-item ul {
    list-style: none;
    padding: 0;
}

.flow-item ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

/* Financial Performance Styles */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.metric-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.metric-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.metric-box h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.metric-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.valuation-calculation {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.valuation-calculation h3 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.calculation-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content {
    text-align: center;
}

.step-content h4 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step-content p {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.financial-details {
    text-align: center;
    margin-top: 2rem;
}

.details-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.details-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.details-link i {
    font-size: 0.9rem;
}

/* Team Section Styles */
.team-content {
    padding: 2rem;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.core-team {
    margin-bottom: 4rem;
}

.core-team h3,
.departments h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    text-align: center;
}

.member-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-role {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

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

.member-responsibilities {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.member-responsibilities li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.member-responsibilities i {
    margin-right: 0.8rem;
    color: var(--accent-color);
    width: 16px;
}

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

.department-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.department-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.department-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.department-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.department-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-align: center;
}

.department-size {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.department-roles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.department-roles li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.department-roles i {
    margin-right: 0.8rem;
    color: var(--accent-color);
    width: 16px;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .department-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member,
    .department-card {
        padding: 1.2rem;
    }
}

/* Vision & Growth Strategy Styles */
.vision-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-section {
    position: relative;
    padding: 2rem 0;
}

.timeline-section h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

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

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 2rem;
}

.timeline-icon {
    position: absolute;
    right: -1.5rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-icon {
    right: auto;
    left: -1.5rem;
}

.timeline-icon i {
    color: white;
    font-size: 1.2rem;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.milestone-section {
    text-align: center;
}

.milestone-section h3 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.milestone-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.milestone-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.milestone-icon i {
    color: white;
    font-size: 1.5rem;
}

.milestone-card h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.milestone-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.milestone-label {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.focus-areas {
    text-align: center;
}

.focus-areas h3 {
    color: #ffffff;
    margin-bottom: 2rem;
}

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

.focus-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.focus-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.focus-icon i {
    color: white;
    font-size: 1.5rem;
}

.focus-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.focus-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 1.5rem;
    }

    .timeline-item {
        width: 100%;
        padding-left: 4rem;
        padding-right: 0;
        margin-left: 0;
    }

    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 4rem;
    }

    .timeline-icon {
        left: 0;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-icon {
        left: 0;
    }
}

/* Investment Opportunity Styles */
.investment-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.offering-section, .valuation-section, .benefits-section, .exit-section {
    text-align: center;
}

.offering-section h3, .valuation-section h3, .benefits-section h3, .exit-section h3 {
    color: #ffffff;
    margin-bottom: 2rem;
}

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

.offering-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.offering-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.offering-icon i {
    color: white;
    font-size: 1.5rem;
}

.offering-card h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.offering-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.offering-label {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.valuation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.valuation-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.valuation-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.valuation-icon i {
    color: white;
    font-size: 1.5rem;
}

.valuation-card h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.valuation-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 0;
}

.valuation-ranges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.range-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.range-item:hover {
    transform: translateX(10px);
}

.range-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.range-icon i {
    color: white;
    font-size: 1.2rem;
}

.range-content {
    text-align: left;
}

.range-content h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.range-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

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

.benefit-card, .exit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover, .exit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon, .exit-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i, .exit-icon i {
    color: white;
    font-size: 1.5rem;
}

.benefit-card h4, .exit-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefit-card p, .exit-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

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

    .range-item {
        padding: 1rem;
    }
}

/* Call to Action Styles */
.cta-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.investment-highlights {
    text-align: center;
}

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

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.highlight-icon i {
    color: white;
    font-size: 1.5rem;
}

.highlight-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-section {
    text-align: center;
}

.contact-section h3 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-card h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff6b6d;
}

.contact-link i {
    font-size: 1rem;
}

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

.cta-quote {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 768px) {
    .cta-quote {
        font-size: 1.5rem;
    }
}

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

.rationale-block {
    display: flex;
    background: rgba(60, 60, 60, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(100, 100, 100, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rationale-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(70, 70, 70, 0.7);
}

.rationale-icon {
    width: 48px;
    height: 48px;
    background: #ff3b30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.rationale-icon i {
    color: white;
    font-size: 1.25rem;
}

.rationale-content {
    flex: 1;
}

.rationale-content h4 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.rationale-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.structure-summary {
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.case-study-showcase {
    background: rgba(40, 40, 40, 0.6);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-header {
    text-align: center;
    margin-bottom: 2rem;
}

.case-study-header h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.case-study-divider {
    width: 60px;
    height: 3px;
    background: #ff3b30;
    margin: 0 auto;
}

.case-study-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: rgba(50, 50, 50, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.metric-icon {
    width: 40px;
    height: 40px;
    background: #ff3b30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.metric-icon i {
    color: white;
    font-size: 1rem;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.metric-arrow {
    color: #ff3b30;
    font-size: 1.5rem;
}

.case-study-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.service-tag {
    background: rgba(255, 59, 48, 0.15);
    color: #ff3b30;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 59, 48, 0.3);
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: rgba(255, 59, 48, 0.25);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .case-study-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .metric-arrow {
        transform: rotate(90deg);
    }
}

.competitive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.agency-side, .token-side {
    background: rgba(40, 40, 40, 0.6);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.agency-side h3, .token-side h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cross-functional {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 59, 48, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 59, 48, 0.2);
    transition: transform 0.3s ease;
}

.cross-functional:hover {
    transform: translateY(-5px);
}

.cross-functional-icon {
    width: 48px;
    height: 48px;
    background: #ff3b30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cross-functional-icon i {
    color: white;
    font-size: 1.25rem;
}

.cross-functional-text h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.cross-functional-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

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

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(60, 60, 60, 0.6);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(10px);
}

.advantage-item i {
    color: #ff3b30;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.advantage-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.advantage-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.comparison-table {
    background: rgba(60, 60, 60, 0.6);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(255, 59, 48, 0.15);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header div {
    color: #ffffff;
    font-weight: 600;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.table-row div {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.table-row .army i {
    color: #ff3b30;
}

.table-row .competitors i {
    color: rgba(255, 255, 255, 0.3);
}

.differentiators {
    background: rgba(60, 60, 60, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.differentiators h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.differentiators ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.differentiators li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.differentiators li:hover {
    transform: translateX(10px);
}

.differentiators li i {
    color: #ff3b30;
}

.market-trends {
    margin-top: 3rem;
    text-align: center;
}

.market-trends h3 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.trend-item {
    background: rgba(40, 40, 40, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.trend-item i {
    font-size: 2rem;
    color: #ff3b30;
    margin-bottom: 1rem;
}

.trend-item h4 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.trend-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .competitive-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header, .table-row {
        font-size: 0.9rem;
    }
}

.embedded-tweet {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.production-process {
    margin: 3rem 0;
    background: rgba(40, 40, 40, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.production-process h3 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

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

.process-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.step-icon {
    width: 48px;
    height: 48px;
    background: #ff3b30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    color: white;
    font-size: 1.25rem;
}

.step-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.preview-container img.dashboard-preview {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.preview-content img.dashboard-preview {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
} 


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

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

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

/* Army Platform Case Study Specific Styles */
.platform-preview {
    margin: 2rem 0;
    position: relative;
}

.preview-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.feature-tooltip {
    position: absolute;
    background: rgba(50, 50, 50, 0.9);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: pulse 2s infinite;
    z-index: 10;
}

.feature-tooltip i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.feature-tooltip span {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
}

.platform-features {
    margin: 3rem 0;
}

.platform-features h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
}

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

.feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.token-flow {
    margin: 3rem 0;
}

.token-flow h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
}

.flow-step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    width: 180px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    color: white;
    font-size: 1.5rem;
}

.flow-step h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.flow-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.flow-arrow {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 0 0.5rem;
}

@media (max-width: 768px) {
    .flow-diagram {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .feature-tooltip {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        width: 100%;
    }
}

/* Buttons - Apple style */
[data-theme="light"] .cta-button,
[data-theme="light"] button.primary {
    background-color: var(--accent-color-light);
    color: white;
    border-radius: 980px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    text-align: center;
    white-space: nowrap;
    transition: all 0.2s ease;
}

[data-theme="light"] .cta-button:hover,
[data-theme="light"] button.primary:hover {
    background-color: #ff6b6d;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Cards and sections - Apple style */
[data-theme="light"] .section-card,
[data-theme="light"] .case-study-card,
[data-theme="light"] .problem-section,
[data-theme="light"] .solution-section,
[data-theme="light"] .impact-section {
    background-color: white; /* Impostiamo white invece di var(--card-bg) per sicurezza */
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    border-radius: 12px;
    overflow: hidden;
}

[data-theme="light"] .section-card:hover,
[data-theme="light"] .case-study-card:hover,
[data-theme="light"] .problem-section:hover,
[data-theme="light"] .solution-section:hover,
[data-theme="light"] .impact-section:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: var(--card-hover-border);
}

/* Stat items - Apple style */
[data-theme="light"] .stat-item,
[data-theme="light"] .stat-box,
[data-theme="light"] .result-item {
    background-color: white;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-radius: 12px;
}

/* Service and feature icons */
[data-theme="light"] .section-icon i,
[data-theme="light"] .feature-item i,
[data-theme="light"] .service-header i,
[data-theme="light"] .result-item i,
[data-theme="light"] .metric-icon i,
[data-theme="light"] .process-step i,
[data-theme="light"] .point i,
[data-theme="light"] .advantage-item i {
    color: var(--accent-color-light);
}

/* Headers and titles in light theme */
[data-theme="light"] h2,
[data-theme="light"] .window-content h2,
[data-theme="light"] .section-header h2 {
    color: var(--text-primary);
    font-weight: 600;
}

[data-theme="light"] h3,
[data-theme="light"] .window-content h3,
[data-theme="light"] .problem-section h3,
[data-theme="light"] .solution-section h3,
[data-theme="light"] .impact-section h3,
[data-theme="light"] .preview-header h3 {
    color: var(--text-primary);
    font-weight: 500;
}

[data-theme="light"] h4,
[data-theme="light"] .stat-box h4,
[data-theme="light"] .result-item h4,
[data-theme="light"] .feature-item h4,
[data-theme="light"] .service-header h4 {
    color: var(--text-primary);
    font-weight: 500;
}

/* UI highlights for special components */
[data-theme="light"] .timeline-icon,
[data-theme="light"] .entity-icon,
[data-theme="light"] .team-icon,
[data-theme="light"] .metric-icon {
    background: rgba(255, 59, 48, 0.1);
    color: var(--accent-color-light);
}

/* Apple-like tabs and toggles */
[data-theme="light"] .tab-item.active {
    background-color: var(--accent-color-light);
    color: white;
}

[data-theme="light"] .toggle-switch:checked + .toggle-slider {
    background-color: var(--accent-success-light);
}

/* Window treatment */
[data-theme="light"] .app-window {
    background: rgba(250, 250, 250, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .window-header {
    background: rgba(240, 240, 240, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Graph and chart elements */
[data-theme="light"] .chart-container,
[data-theme="light"] .chart-item,
[data-theme="light"] .data-visualization {
    background-color: white;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

[data-theme="light"] .chart-bar,
[data-theme="light"] .chart-line {
    background: var(--gradient-red);
}

[data-theme="light"] .chart-bar.success,
[data-theme="light"] .chart-line.success {
    background: var(--gradient-green);
}

[data-theme="light"] .chart-bar.warning,
[data-theme="light"] .chart-line.warning {
    background: var(--gradient-orange);
}

[data-theme="light"] .chart-bar.danger,
[data-theme="light"] .chart-line.danger {
    background: var(--gradient-red);
}

/* Subtle text and secondary content */
[data-theme="light"] .subtitle,
[data-theme="light"] .text-secondary,
[data-theme="light"] .caption,
[data-theme="light"] .stat-label,
[data-theme="light"] .client-description,
[data-theme="light"] .preview-header p {
    color: #86868b; /* Apple's secondary text color */
    letter-spacing: -0.016em;
}

/* Highlight boxes and callouts */
[data-theme="light"] .highlight-box,
[data-theme="light"] .callout,
[data-theme="light"] .note {
    background-color: rgba(0, 113, 227, 0.08);
    border-left: 3px solid var(--accent-color-light);
    border-radius: 6px;
    padding: 12px 16px;
}

[data-theme="light"] .warning-box {
    background-color: rgba(255, 149, 0, 0.08);
    border-left: 3px solid var(--accent-warning-light);
    border-radius: 6px;
    padding: 12px 16px;
}

/* Table styling */
[data-theme="light"] table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    margin: 20px 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background-color: rgba(245, 245, 247, 0.95);
}

[data-theme="light"] th {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1d1d1f;
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    letter-spacing: -0.016em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #434344;
    background-color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] tr:last-child td {
    border-bottom: none;
}

[data-theme="light"] tr:hover td {
    background-color: rgba(255, 255, 255, 0.95);
}

/* Links and interactive text */
[data-theme="light"] a {
    color: var(--accent-color-light);
    text-decoration: none;
    transition: all 0.2s ease;
}

[data-theme="light"] a:hover {
    color: #0077ed;
    text-decoration: underline;
}

/* Enhanced selects and inputs */
[data-theme="light"] select,
[data-theme="light"] input[type="text"],
[data-theme="light"] input[type="email"],
[data-theme="light"] input[type="password"],
[data-theme="light"] textarea {
    background-color: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

[data-theme="light"] select:focus,
[data-theme="light"] input[type="text"]:focus,
[data-theme="light"] input[type="email"]:focus,
[data-theme="light"] input[type="password"]:focus,
[data-theme="light"] textarea:focus {
    background-color: white;
    border-color: var(--accent-color-light);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
    outline: none;
}

/* Badge and tag styling */
[data-theme="light"] .badge,
[data-theme="light"] .tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

[data-theme="light"] .badge.primary,
[data-theme="light"] .tag.primary {
    background-color: var(--accent-color-light);
    color: white;
}

[data-theme="light"] .badge.success,
[data-theme="light"] .tag.success {
    background-color: var(--accent-success-light);
    color: white;
}

[data-theme="light"] .badge.warning,
[data-theme="light"] .tag.warning {
    background-color: var(--accent-warning-light);
    color: white;
}

[data-theme="light"] .badge.danger,
[data-theme="light"] .tag.danger {
    background-color: var(--accent-danger-light);
    color: white;
}

[data-theme="light"] .client-description,
[data-theme="light"] .crypto-description,
[data-theme="light"] .token-description {
    color: #434344;
    font-weight: 400;
}

[data-theme="light"] .real-time-crypto {
    color: #434344;
    font-weight: 400;
    letter-spacing: -0.016em;
}

[data-theme="light"] .implied-valuation,
[data-theme="light"] .valuation-calculation {
    color: #1d1d1f;
    font-weight: 500;
}

[data-theme="light"] .market-description,
[data-theme="light"] .services-description,
[data-theme="light"] .token-utility-description {
    color: #434344;
    font-weight: 400;
    letter-spacing: -0.016em;
}

/* Financial calculations and data */
[data-theme="light"] .calculation-value,
[data-theme="light"] .financial-metric,
[data-theme="light"] .token-value {
    color: #1d1d1f;
    font-weight: 600;
}

[data-theme="light"] .chart-container {
    background-color: white;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .entity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Styled tables in Apple style */
[data-theme="light"] .case-study-showcase,
[data-theme="light"] .metric-card,
[data-theme="light"] .rationale-block {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

[data-theme="light"] .case-study-showcase:hover,
[data-theme="light"] .metric-card:hover,
[data-theme="light"] .rationale-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .case-study-header h4,
[data-theme="light"] .metric-value,
[data-theme="light"] .rationale-content h4 {
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -0.022em;
}

[data-theme="light"] .metric-label,
[data-theme="light"] .rationale-content p {
    color: var(--text-secondary);
}

[data-theme="light"] .case-study-divider {
    background: var(--accent-color-light);
}

[data-theme="light"] .metric-icon,
[data-theme="light"] .rationale-icon {
    background: var(--gradient-red);
}

[data-theme="light"] .metric-arrow {
    color: var(--accent-color-light);
}

[data-theme="light"] .service-tag {
    background: rgba(0, 113, 227, 0.1);
    color: var(--accent-color-light);
    border-radius: 980px;
    font-weight: 500;
}

/* Buttons in light theme */
[data-theme="light"] .btn-primary {
    background-color: var(--accent-color-light);
    color: white;
    border: none;
    transition: all 0.2s ease;
}

[data-theme="light"] .btn-primary:hover {
    background-color: var(--hover-color-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(255, 59, 48, 0.2);
}

[data-theme="light"] .btn-secondary {
    background-color: var(--bg-tertiary-light);
    color: var(--text-primary-light);
    border: 1px solid var(--border-color-light);
}

[data-theme="light"] .btn-secondary:hover {
    background-color: var(--bg-quaternary-light);
    transform: translateY(-1px);
}

[data-theme="light"] .comparison-table {
    background: rgba(245, 245, 247, 0.95);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(255, 59, 48, 0.1);
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .table-header div {
    color: #1d1d1f;
    font-weight: 600;
    text-align: center;
}

[data-theme="light"] .table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease;
}

[data-theme="light"] .table-row:last-child {
    border-bottom: none;
}

[data-theme="light"] .table-row:hover {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .table-row div {
    color: #434344;
    text-align: center;
}

[data-theme="light"] .table-row .army i {
    color: #ff3b30;
}

[data-theme="light"] .table-row .competitors i {
    color: #86868b;
}

[data-theme="light"] .differentiators {
    background: rgba(245, 245, 247, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .differentiators h4 {
    color: #1d1d1f;
    margin-bottom: 1rem;
    text-align: center;
}

[data-theme="light"] .differentiators li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #434344;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .trend-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

[data-theme="light"] .trend-item h4 {
    color: #1d1d1f;
    margin-bottom: 0.75rem;
}

[data-theme="light"] .trend-item p {
    color: #434344;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

[data-theme="light"] .production-process {
    margin: 3rem 0;
    background: rgba(245, 245, 247, 0.95);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .production-process h3 {
    text-align: center;
    color: #1d1d1f;
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

[data-theme="light"] .process-step {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Fix for light theme text colors in service areas and other components */
[data-theme="light"] .service-area ul li {
    color: #434344;
}

[data-theme="light"] .service-area ul li:before {
    color: #ff3b30;
}

[data-theme="light"] .tier ul li {
    color: #434344;
}

[data-theme="light"] .tier ul li:before {
    color: #ff3b30;
}

[data-theme="light"] .upcoming-features ul li {
    color: #434344;
}

[data-theme="light"] .upcoming-features ul li i {
    color: #ff3b30;
}

[data-theme="light"] .flow-item ul li {
    color: #434344;
}

[data-theme="light"] .window-content li {
    color: #434344;
}

[data-theme="light"] .point span {
    color: #434344;
}

[data-theme="light"] .agency-services,
[data-theme="light"] .token-utility {
    background: rgba(245, 245, 247, 0.95);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .service-area {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .tier {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

[data-theme="light"] .flow-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Make sure service headers use the right color in light theme */
[data-theme="light"] .service-header h4,
[data-theme="light"] .tier-header h4 {
    color: #1d1d1f;
}

/* Fix other elements */
[data-theme="light"] .tier-amount {
    color: #ff3b30;
}

[data-theme="light"] .upcoming-features h4,
[data-theme="light"] .saas-integration h3 {
    color: #1d1d1f;
}

[data-theme="light"] .flow-item h4 {
    color: #1d1d1f;
}

/* Subtitle color fix */
[data-theme="light"] .subtitle {
    color: #86868b;
}

/* Additional text color fixes for other sections in light theme */
[data-theme="light"] .position-summary {
    color: #1d1d1f;
}

[data-theme="light"] .differentiators h4 {
    color: #1d1d1f;
}

[data-theme="light"] .step-content p {
    color: #434344;
}

[data-theme="light"] .member-info h4 {
    color: #1d1d1f;
}

[data-theme="light"] .member-role,
[data-theme="light"] .member-title {
    color: #86868b;
}

[data-theme="light"] .member-responsibilities li {
    color: #434344;
}

[data-theme="light"] .member-responsibilities i {
    color: #ff3b30;
}

[data-theme="light"] .department-roles li {
    color: #434344;
}

[data-theme="light"] .department-roles i {
    color: #ff3b30;
}

[data-theme="light"] .timeline-content p {
    color: #434344;
}

[data-theme="light"] .milestone-label {
    color: #86868b;
}

[data-theme="light"] .focus-card p {
    color: #434344;
}

[data-theme="light"] .range-content p {
    color: #434344;
}

[data-theme="light"] .problem-section,
[data-theme="light"] .solution-section,
[data-theme="light"] .impact-section {
    background: rgba(245, 245, 247, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .dashboard-preview {
    background: rgba(245, 245, 247, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .feature-item p {
    color: #434344;
}

[data-theme="light"] .flow-step p {
    color: #434344;
}

[data-theme="light"] .case-study-content p {
    color: #434344;
}

[data-theme="light"] .case-study-content h3 {
    color: #1d1d1f;
}

[data-theme="light"] .feature-tooltip span {
    color: #434344;
}

[data-theme="light"] .feature-tooltip i {
    color: #ff3b30;
}

/* Section-specific fixes */
[data-theme="light"] .saas-integration {
    background: rgba(245, 245, 247, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .upcoming-features {
    background: rgba(245, 245, 247, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Make sure dark text is used even when not explicitly styled for light theme */
[data-theme="light"] .window-content p {
    color: #434344;
}

[data-theme="light"] .agency-side, 
[data-theme="light"] .token-side {
    background: rgba(245, 245, 247, 0.95);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .agency-side h3, 
[data-theme="light"] .token-side h3 {
    color: #1d1d1f;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

[data-theme="light"] .cross-functional {
    background: rgba(255, 59, 48, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 59, 48, 0.2);
    transition: transform 0.3s ease;
}

[data-theme="light"] .cross-functional-text h4 {
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

[data-theme="light"] .cross-functional-text p {
    color: #434344;
    margin: 0;
    font-size: 0.95rem;
}

[data-theme="light"] .advantage-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

[data-theme="light"] .advantage-content h4 {
    color: #1d1d1f;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

[data-theme="light"] .advantage-content p {
    color: #434344;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

[data-theme="light"] .feature {
    color: #1d1d1f;
}

[data-theme="light"] .market-trends h3 {
    color: #1d1d1f;
    margin-bottom: 2rem;
}

[data-theme="light"] .metric-box {
    background: rgba(245, 245, 247, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .metric-box h3 {
    color: #1d1d1f;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

[data-theme="light"] .metric-box p {
    color: #434344;
    font-size: 0.95rem;
    margin: 0;
}

[data-theme="light"] .metric-icon {
    width: 60px;
    height: 60px;
    background: #ff3b30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

[data-theme="light"] .metric-icon i {
    font-size: 1.5rem;
    color: white;
}

[data-theme="light"] .valuation-calculation {
    background: rgba(245, 245, 247, 0.95);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .valuation-calculation h3 {
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 2rem;
}

[data-theme="light"] .step-number {
    background: #ff3b30;
    color: white;
}

[data-theme="light"] .step-content h4 {
    color: #1d1d1f;
}

[data-theme="light"] .step-content p {
    color: #ff3b30;
}

[data-theme="light"] .details-link {
    background: rgba(245, 245, 247, 0.95);
    color: #1d1d1f;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .details-link:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Additional styles for common box elements in light theme */
[data-theme="light"] .embedded-tweet {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .production-process {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .result-item {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .process-step {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .feature-item {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .contact-card,
[data-theme="light"] .highlight-card,
[data-theme="light"] .milestone-card,
[data-theme="light"] .focus-card,
[data-theme="light"] .offering-card,
[data-theme="light"] .valuation-card,
[data-theme="light"] .benefit-card,
[data-theme="light"] .exit-card,
[data-theme="light"] .department-card,
[data-theme="light"] .timeline-content,
[data-theme="light"] .range-item,
[data-theme="light"] .trend-item {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .feature-tooltip {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Specifici per Case Study di Banana Pro e altri case study */
[data-theme="light"] .case-study-content {
    background-color: white;
    color: #1d1d1f;
}

[data-theme="light"] .case-study-grid {
    gap: 2rem;
}

[data-theme="light"] .section-icon {
    background: rgba(255, 59, 48, 0.1);
    color: var(--accent-color-light);
}

[data-theme="light"] .step-icon {
    background: var(--accent-color-light);
}

[data-theme="light"] .step-icon i {
    color: white;
}

[data-theme="light"] .results-section h3 {
    color: #1d1d1f;
    font-weight: 500;
}

/* Correggiamo stili dello sfondo principale della section-card dove è contenuto il case study */
[data-theme="light"] .section-card {
    background-color: white;
}

/* Stilizziamo gli elementi della timeline */
[data-theme="light"] .timeline::before {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .timeline-item {
    background: transparent;
}

/* Fix per i componenti del dashboard preview */
[data-theme="light"] .preview-content {
    background-color: transparent;
}

[data-theme="light"] .preview-content img.dashboard-preview {
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .preview-features {
    background-color: transparent;
}

/* Fix per l'embedded tweet */
[data-theme="light"] .embedded-tweet {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
}

/* Fix per la production process section */
[data-theme="light"] .production-process {
    background: rgba(250, 250, 250, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin: 3rem 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Results items in section */
[data-theme="light"] .results-grid {
    gap: 2rem;
}

/* Fix per sfondo e stile dei bottoni */
[data-theme="light"] button,
[data-theme="light"] .btn {
    background-color: rgba(255, 255, 255, 0.8);
    color: #1d1d1f;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] button:hover,
[data-theme="light"] .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Light theme styling for key-content paragraph */
[data-theme="light"] .key-content p {
    color: var(--text-secondary);
}

/* Dual entities section styling */
.dual-entities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Light theme styling for dual-entities */
[data-theme="light"] .dual-entities {
    gap: 2rem;
}

.entity-box {
    background: rgba(60, 60, 60, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(100, 100, 100, 0.4);
    transition: all 0.3s ease;
}

/* Light theme styling for entity-box */
[data-theme="light"] .entity-box {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.entity-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Light theme styling for entity-box hover */
[data-theme="light"] .entity-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.entity-box i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Light theme styling for entity-box icon */
[data-theme="light"] .entity-box i {
    color: var(--accent-color-light);
}

.entity-box h3 {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

/* Light theme styling for entity-box heading */
[data-theme="light"] .entity-box h3 {
    color: var(--text-primary);
    font-weight: 600;
}

.entity-box p {
    color: rgba(255, 255, 255, 0.8);
}

/* Light theme styling for entity-box paragraph */
[data-theme="light"] .entity-box p {
    color: var(--text-secondary);
}

.summary-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(100, 100, 100, 0.4);
}

.summary-footer p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

/* Case Study Content and Components */
.case-study-content {
    padding: 2rem;
}

/* Light theme styling for case-study-content */
[data-theme="light"] .case-study-content {
    background: transparent;
}

.case-study-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Light theme styling for client-info */
[data-theme="light"] .client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

/* Light theme styling for client-logo */
[data-theme="light"] .client-logo {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Enhanced embedded tweet */
.embedded-tweet {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Light theme styling for embedded-tweet */
[data-theme="light"] .embedded-tweet {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin: 2rem 0;
}

/* Production Process Section */
.production-process {
    margin: 3rem 0;
    background: rgba(40, 40, 40, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Light theme styling for production-process */
[data-theme="light"] .production-process {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin: 3rem 0;
}

.production-process h3 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

/* Light theme styling for production-process heading */
[data-theme="light"] .production-process h3 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.process-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

/* Light theme styling for process-step */
[data-theme="light"] .process-step {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

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

/* Light theme styling for process-step hover */
[data-theme="light"] .process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,.0, 0, 0.08);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* Light theme styling for step-icon */
[data-theme="light"] .step-icon {
    background: var(--gradient-red);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.step-icon i {
    color: white;
    font-size: 1.25rem;
}

/* Light theme styling for step-icon icon */
[data-theme="light"] .step-icon i {
    color: white;
}

.step-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Light theme styling for step-content heading */
[data-theme="light"] .step-content h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Light theme styling for step-content paragraph */
[data-theme="light"] .step-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Results Section */
.results-section {
    text-align: center;
    margin-top: 3rem;
}

/* Light theme styling for results-section */
[data-theme="light"] .results-section {
    text-align: center;
    margin-top: 3rem;
}

.results-section h3 {
    color: #ffffff;
    margin-bottom: 2rem;
}

/* Light theme styling for results-section heading */
[data-theme="light"] .results-section h3 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

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

/* Light theme styling for results-grid */
[data-theme="light"] .results-grid {
    gap: 2rem;
}

/* Preview Features */
.preview-features {
    margin-top: 2rem;
}

/* Light theme styling for preview-features */
[data-theme="light"] .preview-features {
    background: transparent;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

/* Light theme styling for feature-list */
[data-theme="light"] .feature-list {
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Light theme styling for feature-item */
[data-theme="light"] .feature-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

/* Light theme styling for feature-item hover */
[data-theme="light"] .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Light theme styling for feature-item icon */
[data-theme="light"] .feature-item i {
    color: var(--accent-color-light);
}

.feature-item span {
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

/* Light theme styling for feature-item text */
[data-theme="light"] .feature-item span {
    color: var(--text-secondary);
    text-align: left;
}

/* Dashboard Preview */
.dashboard-preview {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Light theme styling for dashboard-preview */
[data-theme="light"] .dashboard-preview {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 3rem;
}

.preview-content {
    margin-top: 1.5rem;
}

/* Light theme styling for preview-content */
[data-theme="light"] .preview-content {
    background: transparent;
}

.preview-content img.dashboard-preview {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Light theme styling for preview-content image */
[data-theme="light"] .preview-content img.dashboard-preview {
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Intro Screen Animation Styles */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Sfondo più scuro, più simile a un vecchio Mac */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1.5s ease-out;
    pointer-events: none;
}

.intro-screen.fade-out {
    opacity: 0;
}

.intro-content {
    width: 80%;
    max-width: 800px;
    text-align: left; /* Allineamento a sinistra come un vecchio terminale */
    background-color: transparent; /* Rimuovo lo sfondo */
    border-radius: 0; /* No bordi arrotondati */
    padding: 20px;
    box-shadow: none; /* Nessuna ombra */
}

.intro-text {
    color: #33ff00; /* Verde terminale classico */
    font-family: "Monaco", "Andale Mono", "Courier New", monospace; /* Font più stile vecchio Mac */
    font-size: 1.1rem; /* Dimensione ridotta */
    white-space: pre-wrap;
    line-height: 1.5;
    text-shadow: none; /* Nessuna ombra testo */
    letter-spacing: 0.5px;
}

.intro-text .highlight {
    color: #ff3b30; /* Manteniamo il rosso per ARMY */
    font-weight: bold;
    text-shadow: none; /* Rimuovo effetto glow */
}

.cursor {
    display: inline-block;
    width: 8px; /* Cursore più sottile */
    height: 15px; /* Cursore più corto */
    background-color: #33ff00; /* Verde terminale classico */
    margin-left: 2px;
    animation: blink 1s infinite;
    box-shadow: none; /* Nessuna ombra */
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Animazione typing più semplice */
.typing-complete {
    animation: none; /* Rimuovo l'animazione */
}

/* Hide Executive Summary window initially */
#window-executive-summary {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

#window-executive-summary.show-window {
    opacity: 1;
}

.section-footer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.section-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-footer p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.01em;
}

[data-theme="light"] .section-footer {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .section-footer:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .section-footer p {
    color: #1d1d1f;
}

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

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .intro-text p {
    color: var(--text-primary);
    font-weight: 400;
}

.investment-opportunity {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    text-align: center;
}

.investment-opportunity h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.investment-opportunity .highlight-text {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.investment-opportunity p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.investment-opportunity .cta-text {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 2rem;
}

[data-theme="light"] .investment-opportunity {
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.approach-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
}

.approach-section h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.approach-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.approach-list li i {
    color: var(--accent-color);
    margin-right: 0.8rem;
    font-size: 1rem;
}

[data-theme="light"] .approach-section {
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.callout-box .approach-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.callout-box .approach-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.callout-box .approach-list li i {
    color: var(--accent-color);
    margin-right: 0.8rem;
    font-size: 1rem;
}

.callout-box .approach-list li::before {
    display: none;
}

.agency-approach {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 8px;
}

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

.case-study-evolution {
    margin: 1.5rem 0;
}

.case-study-evolution p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.case-study-evolution .evolution-result {
    margin-top: 1.2rem;
    font-weight: 500;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.service-area ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-area ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-area ul li i {
    color: var(--accent-color);
    margin-right: 0.6rem;
    font-size: 0.9rem;
}

[data-theme="light"] .agency-approach {
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.investment-summary {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    text-align: center;
}

.investment-summary .highlight-text {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.investment-summary p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.investment-summary .cta-text {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 2rem;
}

[data-theme="light"] .investment-summary {
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

/* Stili generici per liste con checkmark */
ul li i.fa-check {
    color: var(--accent-color);
    margin-right: 0.6rem;
    font-size: 0.9rem;
}

/* Rimuove i bullet points e aggiunge stile ai checkmark */
.service-area ul li,
.approach-list li, 
.callout-box ul li {
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.service-area ul,
.approach-list,
.callout-box ul {
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Stile per il contenitore dell'icona checkmark */
.service-area ul li i.fa-check,
.approach-list li i.fa-check,
.callout-box ul li i.fa-check {
    color: var(--accent-color) !important;
    margin-right: 0.6rem !important;
    font-size: 0.9rem !important;
}

/* Nasconde i bullet points nativi */
ul.approach-list li::marker,
.callout-box ul li::marker,
.service-area ul li::marker {
    display: none !important;
    content: '' !important;
}

/* Fix per liste in servicesToken.js - solo checkmark, no bullet points */
.platform-features ul li,
.token-tiers ul li,
.upcoming-features ul li,
.ecosystem-flow ul li {
    list-style-type: none !important;
    display: flex !important;
    align-items: center !important;
    margin-bottom: 0.8rem !important;
    padding-left: 0 !important;
}

.platform-features ul,
.token-tiers ul,
.upcoming-features ul,
.ecosystem-flow ul {
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.platform-features ul li::before,
.token-tiers ul li::before,
.upcoming-features ul li::before,
.ecosystem-flow ul li::before {
    display: none !important;
    content: '' !important;
}

.platform-features ul li::marker,
.token-tiers ul li::marker,
.upcoming-features ul li::marker,
.ecosystem-flow ul li::marker {
    display: none !important;
    content: '' !important;
}

/* Brands Section Styling */
.brands-section {
    text-align: center;
    margin: 2rem 0;
}

.brands-section h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    min-height: 120px;
}

.brand-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: var(--accent-color);
}

.brand-link i {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.brand-link:hover i {
    color: #ff6b6d;
}

.brand-link span {
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
}

/* Light theme styles for brands section */
[data-theme="light"] .brands-section h3 {
    color: #333333;
}

[data-theme="light"] .brand-link {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333333;
}

[data-theme="light"] .brand-link:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: var(--accent-color);
}

[data-theme="light"] .brand-link i {
    color: var(--accent-color);
}

[data-theme="light"] .brand-link:hover i {
    color: #ff6b6d;
}

/* Mobile responsive for brands section */
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .brand-link {
        padding: 1rem;
        min-height: 100px;
    }
    
    .brand-link i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .brand-link span {
        font-size: 0.9rem;
    }
}