/* ============================================
   SEMICON BIOSOLUTIONS - MODERN WEBSITE STYLES
   ============================================ */

/* === CSS VARIABLES === */
:root {
    /* Cyberpunk Green Colors */
    --primary-gradient: linear-gradient(135deg, #059669 0%, #047857 100%);
    --secondary-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --accent-gradient: linear-gradient(135deg, #34d399 0%, #06b6d4 100%);
    --neon-green: #10b981;
    --neon-green-bright: #34d399;
    --neon-cyan: #06b6d4;
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --dark-card: #1e293b;
    --gray-100: #f0fdf7;
    --gray-200: #d1fae5;
    --gray-300: #a7f3d0;
    --gray-600: #6ee7b7;
    --gray-800: #065f46;
    --white: #ffffff;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 24px;
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-neon: 0 0 15px rgba(16, 185, 129, 0.2);
    --transition: all 0.2s ease-in-out;
    
    /* Cyberpunk Grid */
    --grid-color: rgba(0, 255, 136, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--white);
    background: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.5;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

h1 { font-size: clamp(1.75rem, 4vw, 3rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* === UTILITY CLASSES === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--dark);
    font-weight: 700;
    box-shadow: var(--shadow-neon);
    border: 2px solid var(--neon-green);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8), 0 0 60px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--neon-green-bright);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-green);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-image {
    height: 89px; /* 268 / 3 ≈ 89 */
    width: auto;
    max-width: 444px; /* 1332 / 3 = 444 */
    object-fit: contain;
    transition: var(--transition);
}

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

.logo-icon {
    font-size: 2rem;
}

.logo-highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    transition: var(--transition);
    font-size: 1.5rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    box-shadow: 0 0 10px var(--neon-green);
    transition: var(--transition);
}

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

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

.nav-cta {
    padding: 10px 24px;
    background: var(--primary-gradient);
    color: var(--dark);
    border-radius: 8px;
    border: 2px solid var(--neon-green);
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
    font-weight: 700;
}

.nav-cta:hover {
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.8);
    transform: scale(1.05);
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #00ff88, transparent);
    top: -200px;
    left: -100px;
    filter: blur(100px);
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #39ff14, transparent);
    bottom: -150px;
    right: -100px;
    animation-delay: -7s;
    filter: blur(100px);
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00e5ff, transparent);
    top: 50%;
    right: 10%;
    animation-delay: -14s;
    filter: blur(100px);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 255, 136, 0.15);
    border: 2px solid var(--neon-green);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 32px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green-bright);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green-bright);
    animation: pulse 2s infinite;
}

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

.hero-title {
    margin-bottom: 32px;
    line-height: 1.1;
    position: relative;
}

.hero-highlight-text {
    position: relative;
    display: inline-block;
    font-weight: 700;
    background: linear-gradient(135deg, #00FF88 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 4px;
}

.hero-highlight-text::before {
    content: '';
    position: absolute;
    inset: -8px -5px;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.12) 0%, transparent 70%);
    border-radius: 8px;
    z-index: -1;
}

@keyframes highlightPulse {
    /* Animation removed for subtle effect */
}

@keyframes glowPulse {
    /* Animation removed for subtle effect */
}

.hero-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: var(--primary-gradient);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.7), 0 0 40px rgba(0, 255, 136, 0.4);
    border-radius: 4px;
    animation: underlinePulse 3s ease-in-out infinite;
}

@keyframes underlinePulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(0.9); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.05); }
}

.title-strong {
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6), 0 0 25px rgba(0, 255, 136, 0.35);
}

.dynamic-gradient {
    background: linear-gradient(135deg, #00ff88 0%, #00e5ff 50%, #39ff14 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
    line-height: 1.6;
}

.hero-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: left;
}

.highlight-item:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.highlight-content {
    flex: 1;
}

.highlight-content strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.highlight-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--neon-green);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--neon-green);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 2px;
    box-shadow: 0 0 5px var(--neon-green);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* === ROADMAP SECTION === */
