/* ================================================
   PT Montana Wana Teknologi - Main Stylesheet
   Professional Dark Theme with Emerald Accents
   V2.0 - Enhanced Design System
   ================================================ */

/* ================================================
   GRAYSCALE HOVER EFFECT FOR IMAGES
   ================================================
   Default: Black & white (grayscale: 100%)
   Hover: Full color (grayscale: 0%)
   Transition: 0.4s smooth animation
   ================================================ */

/* Main grayscale image effect - applies to all relevant images */
img.grayscale-effect,
.portfolio-img,
.product-img,
.solution-card img,
.team-img,
.livestock-img,
.farming-img,
.gallery-img,
.hero-bg-img,
.section-img,
.gallery-item img {
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
    -moz-filter: grayscale(100%) !important;
    -ms-filter: grayscale(100%) !important;
    -o-filter: grayscale(100%) !important;
    transition: filter 0.4s ease-in-out, -webkit-filter 0.4s ease-in-out !important;
    -webkit-transition: -webkit-filter 0.4s ease-in-out !important;
    -moz-transition: filter 0.4s ease-in-out !important;
    -o-transition: filter 0.4s ease-in-out !important;
}

/* Full color on hover - override body filter for theme toggle */
img.grayscale-effect:hover,
.portfolio-img:hover,
.product-img:hover,
.solution-card img:hover,
.team-img:hover,
.livestock-img:hover,
.farming-img:hover,
.gallery-img:hover,
.hero-bg-img:hover,
.section-img:hover,
.gallery-item:hover img {
    filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
}

/* Alternative class for images that should always be in color */
img.color-image,
img.no-grayscale {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
}

/* For background images in sections */
.grayscale-bg {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: filter 0.4s ease-in-out, background-image 0.4s ease-in-out;
}

.grayscale-bg:hover {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
}

/* Image container for better hover area */
.img-container {
    overflow: hidden;
    border-radius: inherit;
}

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

