:root {
    /* Color Palette */
    --primary-gradient: linear-gradient(135deg, #39888D 0%, #2c6c70 100%);
    --secondary-gradient: linear-gradient(135deg, #F1B98C 0%, #F39F7E 100%);
    --accent-gradient: linear-gradient(135deg, #D95C59 0%, #F0A7A5 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    
    /* Glass Morphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-blur: blur(20px);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
}

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

body {
    font-family: var(--font-primary);
    background: #0a0f1c;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
}

/* ANIMATED BACKGROUND */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(45deg, #0a0f1c 0%, #1a2536 50%, #0a0f1c 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(57, 136, 141, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(241, 185, 140, 0.1) 0%, transparent 50%);
}

/* NAV */
.custom-navbar-glass {
    background: rgba(10, 15, 28, 0.8) !important;
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.custom-navbar-glass.scrolled {
    background: rgba(10, 15, 28, 0.95) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-text {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #39888D, #F1B98C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-gradient);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 70%;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-join-glow {
    background: var(--accent-gradient) !important;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    position: relative;
    overflow: hidden;
    border: none !important;
}

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

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

/* HERO SECTION */
.hero-section-blindspot {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

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

.accent-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    margin-bottom: 2rem;
    margin-top: 2rem;
    animation: pulse 2s infinite;
}

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

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.hero-title-gradient {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
}

.title-line.highlight {
    background: #F1B98C;
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.title-line.highlight-animated {
    background: linear-gradient(45deg, #39888D, #F1B98C, #D95C59);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.hero-subtitle-container {
    margin-bottom: 3rem;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.subtitle-highlight {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border-left: 3px solid #F1B98C;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-3d {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(57, 136, 141, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.btn-primary-3d:hover::before {
    left: 100%;
}

.btn-primary-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(57, 136, 141, 0.4);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-blur);
}

.btn-secondary-outline:hover {
    border-color: #F1B98C;
    background: rgba(241, 185, 140, 0.1);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #39888D, #F1B98C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* HERO VISUAL */
.hero-visual-container {
    position: relative;
    padding: 2rem;
}

.data-visualization-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.data-visualization-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #39888D, #F1B98C, transparent);
}

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

.visual-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

.legend {
    display: flex;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-color.mild { background: #39888D; }
.legend-color.severe { background: #F39F7E; }
.legend-color.critical { background: #D95C59; }

.chart-container-3d {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    height: 300px;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.chart-bar-3d {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
}

.chart-bar-3d:hover {
    transform: translateY(-10px);
}

.bar-fill {
    width: 100%;
    border-radius: 10px 10px 0 0;
    transition: height 1s ease;
    position: relative;
    overflow: hidden;
}

.chart-bar-3d[data-category="Moderate"] .bar-fill {
    background: linear-gradient(to top, #39888D, #4aa0a6);
    height: 33.3%;
}

.chart-bar-3d[data-category="Severe"] .bar-fill {
    background: linear-gradient(to top, #F39F7E, #F1B98C);
    height: 23.5%;
}

.chart-bar-3d[data-category="Critical"] .bar-fill {
    background: linear-gradient(to top, #D95C59, #F0A7A5);
    height: 2.5%;
}

.bar-label {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.bar-category {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #F1B98C;
    border: 1px solid var(--glass-border);
    pointer-events: all;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-element:hover {
    transform: scale(1.1) rotate(15deg);
    background: rgba(241, 185, 140, 0.2);
}

.floating-element::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-element:hover::after {
    opacity: 1;
}

.element-1 { top: 10%; left: 10%; animation-delay: 0s; }
.element-2 { top: 60%; right: 15%; animation-delay: 1s; }
.element-3 { bottom: 20%; left: 20%; animation-delay: 2s; }
.element-4 { top: 30%; right: 25%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #F1B98C;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #F1B98C;
    border-right: 2px solid #F1B98C;
    transform: rotate(45deg);
    margin: -5px;
    animation: arrow 2s infinite;
}

.arrow span:nth-child(2) { animation-delay: 0.2s; }
.arrow span:nth-child(3) { animation-delay: 0.4s; }

@keyframes arrow {
    0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

/* CONCEPT SECTION */
.concept-section {
    padding: var(--space-xl) 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    background: var(--accent-gradient);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.badge-text {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.title-part {
    display: block;
}

.gradient-text {
    background: linear-gradient(45deg, #39888D, #F1B98C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

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

.concept-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.concept-card:hover {
    transform: translateY(-10px);
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #39888D, #F1B98C);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(57, 136, 141, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #39888D;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.card-description {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-highlight {
    background: rgba(241, 185, 140, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #F1B98C;
    margin-top: 1.5rem;
}

.card-highlight i {
    color: #F1B98C;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.innovation-badge {
    display: inline-block;
    background: linear-gradient(45deg, #39888D, #4aa0a6);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.impact-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.impact-stat {
    text-align: center;
}

.impact-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #F1B98C, #F39F7E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* METHODOLOGY SECTION */
.methodology-section-glass {
    padding: var(--space-xl) 0;
    background: rgba(10, 15, 28, 0.5);
    position: relative;
}

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

.timeline-path {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #39888D, #F1B98C);
}

.timeline-step {
    position: relative;
    width: 45%;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
}

.timeline-step:nth-child(odd) {
    left: 0;
    padding-right: 5rem;
}

.timeline-step:nth-child(even) {
    left: 55%;
    padding-left: 5rem;
}

.step-number {
    position: absolute;
    top: 0;
    font-size: 5rem;
    font-weight: 900;
    opacity: 0.1;
    background: linear-gradient(45deg, #39888D, #F1B98C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-step:nth-child(odd) .step-number {
    right: -2rem;
}

.timeline-step:nth-child(even) .step-number {
    left: -2rem;
}

.step-content {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-description {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-tech {
    display: flex;
    gap: 0.75rem;
}

.tech-tag {
    background: rgba(57, 136, 141, 0.2);
    color: #39888D;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.tech-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

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

.tech-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.tech-content {
    flex: 1;
}

.tech-content h5 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tech-progress {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 4px;
    position: relative;
    transition: width 1s ease;
}

.progress-text {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

/* INSIGHTS SECTION */
.insights-section {
    padding: var(--space-xl) 0;
    position: relative;
}

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

.insight-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.insight-card:hover {
    transform: translateY(-10px);
}

.insight-card.large {
    grid-column: span 2;
}

.insight-card.medium {
    grid-row: span 2;
}

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

.insight-title {
    font-size: 1.8rem;
    color: #ffffff;
}

.insight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.insight-badge.trend-up {
    background: rgba(57, 136, 141, 0.2);
    color: #39888D;
}

.insight-badge.trend-down {
    background: rgba(217, 92, 89, 0.2);
    color: #D95C59;
}

.comparison-chart {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-type {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.type-label {
    width: 150px;
    font-weight: 600;
}

.type-bar {
    flex: 1;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
}

.company-type:nth-child(1) .bar-fill {
    background: linear-gradient(90deg, #39888D, #4aa0a6);
}

.company-type:nth-child(2) .bar-fill {
    background: linear-gradient(90deg, #F39F7E, #F1B98C);
}

.bar-value {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: white;
}

.sector-radar {
    position: relative;
    height: 200px;
    background: radial-gradient(circle at center, transparent 0%, rgba(57, 136, 141, 0.1) 100%);
    border-radius: 50%;
    margin: 2rem 0;
}

.radar-point {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.radar-point[data-sector="Energy"] { background: #39888D; }
.radar-point[data-sector="Finance"] { background: #4aa0a6; }
.radar-point[data-sector="Food & Beverage"] { background: #F39F7E; }
.radar-point[data-sector="Manufacturing"] { background: #D95C59; }

.radar-point::after {
    content: attr(data-sector) ' - OSS: ' attr(data-oss);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.radar-point:hover::after {
    opacity: 1;
}

.insight-stat {
    text-align: center;
    padding: 2rem;
}

/* .insight-stat.critical {
    background: linear-gradient(135deg, rgba(217, 92, 89, 0.1), transparent);
} */

.stat-value {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #39888D, #F1B98C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.insight-stat.critical .stat-value {
    background: linear-gradient(45deg, #D95C59, #F39F7E);
    -webkit-background-clip: text;
    background-clip: text;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.insight-text {
    margin-top: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.kpi-revelation {
    background: rgba(10, 15, 28, 0.5);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
}

.revelation-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.revelation-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

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

.kpi-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

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

.kpi-item.critical { border-left: 4px solid #D95C59; }
.kpi-item.high { border-left: 4px solid #F39F7E; }
.kpi-item.medium { border-left: 4px solid #F1B98C; }

.kpi-rank {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    min-width: 60px;
}

.kpi-content {
    flex: 1;
}

.kpi-content h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.kpi-content p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.kpi-severity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.severity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.kpi-item.critical .severity-dot { background: #D95C59; }
.kpi-item.high .severity-dot { background: #F39F7E; }
.kpi-item.medium .severity-dot { background: #F1B98C; }

/* IMPACT SECTION */
.impact-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.8), rgba(26, 37, 54, 0.8));
    position: relative;
}

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

.stakeholder-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.stakeholder-card:hover {
    transform: translateY(-10px);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(241, 185, 140, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stakeholder-card:hover .card-glow {
    opacity: 1;
}

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

.stakeholder-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.stakeholder-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.stakeholder-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(57, 136, 141, 0.2);
    color: #39888D;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-body {
    margin-bottom: 2rem;
}

.stakeholder-description {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stakeholder-benefits {
    list-style: none;
    padding: 0;
}

.stakeholder-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.stakeholder-benefits i {
    color: #F1B98C;
}

.card-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-gradient);
    color: white;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA SECTION */
.cta-section-glass {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, rgba(57, 136, 141, 0.1), rgba(241, 185, 140, 0.1));
    position: relative;
}

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

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.btn-cta-primary, .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(57, 136, 141, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(57, 136, 141, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: var(--glass-blur);
}

.btn-cta-secondary:hover {
    border-color: #F1B98C;
    background: rgba(241, 185, 140, 0.1);
    transform: translateY(-3px);
}

/* FOOTER - not used */
.footer-glass {
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.brand-name {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #39888D, #F1B98C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.7;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.social-icon:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
}

.footer-links {
    /* display: grid; */
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: #F1B98C;
    padding-left: 10px;
}

.footer-link.active {
    color: #39888D;
    font-weight: 600;
}

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

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-credits {
    display: flex;
    gap: 2rem;
}

.credit {
    font-size: 0.9rem;
    opacity: 0.7;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(57, 136, 141, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(57, 136, 141, 0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .insights-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .insight-card.large,
    .insight-card.medium {
        grid-column: span 1;
    }

    .kpi-item {
        flex-direction: column;
    }

    .accent-badge{
        margin-top: 2rem;
    }

}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-step {
        width: 100%;
        left: 0 !important;
        padding: 0 0 0 4rem !important;
    }
    
    .timeline-path {
        left: 2rem;
    }
    
    .step-number {
        left: -3rem !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .concept-cards {
        grid-template-columns: 1fr;
    }
    
    .stakeholder-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .title-line {
        font-size: 3.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-credits {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-subtitle{
        font-size: 0.8rem;
    }
}