.roadmap {
    background: var(--dark-soft);
    position: relative;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.roadmap-card {
    background: var(--dark-card);
    border: 2px solid var(--neon-green);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.25);
}

.roadmap-card.current {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.roadmap-stage {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 10px;
}

.roadmap-card h3 {
    margin-bottom: 10px;
}

.roadmap-card ul {
    list-style: none;
}

.roadmap-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.roadmap-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
}

/* === ABOUT SECTION === */
.about {
    background: var(--dark-soft);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.about-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: 20px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
    border-color: var(--neon-green);
}

.about-card:hover::before {
    opacity: 0.2;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.about-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.about-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* === TECHNOLOGY CARTOON DIAGRAM === */
.tech-diagram-container {
    padding: 60px 0;
    margin-bottom: 60px;
    background: rgba(16, 185, 129, 0.03);
    border-radius: 40px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.cartoon-diagram {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
}

.diagram-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.diagram-icon-wrapper {
    width: 120px;
    height: 120px;
    background: var(--dark-card);
    border: 3px solid var(--neon-green);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-neon);
    transition: var(--transition);
}

.diagram-icon-wrapper svg {
    width: 60px;
    height: 60px;
    stroke: var(--neon-green);
    stroke-width: 1.5;
    fill: none;
}

.diagram-step:hover .diagram-icon-wrapper svg {
    stroke: var(--neon-cyan);
}

.diagram-step:hover .diagram-icon-wrapper {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

.diagram-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.diagram-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 180px;
}

.diagram-arrow {
    font-size: 2rem;
    color: var(--neon-green);
    opacity: 0.5;
    margin: 0 20px;
    animation: pulseArrow 2s infinite;
}

@keyframes pulseArrow {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 0.8; transform: translateX(10px); }
}

@media (max-width: 768px) {
    .cartoon-diagram {
        flex-direction: column;
        gap: 40px;
    }
    .diagram-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    @keyframes pulseArrow {
        0%, 100% { opacity: 0.3; transform: translateY(0) rotate(90deg); }
        50% { opacity: 0.8; transform: translateY(10px) rotate(90deg); }
    }
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    box-shadow: var(--shadow-neon);
    border: 3px solid var(--neon-green);
}

.step-content {
    background: var(--dark-card);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
    transition: var(--transition);
    position: relative;
}

.step-content:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    transform: translateX(5px);
}

.step-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--neon-green);
    stroke-width: 1.5;
    fill: none;
}

.step-content:hover .step-icon svg {
    stroke: var(--neon-cyan);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--neon-green);
    stroke-width: 1.5;
    fill: none;
}

.contact-item:hover .contact-icon svg {
    stroke: var(--neon-cyan);
}

/* === IMPACT SECTION === */
.impact {
    background: var(--dark);
    color: var(--white);
    position: relative;
}

.impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.impact .section-title,
.impact .section-subtitle {
    color: var(--white);
}

.impact .section-subtitle {
    opacity: 0.8;
}

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

.impact-card {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.impact-card:hover::after {
    left: 100%;
}

.impact-card:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: var(--neon-green);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
    transform: translateY(-8px);
}

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

.impact-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.circular-progress {
    position: relative;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-fill {
    stroke-dasharray: 534;
    stroke-dashoffset: 27;
    transition: stroke-dashoffset 1s ease;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.8));
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.progress-label {
    font-size: 0.875rem;
    opacity: 0.7;
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.impact-card h3 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.375rem;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
}

.impact-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* === TEAM SECTION === */
.team {
    background: var(--dark-soft);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

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

.team-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-green);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
}

.team-avatar {
    display: flex;
    justify-content: center;
}

.team-photo {
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 0;
    border: 3px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    margin: 0 auto 24px;
}

.team-avatar {
    margin-bottom: 24px;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto;
}

.team-card h3 {
    margin-bottom: 8px;
    font-size: 1.375rem;
}