/* Subtle zoom effect on hover (optional - combine with grayscale) */
.img-zoom-hover {
    transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.img-zoom-hover:hover {
    transform: scale(1.05);
}

/* Smooth image loading placeholder */
img {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

img.lazy-load {
    opacity: 0;
}

img.lazy-load.loaded {
    opacity: 1;
}

/* Dark/Light theme image adjustments */
@media (prefers-color-scheme: dark) {
    img.grayscale-effect,
    .grayscale-bg {
        filter: grayscale(100%) brightness(0.9);
        -webkit-filter: grayscale(100%) brightness(0.9);
    }
    
    img.grayscale-effect:hover,
    .grayscale-bg:hover {
        filter: grayscale(0%) brightness(1);
        -webkit-filter: grayscale(0%) brightness(1);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    img.grayscale-effect,
    .grayscale-bg,
    .img-zoom-hover {
        transition: none;
        -webkit-transition: none;
    }
}

/* ================================================
   GALLERY STYLES FOR LIVESTOCK & FARMING IMAGES
   ================================================ */

/* Livestock Gallery */
.livestock-gallery {
    margin-bottom: 60px;
}

.gallery-grid,
.farming-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

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

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

@media (max-width: 480px) {
    .gallery-grid,
    .farming-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 16px 16px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Farming Gallery Section */
.farming-gallery {
    padding: 80px 0;
    background: var(--navy-light);
}

.farming-gallery-grid .gallery-item {
    aspect-ratio: 1/1;
}

/* Image hover zoom effect */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--emerald-glow), var(--cyan-glow));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0.1;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}

/* CSS Variables - Design System */
:root {
    /* Primary Colors */
    --deep-navy: #0F172A;
    --navy-light: #1E293B;
    --navy-lighter: #334155;
    
    /* Accent Colors */
    --emerald: #10B981;
    --emerald-dark: #059669;
    --emerald-light: #34D399;
    --emerald-glow: rgba(16, 185, 129, 0.15);
    
    /* Secondary Accent */
    --cyan: #06B6D4;
    --cyan-light: #22D3EE;
    --cyan-glow: rgba(6, 182, 212, 0.15);
    
    /* NEW - Extended Accent Palette */
    --purple: #8B5CF6;
    --purple-light: #A78BFA;
    --purple-glow: rgba(139, 92, 246, 0.15);
    --amber: #F59E0B;
    --amber-light: #FBBF24;
    --amber-glow: rgba(245, 158, 11, 0.15);
    --rose: #F43F5E;
    --rose-light: #FB7185;
    --rose-glow: rgba(244, 63, 94, 0.15);
    
    /* Neutral Colors - IMPROVED Contrast */
    --white: #FFFFFF;
    --soft-white: #F8FAFC;
    --gray-50: #F9FAFB;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;  /* Lebih terang untuk readability */
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    
    /* Glass Effect */
    --glass-bg: rgba(15, 23, 42, 0.75);
    --glass-bg-light: rgba(30, 41, 59, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
    --gradient-dark: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    --gradient-subtle: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.05) 50%, transparent 100%);
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    --gradient-amber: linear-gradient(135deg, #F59E0B 0%, #10B981 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.2);
    --shadow-cyan-glow: 0 0 40px rgba(6, 182, 212, 0.2);
    --shadow-purple-glow: 0 0 40px rgba(139, 92, 246, 0.2);
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Typography Scale - IMPROVED */
    --text-xs: 0.75rem;      /* 12px - captions */
    --text-sm: 0.875rem;     /* 14px - small text */
    --text-base: 1rem;       /* 16px - body */
    --text-lg: 1.125rem;     /* 18px - lead text */
    --text-xl: 1.25rem;      /* 20px - card titles */
    --text-2xl: 1.5rem;      /* 24px - section subtitle */
    --text-3xl: 1.875rem;    /* 30px - h3 */
    --text-4xl: 2.25rem;     /* 36px - h2 */
    --text-5xl: 3rem;        /* 48px - h1 small */
    --text-6xl: 3.75rem;     /* 60px - hero title min */
    --text-7xl: 4.5rem;      /* 72px - hero title max */
    
    /* Line Heights */
    --leading-tight: 1.2;
    --leading-snug: 1.375;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;
    
    /* Spacing - NEW Consistent Scale */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */
    
    /* Legacy spacing aliases */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--deep-navy);
    color: var(--gray-300);  /* Improved contrast */
    line-height: var(--leading-normal);
    overflow-x: hidden;
    font-size: var(--text-base);
}

/* Typography Hierarchy - IMPROVED */
h1, h2, h3, h4, h5, h6 {
    color: var(--soft-white);
    line-height: var(--leading-tight);
    font-weight: 700;
}

h1 {
    font-size: var(--text-7xl);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--text-4xl);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

p {
    margin-bottom: var(--space-4);
    color: var(--gray-300);
}

p:last-child {
    margin-bottom: 0;
}

/* Lead text */
.lead {
    font-size: var(--text-lg);
    color: var(--gray-200);
    line-height: var(--leading-relaxed);
}

/* Caption text */
.caption {
    font-size: var(--text-sm);
    color: var(--gray-400);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Mono text for data */
.mono {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
}

/* Canvas Background */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Neural Network Canvas */
#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 1001;
    transition: width 0.1s linear;
}

/* ================================================
   NAVIGATION - Minimalist & Elegant
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-8);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    max-width: 1400px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 16px 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
}

.nav-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: var(--space-1);
    list-style: none;
    align-items: center;
}

.nav-links a {
    padding: var(--space-2) var(--space-4);
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(16, 185, 129, 0.15);
}

/* Navigation Dropdown */
.nav-links li {
    position: relative;
}

.nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: var(--navy-light);
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    border: 1px solid var(--glass-border);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--gray-300) !important;
    font-size: 0.85rem;
    border-radius: 0;
}

.dropdown-menu li a:hover {
    background: var(--emerald) !important;
    color: var(--deep-navy) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-300);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-links a {
    padding: var(--space-2) var(--space-3);
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--emerald);
    transition: width var(--transition-base);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(16, 185, 129, 0.1);
}

