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

:root {
    /* Primary Palette - Premium Tech */
    --primary: #00e5bf;           /* Bright Teal */
    --primary-dark: #00b894;
    --primary-light: #55efc4;
    --secondary: #667eea;         /* Soft Indigo */
    --accent: #ffd93d;            /* Gold */
    
    /* Deep Blue Backgrounds */
    --bg-dark: #030712;           /* Deep Space Blue */
    --bg-darker: #020617;         /* Darker variant */
    --bg-card: #0c1222;           /* Card Background */
    --bg-card-hover: #111b2e;
    --bg-section-alt: #060d1a;
    --bg-elevated: #0f1729;
    
    /* Premium Text Colors */
    --text-primary: #f1f5f9;      /* Slate 100 */
    --text-secondary: #94a3b8;    /* Slate 400 */
    --text-muted: #64748b;        /* Slate 500 */
    --text-highlight: #38bdf8;    /* Sky 400 */
    --text-glow: #00e5bf;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00e5bf 0%, #667eea 100%);
    --gradient-gold: linear-gradient(135deg, #ffd93d 0%, #ff9f43 100%);
    --gradient-text: linear-gradient(135deg, #f1f5f9 0%, #94a3b8 100%);
    --gradient-hero: linear-gradient(180deg, rgba(3, 7, 18, 0.6) 0%, rgba(3, 7, 18, 0.95) 100%);
    --gradient-card: linear-gradient(145deg, #0f1729, #0c1222);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(0, 229, 191, 0.08) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(102, 126, 234, 0.08) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(0, 229, 191, 0.05) 0px, transparent 50%);
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(0, 229, 191, 0.12);
    --shadow-glow-strong: 0 0 60px rgba(0, 229, 191, 0.2);
    --border-subtle: 1px solid rgba(255, 255, 255, 0.05);
    --border-glow: 1px solid rgba(0, 229, 191, 0.25);
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;
}

/* ==================== LIGHT THEME VARIABLES ==================== */
[data-theme="light"] {
    /* Primary Palette - Adjusted for Light Mode */
    --primary: #00a085;           /* Darker Teal for better contrast */
    --primary-dark: #007a65;
    --primary-light: #00c9a7;
    --secondary: #5a67d8;         /* Darker Indigo */
    --accent: #f59e0b;            /* Amber */
    
    /* Light Backgrounds */
    --bg-dark: #ffffff;           /* Pure White */
    --bg-darker: #f8fafc;         /* Slate 50 */
    --bg-card: #ffffff;           /* White Cards */
    --bg-card-hover: #f1f5f9;    /* Slate 100 */
    --bg-section-alt: #f8fafc;    /* Light Gray */
    --bg-elevated: #ffffff;       /* White */
    
    /* Dark Text Colors for Light Mode */
    --text-primary: #0f172a;      /* Slate 900 */
    --text-secondary: #475569;    /* Slate 600 */
    --text-muted: #64748b;        /* Slate 500 */
    --text-highlight: #0284c7;    /* Sky 600 */
    --text-glow: #00a085;
    
    /* Light Mode Gradients */
    --gradient-primary: linear-gradient(135deg, #00a085 0%, #5a67d8 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-text: linear-gradient(135deg, #0f172a 0%, #475569 100%);
    --gradient-hero: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 250, 252, 0.95) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff, #f8fafc);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(0, 160, 133, 0.05) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(90, 103, 216, 0.05) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(0, 160, 133, 0.03) 0px, transparent 50%);
    
    /* Light Mode Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(0, 160, 133, 0.15);
    --shadow-glow-strong: 0 0 60px rgba(0, 160, 133, 0.25);
    --border-subtle: 1px solid rgba(0, 0, 0, 0.08);
    --border-glow: 1px solid rgba(0, 160, 133, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== LANGUAGE & THEME SWITCHER ==================== */
.switcher-container {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.switcher-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    padding: 0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.switcher-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 229, 191, 0.3);
}

.theme-btn {
    font-size: 14px;
}

.lang-btn {
    font-size: 10px;
    letter-spacing: 0.5px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: var(--border-subtle);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(0, 240, 192, 0.3);
}

.logo-subtitle {
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

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

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

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

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

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-bg.jpg') no-repeat center center;
    background-size: cover;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(3, 7, 18, 0.65) 0%,
        rgba(3, 7, 18, 0.5) 40%,
        rgba(3, 7, 18, 0.85) 80%,
        var(--bg-dark) 100%
    );
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.15), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.15), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.1), transparent);
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 229, 191, 0.1);
    border: 1px solid rgba(0, 229, 191, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: 2px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0.5; }
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 229, 191, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 229, 191, 0.5);
    background: #ffffff;
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 212, 170, 0.1);
}