.team-role {
    color: var(--neon-green);
    font-weight: 600;
    margin-bottom: 16px;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.team-bio {
    font-size: 1rem;
    margin-bottom: 24px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.team-social a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.team-social a:hover {
    transform: scale(1.2);
}

.advisors {
    background: var(--dark-card);
    padding: 48px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.advisors-title {
    margin-bottom: 16px;
    font-size: 1.75rem;
}

.advisors-text {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
}

/* === CONTACT SECTION === */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    width: 100%;
}

.contact-description {
    font-size: 1.125rem;
    margin-bottom: 48px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    width: 100%;
}

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

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--dark-card);
    border: 2px solid var(--neon-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.contact-item h4 {
    margin-bottom: 4px;
    font-size: 1.125rem;
}

.contact-item p,
.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-item a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.contact-form-wrapper {
    background: var(--dark-card);
    padding: 48px;
    border-radius: 24px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    background: rgba(10, 14, 15, 0.5);
    color: var(--white);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    background: rgba(10, 14, 15, 0.7);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* === FOOTER === */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 32px;
    border-top: 2px solid var(--neon-green);
    box-shadow: 0 -5px 30px rgba(0, 255, 136, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    width: 100%;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 48px;
    width: 100%;
}

.footer-links {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end; /* Push to the right */
}

.footer-column {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.footer-column h4 {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.footer-nav-horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.footer-nav-horizontal a {
    white-space: nowrap;
}

.footer-nav-horizontal a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-nav-horizontal a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand, .footer-column {
        align-items: center;
        text-align: center;
    }
    .footer-nav-horizontal {
        justify-content: center;
    }
}

.footer-brand {
    max-width: 400px;
}

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

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand .logo-image {
    height: 75px; /* 25 * 3 */
    max-width: 375px; /* 125 * 3 */
}

.footer-tagline {
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.8), 
                 0 0 20px rgba(16, 185, 129, 0.4),
                 0 0 30px rgba(16, 185, 129, 0.2);
    animation: neonPulse 3s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes neonPulse {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(16, 185, 129, 0.8), 
                     0 0 20px rgba(16, 185, 129, 0.4);
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 0 15px rgba(16, 185, 129, 1), 
                     0 0 30px rgba(16, 185, 129, 0.6),
                     0 0 45px rgba(16, 185, 129, 0.4);
    }
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-gradient);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.8);
    transform: translateY(-4px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.footer-nav-horizontal {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-nav-horizontal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-nav-horizontal a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 2px solid rgba(0, 255, 136, 0.3);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

/* Hero background image */
.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25; /* 25% visible */
    pointer-events: none;
}

/* About card typography adjustments */
.about-card h3 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); }
.about-card p { font-size: 1.1875rem; line-height: 1.85; }

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .impact-card.large {
        grid-column: span 1;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 60px; /* Reduced from original proportional size */
        max-width: 300px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        border-right: 2px solid var(--neon-green);
        flex-direction: column;
        padding: 40px;
        transition: var(--transition);
        box-shadow: 0 4px 50px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-highlight {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .highlight-item {
        padding: 20px;
    }
    
    .highlight-icon {
        font-size: 2rem;
    }
    
    .highlight-content strong {
        font-size: 1rem;
    }
    
    .highlight-content p {
        font-size: 0.875rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    .process-connector {
        margin-left: 28px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
        --container-padding: 16px;
    }
    
    .logo-image {
        height: 50px;
        max-width: 250px;
    }
    
.footer-brand .logo-image {
    height: 38px; /* 150 / 4 ≈ 38 */
    max-width: 188px; /* 750 / 4 ≈ 188 */
}
    
    .logo-image {
        height: 42px;
        max-width: 208px;
    }
    
.footer-brand .logo-image {
    height: 100px; /* 300 / 3 = 100 */
    max-width: 500px; /* 1500 / 3 = 500 */
}
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