.nav-links a:hover::after {
    width: 60%;
}

/* Navigation Dropdown */
.nav-links li {
    position: relative;
}

.nav-dropdown > a::after {
    content: '' !important;
    display: inline-block !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
    border-top: 5px solid currentColor !important;
    margin-left: 6px !important;
    vertical-align: middle;
}

.nav-dropdown > a::after {
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--navy-light);
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin-top: 8px;
    border: 1px solid var(--glass-border);
}

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

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--gray-300) !important;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    border-radius: 0;
}

.dropdown-menu li a:hover {
    background: var(--emerald) !important;
    color: var(--deep-navy) !important;
    border-radius: 0;
}

.dropdown-menu li a::after {
    display: none !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding-left: var(--space-5);
    border-left: 1px solid var(--glass-border);
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--soft-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.theme-toggle:hover {
    background: var(--emerald);
    border-color: var(--emerald);
    color: var(--deep-navy);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--soft-white);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--soft-white);
    transition: all var(--transition-base);
}

/* ================================================
   HERO SECTION - Improved Layout
   ================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-24) var(--space-6) var(--space-16);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-6);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--emerald-light);
    margin-bottom: var(--space-8);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    font-weight: 500;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    letter-spacing: -0.03em;
}

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

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--gray-300);
    max-width: 650px;
    margin: 0 auto var(--space-12);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    line-height: var(--leading-relaxed);
}

.typing-effect {
    display: inline;
    color: var(--cyan-light);
    border-right: 2px solid var(--cyan-light);
    animation: blink 0.7s infinite;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* 3D Floating Elements - Simplified */
.hero-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: var(--radius-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: var(--space-6);
    animation: float 6s ease-in-out infinite;
    max-width: 200px;
}

.floating-element:nth-child(1) {
    top: 22%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 55%;
    right: 5%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 18%;
    left: 12%;
    animation-delay: 4s;
}

.floating-element .icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    font-size: 1.5rem;
}

.floating-element h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
    color: var(--white);
    font-weight: 600;
}

.floating-element p {
    font-size: var(--text-sm);
    color: var(--gray-400);
    margin: 0;
}

/* ================================================
   VISUAL HIERARCHY ELEMENTS
   ================================================ */

/* Large Stats Numbers */
.stat-number {
    font-size: var(--text-6xl);
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Section Number Marker */
.section-number {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--emerald);
    font-weight: 500;
    margin-bottom: var(--space-2);
    display: block;
}

/* Enhanced Tags */
.tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag-emerald {
    background: var(--emerald-glow);
    color: var(--emerald-light);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.tag-cyan {
    background: var(--cyan-glow);
    color: var(--cyan-light);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.tag-purple {
    background: var(--purple-glow);
    color: var(--purple-light);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.tag-amber {
    background: var(--amber-glow);
    color: var(--amber-light);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Enhanced Dividers */
.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: var(--space-8) 0;
}

.divider-short {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

/* Card Glow Effects */
.card-glow {
    position: relative;
}

.card-glow::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
    filter: blur(8px);
}

.card-glow:hover::before {
    opacity: 0.4;
}

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

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

/* Background Patterns */
.bg-dots {
    background-image: radial-gradient(circle, var(--glass-border) 1px, transparent 1px);
    background-size: 24px 24px;
}

.bg-grid {
    background-image: 
        linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Skew Background */
.skew-bg {
    position: relative;
}

.skew-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-subtle);
    transform: skewY(-3deg);
    z-index: -1;
}

/* ================================================
   BUTTONS - Enhanced with Micro-interactions
   ================================================ */
.btn {
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--deep-navy);
    box-shadow: var(--shadow-glow);
}

.btn-primary::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-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.4);
}

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

.btn-secondary {
    background: transparent;
    color: var(--soft-white);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--glass-bg-light);
}

.btn-outline {
    background: transparent;
    color: var(--gray-300);
    border: 1px solid var(--gray-600);
}