/* ==================== VALUE PROPOSITION ==================== */
.value-proposition {
    padding: 70px 0;
    background: var(--bg-section-alt);
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
    position: relative;
}

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

.value-text {
    font-size: 1.35rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.value-text::before {
    content: '"';
    color: var(--primary);
    font-size: 2rem;
    vertical-align: middle;
    margin-right: 8px;
    opacity: 0.6;
}

.value-text::after {
    content: '"';
    color: var(--primary);
    font-size: 2rem;
    vertical-align: middle;
    margin-left: 8px;
    opacity: 0.6;
}

/* ==================== SECTION STYLES ==================== */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #d4d4d8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-highlight);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 229, 191, 0.1);
    border: 1px solid rgba(0, 229, 191, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 229, 191, 0.3);
}

/* ==================== APPROACH SNAPSHOT ==================== */
.approach-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
    pointer-events: none;
}

.section-bg-pattern.alt {
    background: 
        radial-gradient(at 80% 20%, rgba(0, 229, 191, 0.06) 0px, transparent 50%),
        radial-gradient(at 20% 80%, rgba(102, 126, 234, 0.06) 0px, transparent 50%);
}

.approach-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.approach-step {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 20px;
    padding: 28px 16px;
    text-align: center;
    min-width: 150px;
    max-width: 180px;
    transition: all 0.4s ease;
    word-break: break-word;
}

.approach-step:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.approach-step.highlight {
    background: linear-gradient(145deg, rgba(0, 229, 191, 0.1), rgba(102, 126, 234, 0.06));
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(0, 229, 191, 0.15);
}

.step-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 1.8rem;
}

.approach-step h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
}

.step-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.approach-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    position: relative;
}

.approach-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--primary);
}

/* ==================== HIGHLIGHTS OF SOLUTIONS ==================== */
.highlights-section {
    background: var(--bg-section-alt);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.highlight-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    display: block;
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.highlight-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
}

.highlight-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
}

.highlight-content {
    padding: 28px;
}

.highlight-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.highlight-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.highlight-link {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-link {
    letter-spacing: 1px;
}

/* ==================== QUICK STATS ==================== */
.stats-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #030712 0%, #0c1222 50%, #030712 100%);
    z-index: 0;
}

.stats-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.section-header.light .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: var(--border-subtle);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 191, 0.3);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-number sup {
    font-size: 2rem;
    vertical-align: super;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.trust-badges {
    text-align: center;
}

.stats-note {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-subtle);
    border-radius: 30px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background: var(--bg-dark);
}

.about-hero {
    position: relative;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 50px;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 229, 191, 0.15);
    border: 1px solid rgba(0, 229, 191, 0.3);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-block {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.about-block:hover {
    border-color: rgba(0, 212, 170, 0.3);
}

.about-block-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.block-icon {
    font-size: 1.8rem;
}

.about-block-header h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
}

.about-list {
    list-style: none;
}

.about-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
}

.about-list li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.mission-block {
    grid-column: span 2;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-item h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.mv-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.values-block {
    grid-column: span 2;
}

.core-values-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.value-tag {
    background: rgba(0, 240, 192, 0.08);
    border: 1px solid rgba(0, 240, 192, 0.25);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 240, 192, 0.3);
}