.btn-outline:hover {
    border-color: var(--emerald);
    color: var(--emerald);
    background: rgba(16, 185, 129, 0.1);
}

.btn-sm {
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-sm);
}

/* Animated border for special buttons */
.btn-animated {
    position: relative;
}

.btn-animated::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-animated:hover::after {
    opacity: 1;
}

/* ================================================
   SECTIONS
   ================================================ */
section {
    padding: var(--space-20) var(--space-6);
    position: relative;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-lg {
    max-width: 1400px;
}

.container-sm {
    max-width: 800px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.section-tag {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--emerald-glow);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--emerald-light);
    margin-bottom: var(--space-4);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--white);
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--gray-400);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Divider */
.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-6);
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
    background: var(--gradient-subtle);
}

/* Profile Card */
.profile-card {
    max-width: 900px;
    margin: 0 auto 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.profile-card h3 {
    color: var(--emerald);
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.profile-card .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.profile-card .info-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    font-size: 0.95rem;
}

.profile-card .info-item strong {
    color: var(--gray-500);
    font-weight: 500;
}

.profile-card .kbli-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--glass-border);
}

/* Profile Hero Section */
.profile-hero {
    background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-800) 50%, var(--teal-900) 100%);
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.profile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.profile-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.profile-image {
    flex-shrink: 0;
    position: relative;
}

.profile-image img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.profile-badge {
    position: absolute;
    bottom: 10px;
    right: -10px;
    background: linear-gradient(135deg, var(--emerald-500), var(--teal-500));
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

.profile-info {
    color: white;
}

.profile-info h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.profile-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.profile-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.badge-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.profile-social {
    display: flex;
    gap: 15px;
}

.profile-social a {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.profile-social a:hover {
    background: white;
    color: var(--emerald-700);
    transform: translateY(-3px);
}

/* About Profile Section */
.about-profile {
    background: white;
    padding: 80px 20px;
}

.about-profile h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--emerald-800);
    margin-bottom: 40px;
    position: relative;
}

.about-profile h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-500), var(--teal-500));
    margin: 15px auto 0;
    border-radius: 2px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.about-content strong {
    color: var(--emerald-700);
}

/* Education Section */
.education-section {
    background: var(--gray-50);
    padding: 80px 20px;
}

.education-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--emerald-800);
    margin-bottom: 50px;
    position: relative;
}

.education-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-500), var(--teal-500));
    margin: 15px auto 0;
    border-radius: 2px;
}

.education-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.education-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.education-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emerald-500), var(--teal-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.education-content h3 {
    font-size: 1.2rem;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.education-degree {
    color: var(--emerald-600);
    font-weight: 600;
    margin-bottom: 3px;
}

.education-year {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Responsive Profile */
@media (max-width: 900px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .profile-image img {
        width: 220px;
        height: 220px;
    }
    
    .profile-info h1 {
        font-size: 2.2rem;
    }
    
    .profile-badges {
        justify-content: center;
    }
    
    .profile-social {
        justify-content: center;
    }
    
    .profile-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -15px;
    }
}

@media (max-width: 600px) {
    .profile-hero {
        padding: 100px 15px 60px;
    }
    
    .profile-info h1 {
        font-size: 1.8rem;
    }
    
    .profile-title {
        font-size: 1.1rem;
    }
    
    .education-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Timeline */
.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald), var(--cyan));
    transform: translateY(-50%);
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.timeline-item {
    position: relative;
    text-align: center;
    flex: 1;
    cursor: pointer;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--emerald);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.5);
    background: var(--cyan);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--emerald);
}

.timeline-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: 20px;
    transition: all var(--transition-base);
    opacity: 0.85;
}

.timeline-item:hover .timeline-content {
    opacity: 1;
    border-color: var(--emerald);
    transform: translateY(-5px);
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    max-width: 1200px;
    margin: var(--space-16) auto 0;
}

.value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-spring);
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--emerald-glow), var(--cyan-glow));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: 2rem;
    position: relative;
}

.value-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    opacity: 0.3;
    z-index: -1;
    filter: blur(10px);
}

.value-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
    color: var(--white);
    font-weight: 600;
}

.value-card p {
    color: var(--gray-400);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

/* ================================================
   ABOUT THE FOUNDER SECTION
   ================================================ */
.founder-section {
    padding: 100px 5% 80px;
    background: var(--gradient-subtle);
}

.founder-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.founder-profile {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}

.founder-image {
    flex-shrink: 0;
}

.founder-image img,
.founder-image svg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.founder-info h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--emerald);
    margin-bottom: 8px;
    font-weight: 500;
}

.founder-education {
    font-size: 0.95rem;
    color: var(--gray-400);
}

.founder-bio {
    margin-bottom: 30px;
}

.founder-bio p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

.founder-bio strong {
    color: var(--white);
}

.founder-expertise h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-tags .solution-tag {
    background: var(--emerald-glow);
    color: var(--emerald);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

@media (max-width: 768px) {
    .founder-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-card {
        padding: 25px;
    }
    
    .founder-info h3 {
        font-size: 1.5rem;
    }
}

/* ================================================
   SOLUTIONS SECTION
   ================================================ */
.solutions {
    background: var(--gradient-dark);
}

.solutions-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--gray-300);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: inherit;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--emerald);
    border-color: var(--emerald);
    color: var(--deep-navy);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-spring);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.solution-card:hover {
    transform: translateY(-12px);
    border-color: var(--emerald);
    box-shadow: var(--shadow-glow);
}

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

.solution-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    font-size: 1.75rem;
    position: relative;
}

.solution-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    opacity: 0.3;
    z-index: -1;
    filter: blur(12px);
}

.solution-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
    color: var(--white);
    font-weight: 600;
}

.solution-card p {
    color: var(--gray-400);
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
    line-height: var(--leading-relaxed);
}

.solution-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.solution-tag {
    padding: 6px 14px;
    background: var(--cyan-glow);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--cyan-light);
}

/* ================================================
   LIVESTOCK SECTION
   ================================================ */
.livestock {
    background: var(--gradient-dark);
}

.livestock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.livestock-feature {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.livestock-feature h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.livestock-feature ul {
    color: var(--gray-400);
    font-size: 0.9rem;
    padding-left: 20px;
    line-height: 1.8;
}

/* Feature Grid within cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.feature-item {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.feature-item .icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.feature-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--white);
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ================================================
   EDUCATION SECTION
   ================================================ */
.education {
    background: linear-gradient(180deg, var(--deep-navy) 0%, rgba(16, 185, 129, 0.08) 100%);
}

/* ================================================
   ENVIRONMENT SECTION
   ================================================ */
.environment {
    background: var(--deep-navy);
}

/* Tech Showcase */
.tech-showcase {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.tech-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-border);
}

.tech-dots {
    display: flex;
    gap: 8px;
}

.tech-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.tech-dots span:nth-child(1) { background: #FF5F56; }
.tech-dots span:nth-child(2) { background: #FFBD2E; }
.tech-dots span:nth-child(3) { background: #27CA40; }

.tech-title-bar {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--gray-400);
}

.tech-content {
    padding: 40px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.dashboard-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
}

.dashboard-card .metric {
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 4px;
}

.dashboard-card .label {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.dashboard-card.warning .metric { color: #FBBF24; }
.dashboard-card.info .metric { color: var(--cyan); }

.tech-chart {
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 100px;
    background: linear-gradient(90deg, transparent, var(--emerald), var(--cyan));
    opacity: 0.3;
    clip-path: polygon(0 100%, 10% 60%, 20% 80%, 30% 40%, 40% 70%, 50% 30%, 60% 50%, 70% 20%, 80% 40%, 90% 10%, 100% 30%, 100% 100%);
    animation: chartMove 3s ease-in-out infinite;
}

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

/* ================================================
   TECHNOLOGY SECTION
   ================================================ */
.technology {
    background: linear-gradient(180deg, var(--deep-navy) 0%, rgba(16, 185, 129, 0.08) 100%);
}

/* ================================================
   PORTFOLIO SECTION
   ================================================ */
.portfolio {
    background: var(--deep-navy);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-cyan-glow);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, var(--navy-light), var(--deep-navy));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.portfolio-image .icon {
    font-size: 4rem;
    position: relative;
    z-index: 1;
}

.portfolio-content {
    padding: var(--space-xl);
}

.portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.portfolio-content p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
}

.portfolio-metrics {
    display: flex;
    gap: var(--space-xl);
}

.portfolio-metric {
    text-align: center;
}

.portfolio-metric .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald);
}