.value-tag:hover {
    background: var(--primary);
    color: #000000;
    box-shadow: 0 0 25px rgba(0, 240, 192, 0.4);
}

/* ==================== TECHNOLOGY SECTION ==================== */
.technology-section {
    background: var(--bg-section-alt);
    position: relative;
    overflow: hidden;
}

.tech-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.tech-intro-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-intro-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 350px;
}

.tech-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    border-radius: 24px;
}

.tech-block {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.tech-block-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

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

.tech-block-header h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
}

.tech-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.tech-list {
    list-style: none;
}

.tech-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
}

.tech-list li::before {
    content: '→';
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Five Steps Grid */
.five-steps .steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.step-item {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-subtle);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.step-item.highlight-step {
    background: linear-gradient(145deg, rgba(0, 240, 192, 0.1), rgba(99, 102, 241, 0.06));
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(0, 240, 192, 0.12);
}

.step-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(0, 240, 192, 0.4);
}

.step-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.solution-block {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 50px;
}

.solution-banner {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.solution-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.solution-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 229, 191, 0.3);
    line-height: 1;
}

.solution-banner-overlay h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.solution-content {
    padding: 48px;
}

.solution-overview {
    margin-bottom: 36px;
}

.solution-overview p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
}

/* Greenhouse Features */
.greenhouse-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 36px;
}

.feature-block {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 28px;
    border: var(--border-subtle);
}

.feature-block h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.feature-block ul {
    list-style: none;
}

.feature-block li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.feature-block li::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Benefits Row */
.benefits-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 240, 192, 0.06);
    border: 1px solid rgba(0, 240, 192, 0.2);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

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

/* Greenhouse Types Grid */
.greenhouse-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gh-type-card {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gh-type-card:hover {
    border-color: var(--primary);
}

.gh-type-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gh-type-content {
    padding: 20px;
}

.gh-type-content h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.gh-type-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Platform Modules */
.platform-modules {
    margin-bottom: 36px;
}

.platform-modules h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-subtle);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.module-item:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}

.module-icon {
    font-size: 1.3rem;
}

/* Platform Integration */
.platform-integration {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 36px;
    border: var(--border-subtle);
}

.platform-integration h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.platform-integration p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Stakeholder Value */
.stakeholder-value h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.stakeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stakeholder-item {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-subtle);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stakeholder-item:hover {
    border-color: var(--primary);
}

.stakeholder-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.stakeholder-item h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.stakeholder-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Orchard Features */
.orchard-features {
    margin-bottom: 36px;
}

.orchard-feature {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-subtle);
    border-radius: 16px;
    padding: 28px;
}

.orchard-feature h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.orchard-feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Case Study */
.case-study {
    background: linear-gradient(145deg, rgba(0, 240, 192, 0.06), rgba(99, 102, 241, 0.04));
    border: 1px solid rgba(0, 240, 192, 0.15);
    border-radius: 20px;
    padding: 36px;
}