.portfolio-metric .label {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ================================================
   SUSTAINABILITY SECTION
   ================================================ */
.sustainability {
    background: linear-gradient(180deg, var(--deep-navy) 0%, rgba(16, 185, 129, 0.08) 50%, var(--deep-navy) 100%);
}

.esg-dashboard {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.esg-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.esg-card:hover {
    transform: scale(1.03);
    border-color: var(--emerald);
}

.esg-score {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.esg-card:nth-child(1) .esg-score { color: var(--emerald); }
.esg-card:nth-child(2) .esg-score { color: var(--cyan); }
.esg-card:nth-child(3) .esg-score { color: #FBBF24; }

.esg-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.esg-desc {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* Circular Progress */
.circular-progress {
    width: 120px;
    height: 120px;
    margin: 20px auto;
    position: relative;
}

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

.circular-progress circle {
    fill: none;
    stroke-width: 8;
}

.circular-progress .bg {
    stroke: rgba(255, 255, 255, 0.1);
}

.circular-progress .progress {
    stroke: var(--emerald);
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1.5s ease;
}

.circular-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

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

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact {
    background: var(--deep-navy);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.contact-info > p {
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.contact-item:hover {
    border-color: var(--emerald);
    transform: translateX(10px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-item .label {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.contact-item .value {
    font-weight: 600;
    color: var(--white);
}

/* Contact Form */
.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--gray-300);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--soft-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

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

.form-group select {
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

/* ================================================
   AI CHAT
   ================================================ */
.ai-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-glow);
    z-index: 999;
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
}

.ai-chat-btn:hover {
    transform: scale(1.1);
}

.ai-chat-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-height: 500px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    z-index: 998;
    display: none;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ai-chat-modal.active {
    display: block;
    animation: slideUp 0.3s ease;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-border);
}

.chat-header h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--white);
}

.chat-header .badge {
    padding: 4px 10px;
    background: var(--emerald-glow);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    color: var(--emerald);
}

.chat-close {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--soft-white);
    cursor: pointer;
    transition: all var(--transition-base);
}

.chat-close:hover {
    background: #FF5F56;
    border-color: #FF5F56;
}

.chat-messages {
    height: 320px;
    padding: var(--space-lg);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    line-height: 1.5;
}

.message.bot {
    background: var(--emerald-glow);
    border: 1px solid rgba(16, 185, 129, 0.3);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.message.user {
    background: var(--gradient-primary);
    color: var(--deep-navy);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-input {
    display: flex;
    gap: 10px;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--glass-border);
}

.chat-input input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--soft-white);
    font-size: 0.9rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--emerald);
}

.chat-input button {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--deep-navy);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-input button:hover {
    transform: scale(1.1);
}

/* ================================================
   FOOTER
   ================================================ */
footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--glass-border);
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

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

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--emerald);
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-white);
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--emerald);
    border-color: var(--emerald);
    color: var(--deep-navy);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.footer-column ul a:hover {
    color: var(--emerald);
}

/* ================================================
   RESPONSIVE STYLES
   ================================================ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --text-6xl: 2.5rem;
        --text-5xl: 2rem;
        --text-4xl: 1.875rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
    
    .floating-element {
        display: none;
    }
    
    .values-grid,
    .solutions-grid {
        gap: var(--space-6);
    }
    
    .navbar {
        max-width: 98vw;
        padding: var(--space-2) var(--space-4);
    }
    
    .nav-links {
        max-width: 500px;
    }
    
    .nav-links a {
        padding: var(--space-1) var(--space-2);
        font-size: 0.75rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --text-7xl: 2.5rem;
        --text-6xl: 2rem;
        --text-5xl: 1.75rem;
        --text-4xl: 1.5rem;
    }
    
    section {
        padding: var(--space-16) var(--space-4);
    }
    
    .hero {
        padding: var(--space-20) var(--space-4) var(--space-12);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Hide nav links on mobile */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .navbar {
        padding: var(--space-2) var(--space-4);
        gap: var(--space-3);
    }
    
    .nav-logo {
        padding-right: var(--space-3);
        font-size: 0.85rem;
    }
    
    .nav-logo svg {
        width: 28px;
        height: 28px;
    }
    
    .values-grid,
    .solutions-grid,
    .livestock-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-card .info-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-items {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .timeline-line {
        width: 2px;
        height: 100%;
        left: 20px;
        top: 0;
        transform: none;
    }
    
    .timeline-item {
        text-align: left;
        padding-left: 50px;
    }
    
    .timeline-dot {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .section-header {
        margin-bottom: var(--space-10);
    }
    
    .solutions-filter {
        gap: var(--space-2);
    }
    
    .filter-btn {
        padding: var(--space-2) var(--space-4);
        font-size: var(--text-sm);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .stat-number {
        font-size: var(--text-5xl);
    }
    
    .value-card,
    .solution-card,
    .livestock-feature {
        padding: var(--space-6);
    }
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-400);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gray-400);
    text-decoration: none;
    margin-left: var(--space-lg);
    transition: all var(--transition-base);
}

.footer-bottom a:hover {
    color: var(--emerald);
}

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

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

@keyframes blink {
    0%, 50% { border-color: var(--cyan); }
    51%, 100% { border-color: transparent; }
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .esg-dashboard {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .timeline-items {
        flex-direction: column;
        gap: 30px;
    }
    
    .timeline-line {
        width: 2px;
        height: 100%;
        left: 20px;
        top: 0;
        transform: none;
    }
    
    .timeline-item {
        text-align: left;
        padding-left: 50px;
    }
    
    .timeline-dot {
        position: absolute;
        left: 0;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 90%;
        padding: 12px 16px;
        border-radius: 0 0 12px 12px;
    }
    
    .nav-logo span {
        display: none;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--space-md);
        border-radius: 0 0 12px 12px;
        margin-top: 0;
        border: 1px solid var(--glass-border);
        border-top: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 12px 16px;
        width: 100%;
        text-align: left;
        border-radius: 8px;
    }
    
    .nav-dropdown > a::after {
        display: inline-block;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding-left: 16px;
        margin-top: 0;
        border: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px var(--space-4) 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .floating-element {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .ai-chat-modal {
        width: calc(100% - 40px);
        right: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .esg-dashboard {
        grid-template-columns: 1fr;
    }
    
    .profile-card {
        padding: var(--space-lg);
    }
    
    .nav-dropdown > a::after {
        display: inline-block;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 0;
        border: none;
    }
    
    .dropdown-menu li a {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .tech-content {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 16px 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 16px;
    }
    
    .solutions-grid,
    .portfolio-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }

.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.roadmap-container {
    position: relative;
    margin-top: 60px;
    padding-left: 40px;
}

.roadmap-container::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #10B981, #0F172A);
}

.roadmap-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.roadmap-marker {
    position: absolute;
    left: -5px;
    width: 36px;
    height: 36px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

.roadmap-content {
    background: #111827;
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 4px solid #10B981;
    width: 100%;
}

.roadmap-content h4 {
    margin-bottom: 6px;
}

.roadmap-period {
    font-size: 0.8rem;
    color: #10B981;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.roadmap-content ul {
    padding-left: 18px;
    font-size: 0.9rem;
    color: #9CA3AF;
    line-height: 1.6;
}

/* Responsive Design */