.case-study h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.case-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.case-stat {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.case-num {
    font-size: 2rem;
    font-weight: 800;
    color: #f87171;
    display: block;
    margin-bottom: 6px;
    text-shadow: 0 0 15px rgba(248, 113, 113, 0.4);
}

.case-stat.positive .case-num {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(0, 240, 192, 0.4);
}

.case-stat span:last-child {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.case-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* ==================== TEAM SECTION ==================== */
.team-section {
    background: var(--bg-section-alt);
    position: relative;
    overflow: hidden;
}

/* 新版团队布局 - Brian大卡片 + 其他两人小卡片 */
.team-grid-new {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
}

/* 主要成员卡片 (Brian) */
.team-card-primary {
    background: var(--bg-card);
    padding: 48px 36px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 229, 191, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.team-card-primary:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.team-avatar-lg {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--gradient-card);
    color: var(--text-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    border: 4px solid rgba(0, 229, 191, 0.3);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 229, 191, 0.15);
}

.team-avatar-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-primary .team-name {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.team-card-primary .team-role {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.team-card-primary .team-bio {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
}

/* 次要成员区域 */
.team-secondary {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

/* 次要成员卡片 (Jason, Dr. Saman) */
.team-card-secondary {
    background: var(--bg-card);
    padding: 28px;
    border-radius: 16px;
    border: var(--border-subtle);
    transition: all 0.3s ease;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-card-secondary:hover {
    transform: translateX(4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.team-card-content {
    flex: 1;
}

.team-card-secondary .team-name {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.team-card-secondary .team-role {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card-secondary .team-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 旧版team-grid保留兼容 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.team-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    border: var(--border-subtle);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gradient-card);
    color: var(--text-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    border: 3px solid rgba(0, 229, 191, 0.2);
    overflow: hidden;
}

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

.team-avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.team-name {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.team-role {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.team-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 24px;
    border-top: var(--border-subtle);
    color: var(--text-secondary);
    font-style: italic;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 24px;
    border: var(--border-subtle);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.6rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background: var(--bg-card);
    padding: 0 6px;
    color: var(--primary);
}

.submit-btn {
    background: var(--primary);
    color: #000000;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 240, 192, 0.3);
}

.submit-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 240, 192, 0.5);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-darker);
    padding: 50px 0 30px;
    border-top: var(--border-subtle);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .five-steps .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .greenhouse-features {
        grid-template-columns: 1fr;
    }
    
    .stakeholder-grid {
        grid-template-columns: 1fr;
    }
    
    .case-results {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-card);
        width: 100%;
        padding: 30px;
        border-bottom: var(--border-subtle);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .switcher-container {
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        gap: 6px;
    }

    .switcher-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .theme-btn {
        font-size: 12px;
    }

    .lang-btn {
        font-size: 9px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .value-content {
        flex-direction: column;
        text-align: center;
    }

    .value-text {
        text-align: center;
    }
    
    .approach-flow {
        flex-direction: column;
    }
    
    .approach-connector {
        width: 2px;
        height: 30px;
        background: linear-gradient(180deg, var(--primary), transparent);
    }

    .approach-connector::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
        border: 5px solid transparent;
        border-top-color: var(--primary);
        border-left-color: transparent;
    }
    
    .highlights-grid,
    .stats-grid,
    .about-grid-new,
    .team-grid,
    .greenhouse-types-grid {
        grid-template-columns: 1fr;
    }

    /* 新版团队布局响应式 */
    .team-grid-new {
        grid-template-columns: 1fr;
    }

    .team-card-primary {
        padding: 36px 24px;
    }

    .team-avatar-lg {
        width: 120px;
        height: 120px;
        font-size: 2rem;
    }

    .team-card-secondary {
        text-align: center;
    }

    .team-card-content {
        text-align: center;
    }

    .tech-intro {
        grid-template-columns: 1fr;
    }

    .about-hero {
        height: 200px;
    }

    .solution-banner {
        height: 200px;
    }

    .solution-content {
        padding: 28px;
    }
    
    .mission-block,
    .values-block {
        grid-column: span 1;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .five-steps .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

}

/* ==================== LIGHT THEME SPECIFIC STYLES ==================== */
[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .gradient-overlay {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(248, 250, 252, 0.3) 40%,
        rgba(248, 250, 252, 0.6) 80%,
        var(--bg-dark) 100%
    );
}

[data-theme="light"] .hero-title {
    background: linear-gradient(180deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .hero-subtitle {
    color: var(--text-secondary);
}

[data-theme="light"] .switcher-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

[data-theme="light"] .switcher-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

[data-theme="light"] .stat-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .stats-bg-image {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

[data-theme="light"] .stats-bg-image::before {
    background: var(--gradient-mesh);
}

/* 亮色模式下所有标题都使用深色 */
[data-theme="light"] .section-title {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .section-header.light .section-title {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .stats-section .section-title {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

[data-theme="light"] .solution-banner-overlay h3 {
    color: #ffffff; /* Banner 上的标题保持白色，因为有深色背景 */
}

[data-theme="light"] .about-block-header h3,
[data-theme="light"] .tech-block-header h3,
[data-theme="light"] .case-study h4,
[data-theme="light"] .team-name,
[data-theme="light"] .contact-item h4,
[data-theme="light"] .footer-brand h3 {
    color: var(--text-primary);
}

[data-theme="light"] .stats-note {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--text-secondary);
}

[data-theme="light"] .about-block,
[data-theme="light"] .tech-block,
[data-theme="light"] .solution-block,
[data-theme="light"] .highlight-card,
[data-theme="light"] .team-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .about-block:hover,
[data-theme="light"] .tech-block:hover,
[data-theme="light"] .highlight-card:hover,
[data-theme="light"] .team-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

[data-theme="light"] .contact-content {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--text-primary);
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 160, 133, 0.15);
}

[data-theme="light"] .form-group label {
    color: var(--text-muted);
    background: #ffffff;
}

[data-theme="light"] .form-group input:focus + label,
[data-theme="light"] .form-group input:valid + label,
[data-theme="light"] .form-group textarea:focus + label,
[data-theme="light"] .form-group textarea:valid + label {
    background: #ffffff;
    color: var(--primary);
}

[data-theme="light"] .case-study {
    background: linear-gradient(145deg, rgba(0, 160, 133, 0.08), rgba(90, 103, 216, 0.05));
    border: 1px solid rgba(0, 160, 133, 0.2);
}

[data-theme="light"] .case-stat {
    background: rgba(0, 0, 0, 0.03);
    box-shadow: none;
}

[data-theme="light"] .case-num {
    color: #dc2626;
    text-shadow: none;
}

[data-theme="light"] .case-stat.positive .case-num {
    color: #059669;
    text-shadow: none;
}

[data-theme="light"] .case-note {
    color: var(--text-secondary);
}

[data-theme="light"] .footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .section-bg-pattern {
    opacity: 0.3;
}

[data-theme="light"] .approach-step,
[data-theme="light"] .step-item,
[data-theme="light"] .feature-block,
[data-theme="light"] .gh-type-card,
[data-theme="light"] .module-item,
[data-theme="light"] .stakeholder-item,
[data-theme="light"] .orchard-feature {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .approach-step:hover,
[data-theme="light"] .step-item:hover,
[data-theme="light"] .gh-type-card:hover,
[data-theme="light"] .module-item:hover,
[data-theme="light"] .stakeholder-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

[data-theme="light"] .value-proposition {
    background: var(--bg-section-alt);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

[data-theme="light"] .value-text::before,
[data-theme="light"] .value-text::after {
    color: var(--primary);
}

[data-theme="light"] .hero-badge {
    background: rgba(0, 160, 133, 0.1);
    border: 1px solid rgba(0, 160, 133, 0.3);
    color: var(--primary);
}

[data-theme="light"] .section-tag {
    background: rgba(0, 160, 133, 0.1);
    border: 1px solid rgba(0, 160, 133, 0.2);
    color: var(--primary);
}

[data-theme="light"] .title-line {
    box-shadow: 0 0 20px rgba(0, 160, 133, 0.2);
}

[data-theme="light"] .cta-button.secondary {
    border: 2px solid rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
}

[data-theme="light"] .cta-button.secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 160, 133, 0.05);
}

[data-theme="light"] .benefit-item {
    background: rgba(0, 160, 133, 0.08);
    border: 1px solid rgba(0, 160, 133, 0.2);
    color: var(--text-primary);
}

[data-theme="light"] .value-tag {
    background: rgba(0, 160, 133, 0.1);
    border: 1px solid rgba(0, 160, 133, 0.25);
    color: var(--primary);
}

[data-theme="light"] .value-tag:hover {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 25px rgba(0, 160, 133, 0.3);
}
