﻿/* Reset & Base Styles */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

:root {
 --primary-blue: #0066cc;
 --secondary-blue: #004499;
 --accent-blue: #0088ff;
 --dark-bg: #1a1a2e;
 --light-bg: #f5f7fa;
 --white: #ffffff;
 --gray-light: #e8ecf1;
 --gray-medium: #9aa0a6;
 --text-dark: #2c3e50;
 --text-light: #5f6c7b;
 --transition: all 0.3s ease;
 --tech-gradient: linear-gradient(135deg, #0066cc 0%, #004499 100%);
 --light-gradient: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

body {
 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "寰蒋闆呴粦", sans-serif;
 line-height: 1.6;
 color: #fff;
 background: var(--white);
 overflow-x: hidden;
}

.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}

/* Header & Navigation */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 background: rgba(255, 255, 255, 0.98);
 backdrop-filter: blur(10px);
 box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
 border-bottom: 1px solid var(--gray-light);
 z-index: 1000;
}

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

.logo {
 display: flex;
 align-items: center;
 gap: 15px;
}

.logo-img {
 height: 50px;
 width: auto;
 object-fit: contain;
}

.logo h1 {
 font-size: 1.5rem;
 color: var(--primary-blue);
 font-weight: 700;
 white-space: nowrap;
}

.logo a {
 text-decoration: none !important;
 color: inherit;
 border: none;
 outline: none;
}

.logo a:visited {
 color: inherit;
 text-decoration: none;
}

.logo a:hover {
 text-decoration: none !important;
}

.nav-right {
 display: flex;
 align-items: center;
 gap: 20px;
}

/* Hamburger Menu Button */
.hamburger-menu {
 display: none;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 width: 35px;
 height: 35px;
 background: transparent;
 border: none;
 cursor: pointer;
 padding: 5px;
 z-index: 1001;
}

.hamburger-menu span {
 display: block;
 width: 100%;
 height: 3px;
 background: var(--primary-blue);
 margin: 4px 0;
 border-radius: 3px;
 transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
 transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
 opacity: 0;
 transform: translateX(-20px);
}

.hamburger-menu.active span:nth-child(3) {
 transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
 display: flex;
 list-style: none;
 gap: 30px;
 align-items: center;
 position: relative;
 z-index: 1000;
}

.nav-links a {
 text-decoration: none;
 color: #fff;
 font-weight: 500;
 transition: var(--transition);
 position: relative;
}

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

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

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

.nav-links .dropbtn::after {
 display: none;
}

/* Dropdown Menu */
.nav-links li.dropdown {
 position: relative;
 z-index: 10000;
}

.nav-links li.dropdown > a.dropbtn {
 cursor: pointer;
}

.nav-links li.dropdown:hover .dropdown-content {
 display: block !important;
 visibility: visible !important;
 opacity: 1 !important;
}

.dropdown-content {
 display: none;
 visibility: hidden;
 opacity: 0;
 position: absolute;
 top: 100%;
 left: 0;
 background: #ffffff;
 min-width: 280px;
 box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15);
 border-radius: 10px;
 border: 1px solid #e8ecf1;
 padding: 8px 0;
 z-index: 100000;
 transition: all 0.2s ease;
}

.dropdown-content a {
 color: #2c3e50;
 padding: 12px 20px;
 text-decoration: none !important;
 display: block;
 font-size: 0.95rem;
 transition: all 0.3s ease;
 cursor: pointer !important;
 pointer-events: auto !important;
}

.dropdown-content a:hover {
 background: #f5f7fa;
 color: #0066cc;
}

/* Product dropdown - grouped layout */
.product-dropdown-content {
  min-width: 340px;
  padding: 12px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.dropdown-group {
  padding: 0 5px;
}

.dropdown-group + .dropdown-group {
  border-left: 1px solid rgba(0, 212, 255, 0.12);
}

.dropdown-group-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00d4ff;
  padding: 6px 16px 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  margin-bottom: 8px;
}

.product-dropdown-content a {
  padding: 9px 16px;
  font-size: 0.88rem;
  line-height: 1.4;
}

/* Language Dropdown */
.lang-dropdown > a.dropbtn {
 display: flex;
 align-items: center;
 gap: 6px;
 padding: 8px 16px;
 background: transparent;
 border: 2px solid var(--primary-blue);
 border-radius: 25px;
 cursor: pointer;
 font-weight: 600;
 color: var(--primary-blue);
 font-size: 0.9rem;
 white-space: nowrap;
}

.lang-dropdown > a.dropbtn:hover {
 background: var(--tech-gradient);
 color: var(--white);
 border-color: transparent;
 box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.lang-dropdown-content {
 right: 0;
 left: auto;
 min-width: 140px;
}

.lang-dropdown-content.show {
 display: block !important;
 visibility: visible !important;
 opacity: 1 !important;
}

.lang-option {
 display: flex;
 align-items: center;
 gap: 8px;
}

.lang-option.active-lang {
 background: #f0f4ff;
 color: var(--primary-blue);
 font-weight: 600;
}

.lang-option.active-lang::before {
 content: '✓';
 font-size: 0.8rem;
}

/* Hero Section */
.hero {
 background-size: cover;
 background-position: center;
 color: var(--white);
 padding: 150px 0 100px;
 text-align: center;
 min-height: 80vh;
 display: flex;
 align-items: center;
 position: relative;
 overflow: hidden;
}

.hero::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: 
 radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.25) 0%, transparent 50%),
 radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.25) 0%, transparent 50%);
 pointer-events: none;
}

.hero-content {
 max-width: 800px;
 margin: 0 auto;
 position: relative;
 z-index: 1;
}

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

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

.btn-secondary:hover {
 background: rgba(255, 255, 255, 0.15);
 transform: translateY(-3px);
 box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.hero-title {
 font-size: 3rem;
 margin-bottom: 20px;
 font-weight: 700;
 color: var(--white);
 text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
 font-size: 1.3rem;
 margin-bottom: 40px;
 opacity: 0.95;
 color: rgba(255, 255, 255, 0.95);
 text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}


/* Buttons */
.btn {
 display: inline-block;
 padding: 15px 40px;
 border-radius: 50px;
 text-decoration: none;
 font-weight: 600;
 transition: var(--transition);
 cursor: pointer;
 border: none;
}

.btn-primary {
 background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
 color: var(--white);
 box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
 background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
 transform: translateY(-3px);
 box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4);
}

/* Section Styles */
.section-title {
 text-align: center;
 font-size: 2.5rem;
 margin-bottom: 20px;
 color: var(--primary-blue);
 font-weight: 700;
 position: relative;
 display: inline-block;
 width: 100%;
}

.section-title::after {
 content: '';
 position: absolute;
 bottom: -10px;
 left: 50%;
 transform: translateX(-50%);
 width: 80px;
 height: 3px;
 background: var(--tech-gradient);
}

.section-description {
 text-align: center;
 max-width: 800px;
 margin: 0 auto 50px;
 font-size: 1.1rem;
 color: var(--text-light);
 line-height: 1.8;
}

/* Values Section */
.values-section {
 padding: 100px 0;
 background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
 position: relative;
}

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

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

.value-card {
 background: var(--white);
 padding: 40px;
 border-radius: 15px;
 text-align: center;
 border: 1px solid var(--gray-light);
 box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
 transition: var(--transition);
 position: relative;
 overflow: hidden;
}

.value-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 3px;
 background: var(--tech-gradient);
 transform: scaleX(0);
 transition: transform 0.4s ease;
}

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

.value-card:hover {
 transform: translateY(-10px);
 border-color: var(--primary-blue);
 box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.value-icon {
 font-size: 3rem;
 margin-bottom: 20px;
}

.value-card h3 {
 font-size: 1.5rem;
 margin-bottom: 15px;
 color: var(--primary-blue);
 font-weight: 600;
}

.value-card p {
 color: var(--text-light);
 line-height: 1.8;
}

/* Innovation Section */
.innovation-section {
 padding: 100px 0;
 background: var(--light-bg);
 position: relative;
}

.innovation-stats {
 display: flex;
 justify-content: center;
 gap: 80px;
 margin-top: 60px;
 flex-wrap: wrap;
}

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

.stat-number {
 display: block;
 font-size: 3.5rem;
 font-weight: 700;
 color: var(--primary-blue);
 margin-bottom: 10px;
}

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

/* Partners Section */
.partners-section {
 padding: 100px 0;
 background: var(--light-bg);
 position: relative;
}

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

.partners-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 35px;
 margin-top: 50px;
}

.partner-card {
 background: var(--white);
 padding: 40px 30px;
 border-radius: 15px;
 border: 1px solid var(--gray-light);
 text-align: center;
 transition: var(--transition);
 box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.partner-card:hover {
 border-color: var(--primary-blue);
 transform: translateY(-8px);
 box-shadow: 0 15px 40px rgba(0, 102, 204, 0.12);
}

.partner-logo {
 font-size: 4rem;
 margin-bottom: 20px;
}

.partner-card h3 {
 color: var(--primary-blue);
 font-size: 1.3rem;
 margin-bottom: 15px;
 font-weight: 600;
}

.partner-card p {
 color: var(--text-light);
 line-height: 1.7;
 font-size: 0.95rem;
}

/* ===== News Section (Home Page) ===== */
.news-preview-section {
 padding: 100px 0;
 background: var(--light-bg);
 position: relative;
}

.btn-center {
 text-align: center;
 margin-top: 40px;
}

.news-preview-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 35px;
 margin-top: 50px;
}

.news-preview-card {
 background: var(--white);
 padding: 35px 30px;
 border-radius: 15px;
 border: 1px solid var(--gray-light);
 transition: var(--transition);
 box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
 position: relative;
 overflow: hidden;
}

.news-preview-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: var(--tech-gradient);
 transform: scaleX(0);
 transition: transform 0.4s ease;
}

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

.news-preview-card:hover {
 transform: translateY(-8px);
 border-color: var(--primary-blue);
 box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.news-preview-date {
 display: flex;
 align-items: center;
 gap: 10px;
 margin-bottom: 20px;
 padding-bottom: 15px;
 border-bottom: 2px solid var(--gray-light);
}

.news-preview-date .day {
 font-size: 2.5rem;
 font-weight: 700;
 color: var(--primary-blue);
 line-height: 1;
}

.news-preview-date .month {
 font-size: 1.2rem;
 font-weight: 600;
 color: var(--text-light);
 text-transform: uppercase;
}

.news-preview-card h3 {
 color: #fff;
 font-size: 1.3rem;
 margin-bottom: 12px;
 font-weight: 600;
}

.news-preview-card p {
 color: var(--text-light);
 line-height: 1.7;
 font-size: 1rem;
 margin-bottom: 15px;
}

.news-cta {
 text-align: center;
 margin-top: 40px;
}

/* ===== News Page Styles ===== */

/* News Hero Section */
.news-hero {
 background: var(--tech-gradient);
 color: var(--white);
 padding: 150px 0 80px;
 text-align: center;
 margin-top: 0;
 position: relative;
 overflow: hidden;
}

.news-hero::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: 
 radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
 radial-gradient(circle at 80% 50%, rgba(0, 136, 255, 0.15) 0%, transparent 50%);
 pointer-events: none;
}

.news-hero .page-title {
 font-size: 3rem;
 margin-bottom: 15px;
 color: var(--white);
 font-weight: 700;
 position: relative;
 z-index: 1;
}

.news-hero .page-subtitle {
 font-size: 1.3rem;
 opacity: 0.95;
 color: rgba(255, 255, 255, 0.95);
 position: relative;
 z-index: 1;
 max-width: 700px;
 margin: 0 auto;
}

/* News List Section */
.news-list-section {
 padding: 100px 0;
 background: var(--light-bg);
}

.news-list {
 max-width: 900px;
 margin: 0 auto;
}

.news-page .news-item {
 display: flex;
 gap: 1.5rem;
 padding: 1.75rem;
 background: rgba(255, 255, 255, 0.03);
 border: 1px solid rgba(0, 212, 255, 0.1);
 border-radius: 16px;
 margin-bottom: 1.25rem;
 transition: all 0.3s ease;
 backdrop-filter: blur(12px);
}

.news-page .news-item:hover {
 border-color: rgba(0, 212, 255, 0.3);
 background: rgba(0, 212, 255, 0.05);
 transform: translateX(6px);
 box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.news-page .news-date {
 min-width: 100px;
 text-align: center;
 background: rgba(0, 212, 255, 0.06);
 padding: 1rem 0.75rem;
 border-radius: 10px;
 border-left: 3px solid #00d4ff;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
}

.news-page .news-date .day {
 display: block;
 font-size: 2rem;
 font-weight: 700;
 color: #00d4ff;
 line-height: 1;
 margin-bottom: 4px;
}

.news-page .news-date .month {
 display: block;
 font-size: 1rem;
 font-weight: 600;
 color: rgba(0, 212, 255, 0.7);
 text-transform: uppercase;
 margin-bottom: 3px;
}

.news-page .news-date .year {
 display: block;
 font-size: 0.78rem;
 color: rgba(255, 255, 255, 0.4);
}

.news-page .news-content {
 flex: 1;
 display: flex;
 flex-direction: column;
}

.news-page .news-image {
 margin-bottom: 1rem;
 border-radius: 10px;
 overflow: hidden;
}

.news-page .news-item-img {
 width: 100%;
 height: 180px;
 object-fit: cover;
 border-radius: 10px;
 transition: all 0.3s ease;
}

.news-page .news-item:hover .news-item-img {
 transform: scale(1.02);
 filter: brightness(0.85);
}

.news-page .news-title {
 color: rgba(255, 255, 255, 0.9);
 font-size: 1.15rem;
 margin-bottom: 0.6rem;
 font-weight: 600;
 line-height: 1.4;
 transition: color 0.2s;
}

.news-page .news-item:hover .news-title {
 color: #00d4ff;
}

.news-page .news-summary {
 color: rgba(255, 255, 255, 0.55);
 line-height: 1.7;
 font-size: 0.9rem;
 margin-bottom: 0.8rem;
}

.news-page .news-link {
 color: #00d4ff;
 text-decoration: none;
 font-weight: 600;
 font-size: 0.88rem;
 transition: all 0.2s ease;
 display: inline-block;
}

.news-page .news-link:hover {
 color: #00ff88;
 transform: translateX(4px);
}

/* Company Values */
.company-values {
 padding: 100px 0;
 background-color: rgba(0, 0, 0, 0.4);
 background-size: cover;
 background-position: center;
 color: var(--white);
 text-align: center;
 position: relative;
 overflow: hidden;
}

.company-values::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: 
 radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
 radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
 pointer-events: none;
}

.company-values .container {
 position: relative;
 z-index: 1;
}

.company-values .section-title {
 color: var(--primary-blue);
 position: relative;
}

.values-text {
 max-width: 900px;
 margin: 0 auto;
 font-size: 1.2rem;
 line-height: 2;
 opacity: 0.95;
 color: rgba(255, 255, 255, 0.95);
}
/* Passion Section */
.passion-section {
 padding: 100px 0;
 background: var(--light-bg);
 text-align: center;
 position: relative;
}

.passion-text {
 max-width: 900px;
 margin: 0 auto;
 font-size: 1.2rem;
 line-height: 2;
 color: var(--text-light);
}

/* Contact Section */
.contact-section {
 padding: 100px 0;
 background: var(--light-bg);
 text-align: center;
 position: relative;
}

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

.contact-description {
 font-size: 1.2rem;
 color: var(--text-light);
 margin-bottom: 50px;
}

.contact-container {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 40px;
 align-items: center;
 margin-bottom: 30px;
}

.contact-info-wrapper {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
}

.contact-info {
 display: flex;
 justify-content: center;
 gap: 40px;
 margin-bottom: 40px;
 flex-wrap: wrap;
 flex-direction: column;
 width: 100%;
}

.contact-row {
 display: flex;
 justify-content: center;
 gap: 4rem;
 flex-wrap: wrap;
 width: 100%;
}

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

.contact-item.inline {
 flex: 1;
 min-width: 200px;
}

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

.contact-item p {
 color: var(--text-light);
 font-size: 1.1rem;
 line-height: 1.6;
}

.map-container {
 height: 400px;
 border-radius: 10px;
 overflow: hidden;
 box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 background: var(--white);
}

/* Footer */
.footer {
 background: var(--dark-bg);
 color: var(--white);
 text-align: center;
 padding: 30px 0;
}

.footer p {
 opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
 /* Ensure navbar has solid background */
 .navbar {
 background: rgba(255, 255, 255, 0.98);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 }

 /* Nav-right should be a flex row on mobile too */
 .nav-right {
 display: flex;
 align-items: center;
 justify-content: flex-end;
 gap: 8px;
 z-index: 1002;
 }

 /* Hamburger Menu Button - make it visible with background */
 .hamburger-menu {
 display: flex;
 position: fixed;
 top: 65px;
 right: 15px;
 z-index: 1003;
 background: rgba(255, 255, 255, 0.95);
 border: 1.5px solid rgba(0, 102, 204, 0.25);
 border-radius: 6px;
 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
 margin-right: 0;
 }



 .nav-links {
 position: fixed;
 top: 0;
 right: -100%;
 width: 75%;
 max-width: 300px;
 height: 100vh;
 background: var(--white);
 flex-direction: column;
 padding: 80px 20px 30px;
 box-shadow: -5px 0 30px rgba(0, 0, 0, 0.12);
 transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
 gap: 0;
 align-items: stretch;
 z-index: 1001;
 overflow-y: auto;
 }

 .nav-links.active {
 right: 0;
 }

 .nav-links li {
 width: 100%;
 margin-bottom: 10px;
 }

 .nav-links a {
 display: block;
 padding: 15px 20px;
 border-bottom: 1px solid var(--gray-light);
 color: #fff;
 }

 .nav-links a:hover {
 background: var(--light-bg);
 }

 /* Mobile dropdown - make submenu visible when clicked */
 .nav-links li.dropdown.mobile-open > .dropdown-content {
 display: block !important;
 visibility: visible !important;
 opacity: 1 !important;
 position: static;
 box-shadow: none;
 padding: 0;
 margin: 0;
 min-width: unset;
 border: none;
 border-radius: 0;
 }

 .nav-links li.dropdown.mobile-open > .dropdown-content a {
 padding: 12px 20px 12px 35px;
 font-size: 0.95rem;
 color: #fff;
 border-bottom: 1px solid var(--gray-light);
 background: transparent;
 }

 .nav-links li.dropdown.mobile-open > .dropdown-content a:hover {
 background: var(--light-bg);
 color: var(--primary-blue);
 }

 .nav-links li.dropdown.mobile-open > .dropbtn {
 color: var(--primary-blue);
 }

/* Mobile: product dropdown grid -> stacked */
.nav-links li.dropdown.mobile-open > .product-dropdown-content {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.nav-links li.dropdown.mobile-open > .product-dropdown-content .dropdown-group {
  padding: 0;
  border-left: none !important;
}

.nav-links li.dropdown.mobile-open > .product-dropdown-content .dropdown-group-title {
  padding: 10px 20px 6px 35px;
  font-size: 0.8rem;
}

 .hero-title {
 font-size: 2rem;
 }

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

 .section-title {
 font-size: 2rem;
 }

 .innovation-stats {
 gap: 40px;
 }

 .stat-number {
 font-size: 2.5rem;
 }

 .values-grid {
 grid-template-columns: 1fr;
 }

 .partners-grid {
 grid-template-columns: 1fr;
 }

 .news-preview-grid {
 grid-template-columns: 1fr;
 }

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

 .news-date {
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 15px;
 margin-bottom: 20px;
 }

 .news-item-img {
 height: 180px;
 }

 .contact-container {
 grid-template-columns: 1fr;
 gap: 30px;
 }

 .map-container {
 height: 300px;
 }

 /* About page responsive */
 .page-title {
 font-size: 2.2rem;
 }

 .about-grid {
 grid-template-columns: 1fr;
 gap: 40px;
 }

 .about-section,
 .global-section,
 .resilience-section,
 .values-detail-section {
 padding: 60px 0;
 }

 .global-grid {
 grid-template-columns: repeat(2, 1fr);
 gap: 20px;
 }

 .partners-logo-showcase {
 flex-direction: column;
 gap: 30px;
 }

 .partner-logo-img {
 max-width: 200px;
 }

 .values-detail-grid {
 grid-template-columns: 1fr;
 }

 .cta-section {
 padding: 50px 0;
 }

 .cta-section h2 {
 font-size: 1.8rem;
 }
}
/* ===== About Page Styles ===== */

/* About Hero Section */
.about-hero {
 background-color: rgba(0, 0, 0, 0.35);
 background-size: cover;
 background-position: center;
 color: var(--white);
 padding: 200px 0 150px;
 text-align: center;
 margin-top: 0;
 position: relative;
 overflow: hidden;
}

.about-hero::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: 
 radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
 radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
 pointer-events: none;
}

.page-title {
 font-size: 3rem;
 margin-bottom: 15px;
 color: var(--white);
 font-weight: 700;
 position: relative;
 z-index: 1;
}

.page-subtitle {
 font-size: 1.3rem;
 opacity: 0.95;
 color: rgba(255, 255, 255, 0.95);
 position: relative;
 z-index: 1;
}
/* About Section */
.about-section {
 padding: 100px 0;
 background: var(--white);
}

.about-grid {
 display: grid;
 grid-template-columns: 2fr 1fr;
 gap: 60px;
 align-items: start;
}

.about-content h2 {
 font-size: 2rem;
 margin-bottom: 25px;
 color: var(--primary-blue);
}

.about-content p {
 font-size: 1.1rem;
 line-height: 1.8;
 color: var(--text-light);
 margin-bottom: 20px;
}

.about-image {
 display: flex;
 flex-direction: column;
 gap: 20px;
}

.timeline-card {
 background: var(--light-bg);
 padding: 25px;
 border-radius: 10px;
 border-left: 4px solid var(--primary-blue);
 box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
 transition: var(--transition);
}

.timeline-card:hover {
 transform: translateX(5px);
 box-shadow: 0 5px 20px rgba(0, 102, 204, 0.15);
}

.timeline-card .year {
 display: block;
 font-size: 1.8rem;
 font-weight: 700;
 color: var(--primary-blue);
 margin-bottom: 5px;
}

.timeline-card .event {
 color: var(--text-light);
 font-size: 1rem;
}

/* Global Section */
.global-section {
 padding: 100px 0;
 background: var(--light-bg);
}

.global-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 30px;
 margin-top: 50px;
}

/* Resilience Section */
.resilience-section {
 padding: 100px 0;
 background: var(--white);
}

.resilience-content {
 max-width: 900px;
 margin: 0 auto;
}

.resilience-content p {
 font-size: 1.2rem;
 line-height: 2;
 color: var(--text-light);
}

/* Partners Section (about page) */
.partners-section {
 padding: 100px 0;
 background: var(--light-bg);
}

.partners-logo-showcase {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 60px;
 margin-top: 50px;
 flex-wrap: wrap;
}

.partner-logo-wrapper {
 background: var(--white);
 padding: 30px;
 border-radius: 15px;
 box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
 transition: var(--transition);
 display: flex;
 align-items: center;
 justify-content: center;
}

.partner-logo-wrapper:hover {
 transform: translateY(-10px) scale(1.05);
 box-shadow: 0 15px 50px rgba(0, 102, 204, 0.15);
}

.partner-logo-img {
 max-width: 250px;
 height: auto;
 object-fit: contain;
}

/* Values Detail Section */
.values-detail-section {
 padding: 100px 0;
 background: var(--light-bg);
}

.values-detail-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 30px;
 margin-top: 50px;
}

.value-detail-card {
 background: var(--white);
 padding: 40px 30px;
 border-radius: 15px;
 text-align: center;
 border: 1px solid var(--gray-light);
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 transition: var(--transition);
 position: relative;
 overflow: hidden;
}

.value-detail-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 3px;
 background: var(--tech-gradient);
 transform: scaleX(0);
 transition: transform 0.4s ease;
}

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

.value-detail-card:hover {
 transform: translateY(-8px);
 border-color: var(--primary-blue);
 box-shadow: 0 12px 30px rgba(0, 102, 204, 0.12);
}

.value-detail-icon {
 font-size: 2.5rem;
 margin-bottom: 15px;
 line-height: 1;
}

.value-detail-card h3 {
 color: var(--primary-blue);
 font-size: 1.3rem;
 margin-bottom: 12px;
 font-weight: 600;
}

.value-detail-card p {
 color: var(--text-light);
 font-size: 1rem;
 line-height: 1.7;
 margin: 0;
}

/* CTA Section */
.cta-section {
 padding: 80px 0;
 background: var(--tech-gradient);
 color: var(--white);
 text-align: center;
}

.cta-section h2 {
 font-size: 2.5rem;
 margin-bottom: 15px;
 font-weight: 700;
}

.cta-section p {
 font-size: 1.2rem;
 opacity: 0.95;
 margin-bottom: 30px;
}

.cta-section .btn-primary {
 background: var(--white);
 color: var(--primary-blue);
}

.cta-section .btn-primary:hover {
 background: var(--gray-light);
}

/* ===== 鏂板锛氬叏鐞冨竷灞€鍥剧墖鍗＄墖鏍峰紡 ===== */
.location-card {
 background: var(--white);
 padding: 0 0 25px 0;
 border-radius: 15px;
 text-align: center;
 border: 1px solid var(--gray-light);
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 transition: var(--transition);
 overflow: hidden;
}

.location-card:hover {
 transform: translateY(-8px);
 border-color: var(--primary-blue);
 box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);
}

.location-image {
 width: 100%;
 height: 140px;
 overflow: hidden;
 margin-bottom: 15px;
}

.location-img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: var(--transition);
}

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

.location-icon {
 font-size: 2rem;
 margin-bottom: 8px;
}

.location-card h3 {
 color: var(--primary-blue);
 font-size: 1.2rem;
 margin-bottom: 8px;
 font-weight: 600;
}

.location-card p {
 color: var(--text-light);
 font-size: 1rem;
}

/* ===== Product Page Styles ===== */
.product-hero {
 background: linear-gradient(135deg, #003d7a 0%, #0052a3 40%, #0066cc 70%, #0088ff 100%);
 color: var(--white);
 padding: 150px 0 80px;
 text-align: center;
 margin-top: 0;
 position: relative;
 overflow: hidden;
}

.product-hero::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: 
 radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
 radial-gradient(circle at 80% 30%, rgba(0, 136, 255, 0.2) 0%, transparent 50%),
 radial-gradient(circle at 50% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 40%);
 pointer-events: none;
}

.product-hero::after {
 content: '';
 position: absolute;
 bottom: -2px;
 left: 0;
 right: 0;
 height: 60px;
 background: linear-gradient(to bottom, transparent, rgba(11, 30, 56, 0.6));
 pointer-events: none;
}

.page-title {
 font-size: 3rem;
 margin-bottom: 15px;
 color: var(--white);
 font-weight: 700;
 position: relative;
 z-index: 1;
}

.page-subtitle {
 font-size: 1.3rem;
 opacity: 0.95;
 color: rgba(255, 255, 255, 0.95);
 position: relative;
 z-index: 1;
}

.product-detail-section {
 padding: 100px 0;
 background: var(--white);
}

.product-image-full {
 margin-bottom: 60px;
 text-align: center;
}

.product-main-image {
 width: 100%;
 max-width: 900px;
 border-radius: 15px;
 box-shadow: 0 10px 40px rgba(0, 102, 204, 0.15);
}

.product-detail-section .product-image-full:first-child .product-main-image {
 max-height: 450px;
 object-fit: contain;
}

.product-detail-grid > .product-image > img {
 max-height: 450px;
 object-fit: contain;
}

.product-info {
 max-width: 900px;
 margin: 0 auto;
}

.product-info h2 {
 font-size: 2rem;
 margin-bottom: 25px;
 color: var(--primary-blue);
}

.product-info p {
 font-size: 1.1rem;
 line-height: 1.8;
 color: var(--text-light);
 margin-bottom: 30px;
}

.product-info h3 {
 font-size: 1.5rem;
 margin: 30px 0 20px;
 color: var(--primary-blue);
}

.feature-list {
 list-style: none;
 padding: 0;
}

.feature-list li {
 font-size: 1.1rem;
 line-height: 2;
 color: var(--text-light);
 padding: 8px 0;
 padding-left: 20px;
 position: relative;
}

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

.specs-section {
 padding: 100px 0;
 background: var(--light-bg);
}

.specs-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
 margin-top: 50px;
}

.spec-card {
 background: var(--white);
 padding: 30px 25px;
 border-radius: 15px;
 border: 1px solid var(--gray-light);
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 transition: var(--transition);
}

.spec-card:hover {
 transform: translateY(-8px);
 border-color: var(--primary-blue);
 box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);
}

.spec-card h4 {
 color: var(--primary-blue);
 font-size: 1.2rem;
 margin-bottom: 10px;
 font-weight: 600;
}

.spec-card p {
 color: var(--text-light);
 font-size: 1rem;
 line-height: 1.6;
}

/* Product page responsive */
@media (max-width: 768px) {
 .product-hero {
 padding: 120px 0 60px;
 }

 .product-detail-section {
 padding: 60px 0;
 }

 .product-main-image {
 width: 100%;
 }

 .specs-section {
 padding: 60px 0;
 }

 .specs-grid {
 grid-template-columns: 1fr;
 }
}


/* News Detail Page Styles */

/* News Detail Hero */
.news-detail-hero {
 padding: 0;
 background-size: contain;
 background-position: center;
 background-repeat: no-repeat;
 background-color: #f5f7fa;
 color: var(--white);
 margin-top: 0;
 position: relative;
 min-height: 600px;
 display: flex;
 align-items: flex-end;
}

.news-detail-hero .container {
 position: relative;
 z-index: 1;
 width: 100%;
}

.news-meta {
 position: relative;
 width: 100%;
}

.news-detail-date {
 position: absolute;
 top: 20px;
 right: 20px;
 display: inline-flex;
 align-items: center;
 gap: 10px;
 padding: 15px 35px;
 background: rgba(255,255,255,0.95);
 border-radius: 50px;
 color: var(--primary-blue);
 box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.news-detail-date .day {
 font-size: 2rem;
 font-weight: 700;
}

.news-detail-date .month {
 font-size: 1.3rem;
 font-weight: 600;
 text-transform: uppercase;
}

.news-detail-date .year {
 font-size: 1rem;
 opacity: 0.9;
}

.news-detail-title {
 font-size: 3.5rem;
 color: var(--white);
 margin-bottom: 10px;
 font-weight: 700;
 text-shadow: 0 2px 20px rgba(0,0,0,0.5);
 text-align: left;
}



/* News Detail Content */
.news-detail-content {
 padding: 80px 0;
 background: var(--white);
}

.news-detail-body {
 max-width: 1200px;
 margin: 0 auto;
}

/* Image and Content Blocks */
.news-image-block {
 margin-bottom: 40px;
 width: 100%;
}

.news-image-block img {
 width: 100%;
 display: block;
}

.news-detail-img {
 width: 100%;
 height: auto;
 max-height: 600px;
 object-fit: contain;
 border-radius: 15px;
 box-shadow: 0 10px 40px rgba(0,102,204,0.15);
 transition: var(--transition);
 background: #f5f7fa;
}

.news-detail-img.img-large {
 max-height: 750px;
}

.news-detail-img.img-small {
 height: 280px;
 object-fit: cover;
}

.news-detail-img:hover {
 transform: scale(1.02);
 box-shadow: 0 15px 50px rgba(0,102,204,0.2);
}

.news-content-block {
 max-width: 750px;
 margin: 0 auto 50px;
 padding: 0 20px;
}

.news-content-block h2 {
 color: var(--primary-blue);
 font-size: 1.8rem;
 margin: 0 0 20px;
 padding-bottom: 15px;
 border-bottom: 3px solid var(--primary-blue);
 font-weight: 600;
}

.news-content-block p {
 color: var(--text-light);
 line-height: 2;
 font-size: 1.1rem;
 margin-bottom: 15px;
 overflow: visible !important;
 max-height: none !important;
 text-align: left;
 word-break: normal;
 white-space: normal !important;
}

.news-detail-lead {
 font-size: 1.15rem;
 line-height: 1.9;
 margin-bottom: 25px;
}

.news-detail-lead a {
 color: #00d4ff;
 text-decoration: none;
}

.news-detail-lead a:hover {
 color: var(--accent-cyan);
}

.news-content-block h3 {
 color: var(--primary-blue);
 font-size: 1.3rem;
 margin: 30px 0 15px;
 font-weight: 600;
}

.news-detail-list {
 list-style: none;
 padding: 0;
 margin: 15px 0 25px;
}

.news-detail-list li {
 color: var(--text-light);
 line-height: 1.8;
 font-size: 1.05rem;
 padding: 8px 0 8px 30px;
 position: relative;
}

.news-detail-list li::before {
 content: "•";
 color: var(--accent-cyan);
 font-weight: bold;
 font-size: 1.5rem;
 position: absolute;
 left: 8px;
 top: 5px;
}

/* News Text */
.news-text {
 padding-top: 10px;
}

.news-text h2 {
 color: var(--primary-blue);
 font-size: 1.6rem;
 margin: 35px 0 20px;
 padding-bottom: 12px;
 border-bottom: 2px solid var(--gray-light);
 font-weight: 600;
}

.news-text h2:first-child {
 margin-top: 0;
}

.news-text p {
 color: var(--text-light);
 line-height: 1.9;
 font-size: 1.05rem;
 margin-bottom: 15px;
}

/* Event Info Grid */
.event-info-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 25px;
 margin: 40px 0;
}

.event-info-card {
 background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
 padding: 30px 25px;
 border-radius: 15px;
 text-align: center;
 border: 2px solid transparent;
 transition: var(--transition);
}

.event-info-card:hover {
 border-color: var(--primary-blue);
 transform: translateY(-8px);
 box-shadow: 0 15px 40px rgba(0,102,204,0.15);
}

.event-icon {
 font-size: 2.5rem;
 margin-bottom: 15px;
}

.event-info-card h3 {
 color: var(--primary-blue);
 font-size: 1.2rem;
 margin-bottom: 15px;
 font-weight: 600;
}

.event-info-card p {
  color: var(--text-dark) !important;
 line-height: 1.8;
 font-size: 0.95rem;
 margin-bottom: 5px;
}

/* Related News */
.related-news {
 padding: 80px 0;
 background: var(--light-bg);
}

.related-news-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 30px;
 margin-top: 40px;
}

.related-news-card {
 background: var(--white);
 padding: 30px;
 border-radius: 12px;
 text-decoration: none;
 border: 1px solid var(--gray-light);
 transition: var(--transition);
 display: block;
}

.related-news-card:hover {
 border-color: var(--primary-blue);
 transform: translateY(-8px);
 box-shadow: 0 12px 35px rgba(0,102,204,0.15);
}

.related-news-card .related-news-date {
 display: flex;
 align-items: center;
 gap: 10px;
 margin-bottom: 15px;
 padding-bottom: 15px;
 border-bottom: 2px solid var(--gray-light);
}

.related-news-card .day {
 font-size: 2rem;
 font-weight: 700;
 color: var(--primary-blue);
}

.related-news-card .month {
 font-size: 1.1rem;
 color: var(--text-light);
 text-transform: uppercase;
 font-weight: 600;
}

.related-news-card h3 {
  color: #fff;
 color: #fff;
 font-size: 1.35rem;
 font-weight: 600;
 margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
 .news-detail-hero {
 padding: 80px 0 50px;
 min-height: 350px;
 align-items: flex-end;
 }

 .news-detail-title {
 font-size: 2.2rem;
 text-align: center;
 }

 .news-detail-date {
 position: relative;
 top: 0;
 right: auto;
 padding: 12px 25px;
 margin-bottom: 20px;
 flex-direction: column;
 gap: 5px;
 background: rgba(255,255,255,0.95);
 }

 .news-detail-img {
 height: 300px;
 }

 .news-content-block {
 padding: 0;
 margin-bottom: 35px;
 }

 .news-content-block h2 {
 font-size: 1.5rem;
 }

 .event-info-grid {
 grid-template-columns: 1fr;
 gap: 20px;
 }

 .related-news-grid {
 grid-template-columns: 1fr;
 }
}


/* ============================================
   TECH THEME - 硬核科技感
   ============================================ */

/* Hexagon Grid Background Pattern (SVG) */
.hex-bg {
  position: relative;
  overflow: hidden;
}
.hex-bg::before {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52' viewBox='0 0 60 52'%3E%3Cpath d='M30 0 L60 15 L60 37 L30 52 L0 37 L0 15 Z' fill='none' stroke='rgba(0,212,255,0.07)' stroke-width='1'/%3E%3Cpath d='M30 26 L60 41 L60 63 L30 78 L0 63 L0 41 Z' fill='none' stroke='rgba(0,212,255,0.07)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  pointer-events: none;
  z-index: 0;
}
.hex-bg > * { position: relative; z-index: 1; }

/* ============================================
   TECH HERO SECTION
   ============================================ */
.tech-hero-home {
  background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #0a1628 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Animated scan line */
.tech-hero-home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.8), transparent);
  animation: scanline 4s linear infinite;
  z-index: 2;
}
@keyframes scanline {
  0% { top: 0; opacity: 1; }
  100% { top: 100vh; opacity: 0.3; }
}

.tech-hero-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-hero-text {
  flex: 1;
}

.tech-hero-text .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.tech-hero-text .hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #00d4ff;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.tech-hero-text h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.tech-hero-text h2 .gradient-text {
  background: linear-gradient(90deg, #00d4ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-hero-text p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-tech-primary {
  padding: 14px 36px;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  color: #0a1628;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(0,212,255,0.3);
  letter-spacing: 0.03em;
}
.btn-tech-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,212,255,0.5);
}

.btn-tech-ghost {
  padding: 14px 36px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.btn-tech-ghost:hover {
  border-color: rgba(0,212,255,0.6);
  color: #00d4ff;
  transform: translateY(-2px);
}

/* Hero visual - 3D instrument preview */
.tech-hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tech-hero-visual .instrument-glow {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, rgba(0,255,136,0.05) 50%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: glow-pulse 4s ease-in-out infinite;
  position: relative;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 60px rgba(0,212,255,0.2), 0 0 120px rgba(0,212,255,0.1); }
  50% { box-shadow: 0 0 80px rgba(0,212,255,0.35), 0 0 160px rgba(0,212,255,0.15); }
}

.tech-hero-visual .instrument-glow::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.15);
  animation: ring-rotate 20s linear infinite;
}

@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.instrument-icon {
  font-size: 8rem;
  filter: drop-shadow(0 0 30px rgba(0,212,255,0.5));
}

/* ============================================
   TECH SECTION BASE
   ============================================ */
.tech-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.tech-section-dark {
  background: linear-gradient(160deg, #0b1e38 0%, #0f2d52 100%);
  color: white;
}

.tech-section-darker {
  background: linear-gradient(160deg, #071018 0%, #0b1e38 100%);
  color: white;
}

.tech-section-mid {
  background: linear-gradient(160deg, #0f2d52 0%, #0b1e38 100%);
  color: white;
}

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

.section-header .section-eyebrow {
  font-size: 0.95rem;
  display: inline-block;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-header h2 .gradient-text {
  background: linear-gradient(90deg, #00d4ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   TECH PRODUCT CARDS (Homepage Products Grid)
   ============================================ */
.tech-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .tech-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .tech-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.8rem 1.5rem 1.5rem;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 290px;
}
/* Tech card links - comprehensive: no color, no underline for ALL link states */
.tech-news-card,
.tech-news-card:link,
.tech-news-card:visited,
.tech-news-card:hover,
.tech-news-card:focus,
.tech-news-card:active,
.tech-news-card h3,
.tech-news-card h3:link,
.tech-news-card h3:visited,
.tech-news-card h3:hover,
.tech-news-card h3:focus,
.tech-news-card h3 a,
.tech-news-card h3 a:link,
.tech-news-card h3 a:visited,
.tech-news-card h3 a:hover,
.tech-news-card p,
.tech-news-card p a,
.tech-news-card p a:link,
.tech-news-card p a:visited,
.tech-news-card p a:hover,
.tech-news-card .news-arrow,
.tech-news-card .news-arrow:link,
.tech-news-card .news-arrow:visited,
.tech-news-card .news-arrow:hover {
  color: inherit !important;
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  outline: none !important;
}



/* ============================================
   TECH NEWS CARD - Visual Hierarchy (overrides inherit)
   ============================================ */
/* Date badge - cyan */
.tech-news-card .news-date-badge {
  color: #00d4ff !important;
}
.tech-news-card .news-date {
  color: rgba(0, 212, 255, 0.85) !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Title - white, bold */
.tech-news-card h3 {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.tech-news-card:hover h3 {
  color: #ffffff !important;
}

/* Description - muted gray */
.tech-news-card p {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
}

/* "Learn more" arrow - cyan */
.tech-news-card .news-arrow {
  color: rgba(0, 212, 255, 0.7) !important;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: auto;
  transition: all 0.2s;
}
.tech-news-card:hover .news-arrow {
  color: #00d4ff !important;
  gap: 8px;
}


/* ============================================
   TECH PRODUCT CARD - Visual Hierarchy (overrides inherit)
   ============================================ */
/* Model tag - cyan accent */
.tech-product-card .model-tag {
  color: #00d4ff !important;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* Title - white */
.tech-product-card h3 {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.tech-product-card:hover h3 {
  color: #ffffff !important;
}

/* Description - muted gray */
.tech-product-card p {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
}

/* Card tag - dark cyan */
.tech-product-card .card-tag {
  color: rgba(0, 212, 255, 0.75) !important;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  display: inline-block;
}

/* Card icon */
.tech-product-card .card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}
.tech-product-card,
.tech-product-card:link,
.tech-product-card:visited,
.tech-product-card:hover,
.tech-product-card:focus,
.tech-product-card:active,
.tech-product-card h3,
.tech-product-card h3:link,
.tech-product-card h3:visited,
.tech-product-card h3:hover,
.tech-product-card h3 a,
.tech-product-card h3 a:link,
.tech-product-card h3 a:visited,
.tech-product-card h3 a:hover,
.tech-product-card p,
.tech-product-card p a,
.tech-product-card p a:link,
.tech-product-card p a:visited,
.tech-product-card p a:hover,
.tech-product-card .card-icon,
.tech-product-card .card-tag {
  color: inherit !important;
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* News detail lead links */
.news-detail-lead a,
.news-detail-lead a:link,
.news-detail-lead a:visited,
.news-detail-lead a:hover {
  color: #00d4ff !important;
  text-decoration: none !important;
}


.tech-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.6), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

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

.tech-product-card:hover {
  border-color: rgba(0,212,255,0.35);
  background: rgba(255,255,255,0.07);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,212,255,0.15);
}

.tech-product-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
}

.tech-product-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.tech-product-card h3 .model-tag {
  color: #00d4ff;
  font-size: 0.9rem;
  font-weight: 600;
}

.tech-product-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

.tech-product-card .card-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 4px 12px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 50px;
  font-size: 0.75rem;
  color: #00d4ff;
  letter-spacing: 0.05em;
}

/* ============================================
   TECH STATS / INNOVATION
   ============================================ */
.tech-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.tech-stat-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: all 0.4s;
}

.tech-stat-card:hover {
  border-color: rgba(0,212,255,0.5);
  box-shadow: 0 0 40px rgba(0,212,255,0.1);
  transform: translateY(-4px);
}

.stat-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.stat-link:hover .tech-stat-number {
  filter: brightness(1.2);
}

.tech-stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tech-stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   TECH VALUE CARDS
   ============================================ */
.tech-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.tech-value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  backdrop-filter: blur(12px);
  transition: all 0.4s;
}

.tech-value-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 12px 40px rgba(0,212,255,0.1);
  transform: translateY(-4px);
}

.tech-value-card .value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.tech-value-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.8rem;
}

.tech-value-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ============================================
   TECH NEWS CARDS
   ============================================ */
.tech-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.tech-news-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.8rem;
  backdrop-filter: blur(12px);
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.tech-news-card:hover {
  border-color: rgba(0,212,255,0.35);
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,212,255,0.12);
}

.tech-news-card .news-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1rem;
}

.tech-news-date {
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.tech-news-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.tech-news-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  flex: 1;
}

.tech-news-card .news-arrow {
  margin-top: 1rem;
  color: rgba(0,212,255,0.7);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: gap 0.3s;
}

.tech-news-card:hover .news-arrow {
  gap: 8px;
  color: #00d4ff;
}

/* ============================================
   TECH CONTACT SECTION
   ============================================ */
.tech-contact {
  background: linear-gradient(180deg, #0a1628 0%, #080f1e 100%);
  color: white;
  padding: 100px 0;
}

.tech-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.tech-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tech-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

.tech-contact-item .item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.tech-contact-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #00d4ff;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tech-contact-item p,
.tech-contact-item a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  text-decoration: none;
  display: block;
}

.tech-contact-item a:hover {
  color: #00d4ff;
}

.tech-contact-map {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  backdrop-filter: blur(12px);
}

.tech-contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.7);
}

/* ============================================
   TECH CTA SECTION
   ============================================ */
.tech-cta {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}

.tech-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.tech-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .tech-hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .tech-hero-text h2 { font-size: 2.5rem; }
  .hero-btn-group { justify-content: center; }
  .tech-hero-text p { margin: 0 auto 2.5rem; }
  .tech-hero-visual { order: -1; }
  .tech-hero-visual .instrument-glow { width: 200px; height: 200px; }
  .instrument-icon { font-size: 5rem; }
  .tech-stats-grid { grid-template-columns: 1fr; gap: 1rem; }
  .tech-contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section-header h2 { font-size: 2rem; }
  .tech-hero-text h2 { font-size: 2.2rem; }
}

@media (max-width: 600px) {
  .tech-products-grid { grid-template-columns: 1fr; }
  .tech-news-grid { grid-template-columns: 1fr; }
  .tech-values-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ORIGINAL SECTION OVERRIDES (override white bg)
   ============================================ */
.values-section,
.innovation-section,
.news-preview-section,
.passion-section {
  background: transparent !important;
}

.values-section .section-title,
.innovation-section .section-title,
.news-preview-section .section-title,
.values-text-section .section-title,
.passion-section .section-title,
.contact-section .section-title {
  color: white !important;
}

.values-section .section-description,
.news-preview-section .section-description,
.passion-section .section-description {
  color: rgba(255,255,255,0.65) !important;
}

/* Transparent card overrides for tech mode */
.values-section .values-grid .value-card,
.news-preview-section .news-preview-grid .news-preview-card,
.passion-section .container > p {
  background: transparent !important;
  border-color: rgba(255,255,255,0.1) !important;
  box-shadow: none !important;
}

/* news item in tech mode */
.news-preview-section .news-preview-grid .news-preview-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(12px) !important;
}

.news-preview-section .news-preview-grid .news-preview-card:hover {
  border-color: rgba(0,212,255,0.35) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(0,212,255,0.12) !important;
}

/* Value cards in tech mode */
.values-section .values-grid .value-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(12px) !important;
}

.values-section .values-grid .value-card:hover {
  border-color: rgba(0,212,255,0.3) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0,212,255,0.1) !important;
}

/* Innovation section stats in tech mode */
.innovation-section .innovation-stats .stat-item {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(0,212,255,0.15) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(12px) !important;
  padding: 2rem 1.5rem !important;
}

.innovation-section .innovation-stats .stat-number {
  background: linear-gradient(135deg, #00d4ff, #00ff88) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.innovation-section .innovation-stats .stat-label {
  color: rgba(255,255,255,0.6) !important;
}

/* Passion section in tech mode */
.passion-section .container > p {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: rgba(255,255,255,0.65) !important;
}

/* Contact in tech mode */
.contact-section {
  background: transparent !important;
}

.contact-section .section-title {
  color: white !important;
}

.contact-section .contact-description {
  color: rgba(255,255,255,0.65) !important;
}

.contact-section .contact-info,
.contact-section .contact-info-wrapper,
.contact-section .contact-item {
  background: transparent !important;
  border-color: rgba(255,255,255,0.1) !important;
  box-shadow: none !important;
}

.contact-section .map-container {
  border: 1px solid rgba(0,212,255,0.2) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(12px) !important;
  overflow: hidden !important;
}

/* btn overrides */
.btn-tech-primary.inverted {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  box-shadow: none;
}
.btn-tech-primary.inverted:hover {
  border-color: rgba(0,212,255,0.6);
  color: #00d4ff;
}

/* ============================================
   TECH HEADER / NAV
   ============================================ */

/* Header in tech mode (on dark backgrounds) */
body:not(.light-header) .header,
body:not(.light-header) .navbar {
  background: rgba(10, 22, 40, 0.92) !important;
  border-bottom-color: rgba(0, 212, 255, 0.15) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

body:not(.light-header) .header .navbar .logo h1,
body:not(.light-header) .header .nav-links a,
body:not(.light-header) .header .nav-links .dropbtn {
  color: rgba(255, 255, 255, 0.9) !important;
}

body:not(.light-header) .header .nav-links a:hover,
body:not(.light-header) .header .nav-links .dropbtn:hover {
  color: #00d4ff !important;
}

body:not(.light-header) .header .nav-links a::after {
  background: linear-gradient(90deg, #00d4ff, #00ff88) !important;
}

body:not(.light-header) .header .logo h1 {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Hamburger menu in tech mode */
body:not(.light-header) .header .hamburger-menu span {
  background: rgba(255, 255, 255, 0.9) !important;
}

/* Language dropdown button in tech mode */
body:not(.light-header) .header .lang-dropdown > a.dropbtn {
  border-color: rgba(0, 212, 255, 0.4) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

body:not(.light-header) .header .lang-dropdown > a.dropbtn:hover {
  background: rgba(0, 212, 255, 0.15) !important;
  border-color: #00d4ff !important;
  color: #00d4ff !important;
}

/* Dropdown content in tech mode */
body:not(.light-header) .header .dropdown-content {
  background: rgba(10, 22, 40, 0.97) !important;
  border-color: rgba(0, 212, 255, 0.2) !important;
  backdrop-filter: blur(16px) !important;
}

body:not(.light-header) .header .dropdown-content a {
  color: rgba(255, 255, 255, 0.85) !important;
}

body:not(.light-header) .header .dropdown-content a:hover {
  background: rgba(0, 212, 255, 0.1) !important;
  color: #00d4ff !important;
}

body:not(.light-header) .header .product-dropdown-content {
  min-width: 600px;
}

body:not(.light-header) .header .dropdown-group + .dropdown-group {
  border-left-color: rgba(0, 212, 255, 0.15);
}

body:not(.light-header) .header .dropdown-group-title {
  color: #00d4ff;
  border-bottom-color: rgba(0, 212, 255, 0.15);
}

body:not(.light-header) .header .lang-dropdown-content {
  background: rgba(10, 22, 40, 0.97) !important;
  border-color: rgba(0, 212, 255, 0.2) !important;
}

body:not(.light-header) .header .lang-option {
  color: rgba(255, 255, 255, 0.85) !important;
}

body:not(.light-header) .header .lang-option:hover {
  background: rgba(0, 212, 255, 0.1) !important;
  color: #00d4ff !important;
}

body:not(.light-header) .header .lang-option.active-lang {
  background: rgba(0, 212, 255, 0.15) !important;
  color: #00d4ff !important;
}

/* ============================================
   FOOTER IN TECH MODE
   ============================================ */
body:not(.light-header) .footer {
  background: #050c15 !important;
  border-top: 1px solid rgba(0, 212, 255, 0.1) !important;
}

/* ============================================
   MOBILE NAV IN TECH MODE
   ============================================ */
@media (max-width: 768px) {
  body:not(.light-header) .header {
    background: rgba(10, 22, 40, 0.98) !important;
  }

  body:not(.light-header) .nav-links {
    background: rgba(10, 22, 40, 0.98) !important;
  }

  body:not(.light-header) .nav-links a {
    color: rgba(255, 255, 255, 0.9) !important;
    border-bottom-color: rgba(255, 255, 255, 0.06) !important;
  }

  body:not(.light-header) .nav-links a:hover {
    background: rgba(0, 212, 255, 0.08) !important;
    color: #00d4ff !important;
  }

  body:not(.light-header) .hamburger-menu {
    background: rgba(10, 22, 40, 0.95) !important;
    border-color: rgba(0, 212, 255, 0.2) !important;
  }
}





/* ============================================
   CONTACT LINKS - ensure clickable
   ============================================ */
#contact {
  position: relative;
  z-index: 10;
}

.tech-contact-info,
.tech-contact-item,
.tech-contact-item a {
  pointer-events: auto !important;
  position: relative;
  z-index: 2;
}

.tech-contact-map {
  pointer-events: none;
  z-index: 1;
  position: relative;
}

.tech-contact-map * {
  pointer-events: none;
}

/* mailto/tel links must be always clickable */
a[href^="mailto:"] {
  color: rgba(0, 212, 255, 0.9) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

a[href^="mailto:"]:hover {
  color: #00d4ff !important;
  text-decoration: underline !important;
}

a[href^="tel:"] {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

a[href^="tel:"]:hover {
  color: #00d4ff !important;
}

/* ============================================
   PRODUCT PAGE - Dark Tech Theme
   ============================================ */
.product-page .tech-hero-home {
  min-height: 70vh;
}

.product-page .product-tech-hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: #0a1628;
  overflow: hidden;
}

.product-page .product-tech-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.product-page .product-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-page .product-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-page .product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #00d4ff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.product-page .product-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.product-page .product-hero-content h1 .gradient-text {
  display: block;
  background: linear-gradient(135deg, #00d4ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-page .product-hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.product-page .product-hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-page .spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.product-page .product-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page .product-icon-large {
  font-size: 6rem;
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.3));
}

/* ============================================
   PRODUCT DETAIL - Dark Tech Sections
   ============================================ */
.product-page .product-detail-section {
  background: linear-gradient(160deg, #0f2d52 0%, #0b1e38 100%);
  padding: 5rem 0;
}

.product-page .product-detail-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.product-page .product-detail-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}

.product-page .product-detail-card h2 {
  font-size: 1.5rem;
  color: #e8f4ff;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.18);
}

.product-page .product-detail-card p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Product info text on dark backgrounds */
.product-page .product-info h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #e8f4ff;
  font-weight: 700;
}

.product-page .product-info h3 {
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
  color: #c5d8f0;
  font-weight: 600;
}

.product-page .product-info h4 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.75rem;
  color: #4facfe;
  font-weight: 600;
}

.product-page .product-info p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.product-page .product-info strong {
  color: #e8f4ff;
}

.product-page .feature-list li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 2;
}

.product-page .feature-list li::before {
  color: #4facfe;
}

/* ============================================
   SPECS SECTION - Dark Tech
   ============================================ */
.product-page .specs-section {
  background: linear-gradient(160deg, #0c1f3a 0%, #0f2d52 100%);
  padding: 5rem 0;
}

.product-page .specs-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.product-page .specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-page .spec-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.product-page .spec-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.07);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.12);
}

@media (max-width: 768px) {
  .product-page .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.product-page .spec-card .spec-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #4facfe;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.product-page .spec-card .spec-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #e8f4ff;
}

/* ============================================
   CTA SECTION - Dark Tech
   ============================================ */
.product-page .cta-section {
  background: linear-gradient(160deg, #0f2d52 0%, #0b1e38 100%);
  padding: 5rem 0;
  text-align: center;
}

.product-page .cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.product-page .cta-section p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
}

/* Section titles in dark product pages */
.product-page .specs-section .section-title {
  color: #e8f4ff;
  font-size: 2rem;
}

.product-page .specs-section .section-title::after {
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  width: 100px;
}

.product-page .cta-section .hero-btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.product-page .cta-section .btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #0088ff 100%);
  color: #fff;
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.product-page .cta-section .btn-primary:hover {
  background: linear-gradient(135deg, #00e5ff 0%, #00aaff 100%);
  box-shadow: 0 6px 28px rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
}

/* ============================================
   NEWS PAGE - Dark Tech Theme
   ============================================ */
.news-page .news-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background: #0a1628;
  text-align: center;
}

.news-page .news-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(0, 212, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.news-page .news-list-section {
  padding: 5rem 0;
}

/* ============================================
   NEWS DETAIL HERO - keep background image, dark overlay
   ============================================ */
.news-page .news-detail-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.news-page .news-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.3) 0%,
    rgba(10, 22, 40, 0.75) 60%,
    rgba(10, 22, 40, 0.92) 100%
  );
}

.news-page .news-detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}

.news-page .news-detail-hero-content .news-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00d4ff;
  margin-bottom: 1rem;
}

.news-page .news-detail-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
  max-width: 800px;
  margin-bottom: 0.75rem;
}

/* ============================================
   NEWS DETAIL CONTENT
   ============================================ */
.news-page .news-detail-content {
  padding: 5rem 0;
}

.news-page .news-detail-content .container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.news-page .news-content-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.news-page .news-content-block h2 {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
}

.news-page .news-content-block p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  margin-bottom: 0.9rem;
}

/* ============================================
   RELATED NEWS
   ============================================ */
.news-page .related-news {
  padding: 4rem 0;
}

.news-page .related-news .section-title {
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 600;
}

.news-page .related-news-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.news-page .related-news-card {
  display: block;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.news-page .related-news-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.05);
  transform: translateY(-2px);
}

.news-page .related-news-card h4 {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.news-page .related-news-card:hover h4 {
  color: #00d4ff;
}

.news-page .related-news-card .related-date {
  font-size: 0.78rem;
  color: rgba(0, 212, 255, 0.7);
  font-weight: 500;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page .about-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background: #0a1628;
  text-align: center;
}

.about-page .about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(0, 212, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.about-page .about-section,
.about-page .global-section,
.about-page .resilience-section,
.about-page .partners-section,
.about-page .values-detail-section {
  padding: 5rem 0;
}

.about-page .about-section .container,
.about-page .global-section .container,
.about-page .resilience-section .container,
.about-page .partners-section .container,
.about-page .values-detail-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-page .section-title {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-page .section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #00ff88);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.about-page p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-page .values-grid,
.about-page .partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.about-page .value-card,
.about-page .partner-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.about-page .value-card h3,
.about-page .partner-item h4 {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-page .value-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-align: center;
}

/* ============================================
   TECHNOLOGY PAGE
   ============================================ */
.technology-page .tech-hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: #0a1628;
}

.technology-page .tech-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.technology-page .particle-section,
.technology-page .decompose-section,
.technology-page .parallax-section,
.technology-page .interaction-section,
.technology-page .cta-section {
  padding: 5rem 0;
}

.technology-page .particle-section .container,
.technology-page .decompose-section .container,
.technology-page .parallax-section .container,
.technology-page .interaction-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.technology-page .particle-title,
.technology-page .decompose-section .section-title,
.technology-page .parallax-section h2,
.technology-page .interaction-section h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.technology-page .particle-title {
  text-align: center;
  font-size: 1.8rem;
}

.technology-page .decompose-section .step-card,
.technology-page .parallax-card,
.technology-page .interaction-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.technology-page .decompose-section .step-card:hover,
.technology-page .parallax-card:hover,
.technology-page .interaction-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.04);
  transform: translateY(-3px);
}

/* ============================================
   CTA BUTTON (override for non-index pages)
   ============================================ */
.btn-tech-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 1.5px solid rgba(0, 212, 255, 0.45);
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9) !important;
  background: transparent;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.btn-tech-ghost:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
  color: #00d4ff !important;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
  transform: translateY(-1px);
}

/* ============================================
   NEWS PAGE - Compact Hero, news immediately visible
   ============================================ */
.news-page .news-hero {
  padding: 6rem 0 2.5rem !important;
  min-height: unset !important;
}

.news-page .news-hero::before {
  background: radial-gradient(ellipse at 50% 80%, rgba(0, 212, 255, 0.06) 0%, transparent 65%);
}

.news-page .news-hero h1 {
  font-size: 1.6rem !important;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.news-page .news-hero p {
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin: 0;
}

.news-page .news-list-section {
  padding: 2.5rem 0 4rem !important;
}

.news-page .news-list-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* News cards in list - make them compact */
.news-page .news-card {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.news-page .news-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.05);
  transform: translateX(4px);
}

.news-page .news-card .news-card-date {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.6rem;
}

.news-page .news-card h2 {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  transition: color 0.2s;
}

.news-page .news-card:hover h2 {
  color: #00d4ff;
}

.news-page .news-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0 0 0.6rem 0;
}

.news-page .news-card .read-more {
  font-size: 0.82rem;
  color: #00d4ff;
  font-weight: 500;
}

/* Page title/subtitle compact styles */
.news-page .news-hero .page-title {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.news-page .news-hero .page-subtitle {
  font-size: 0.88rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin: 0 !important;
}

/* ============================================
   ABOUT PAGE - Compact Hero
   ============================================ */
.about-page .about-hero {
  padding: 0 0 0.5rem !important;
  min-height: unset !important;
  text-align: center;
}

.about-page .about-hero::before {
  background: radial-gradient(ellipse at 50% 90%, rgba(0, 212, 255, 0.06) 0%, transparent 65%);
}

.about-page .about-page-title {
  font-size: 1.6rem !important;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.4rem 0;
}

.about-page .about-page-subtitle {
  font-size: 0.88rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin: 0 !important;
}

/* Compact about section content */
.about-page .about-section {
  padding: 2.5rem 0 !important;
}

.about-page .about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.about-page .about-content h2 {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.about-page .about-content p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.about-page .global-section,
.about-page .resilience-section {
  padding: 3rem 0 !important;
}

.about-page .partners-section,
.about-page .values-detail-section {
  padding: 3rem 0 !important;
}

/* ============================================
   ABOUT PAGE - Global & Values Grids (Dark)
   ============================================ */
.about-page .global-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.25rem !important;
  margin-top: 1.5rem !important;
}

.about-page .location-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(0, 212, 255, 0.1) !important;
  border-radius: 14px !important;
  padding: 0 0 1.25rem 0 !important;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.about-page .location-card:hover {
  border-color: rgba(0, 212, 255, 0.3) !important;
  background: rgba(0, 212, 255, 0.05) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
}

.about-page .location-image {
  width: 100%;
  height: 110px !important;
  overflow: hidden;
  margin-bottom: 0.75rem !important;
  border-radius: 14px 14px 0 0;
}

.about-page .location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.9);
  transition: all 0.3s ease;
}

.about-page .location-card:hover .location-img {
  transform: scale(1.04) !important;
  filter: brightness(0.85) saturate(1);
}

.about-page .location-icon {
  font-size: 1.75rem;
  margin-bottom: 0.4rem;
}

.about-page .location-card h3 {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.95rem !important;
  font-weight: 600;
  margin-bottom: 0.3rem !important;
  padding: 0 0.5rem;
}

.about-page .location-card p {
  color: rgba(0, 212, 255, 0.8) !important;
  font-size: 0.82rem !important;
  font-weight: 500;
  margin: 0 !important;
}

/* Values detail grid - 3 columns, always in row */
.about-page .values-detail-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.25rem !important;
  margin-top: 1.5rem !important;
}

.about-page .value-detail-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(0, 212, 255, 0.1) !important;
  border-radius: 14px !important;
  padding: 1.75rem 1.25rem !important;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.about-page .value-detail-card:hover {
  border-color: rgba(0, 212, 255, 0.3) !important;
  background: rgba(0, 212, 255, 0.05) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.about-page .value-detail-card::before {
  background: linear-gradient(90deg, #00d4ff, #00ff88) !important;

  height: 3px;
  top: 0;
  left: 0;
  right: 0;
}

.about-page .value-detail-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.about-page .value-detail-card h3 {
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 600;
  margin-bottom: 0.6rem !important;
}

.about-page .value-detail-card p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.88rem !important;
  line-height: 1.7;
  margin: 0 !important;
  text-align: left !important;
}

/* ============================================
   TIMELINE - Horizontal Dark Theme
   ============================================ */
.about-page .about-image {
  display: flex !important;
  flex-direction: row !important;
  gap: 1rem !important;
  align-items: stretch !important;
  position: relative;
}

/* Connecting line between cards */
.about-page .about-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,212,255,0.4), rgba(0,255,136,0.4));
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 1px;
}

.about-page .timeline-card {
  flex: 1;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(0, 212, 255, 0.12) !important;
  border-radius: 12px !important;
  padding: 1.25rem 1rem !important;
  text-align: center !important;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  box-shadow: none !important;
}

.about-page .timeline-card:hover {
  background: rgba(0, 212, 255, 0.06) !important;
  border-color: rgba(0, 212, 255, 0.3) !important;
  transform: translateY(-4px) !important;
}

.about-page .timeline-card .year {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.4rem;
  line-height: 1;
}

.about-page .timeline-card .event {
  display: block;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.88rem;
  line-height: 1.45;
}

/* Timeline responsive - stack on small screens */
@media (max-width: 640px) {
  .about-page .about-image {
    flex-direction: column !important;
  }
  .about-page .about-image::before {
    display: none;
  }
}

/* ============================================
   CONTACT CTA - bottom of contact section
   ============================================ */
.tech-contact-cta {
  padding: 2rem 0 3rem;
  text-align: center;
}

/* Override btn-tech-primary for bottom CTA - keep it slightly different from ghost */
.btn-tech-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(0,255,136,0.15));
  border: 1.5px solid rgba(0, 212, 255, 0.5);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #00d4ff;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.btn-tech-primary:hover {
  background: linear-gradient(135deg, rgba(0,212,255,0.35), rgba(0,255,136,0.25));
  border-color: #00d4ff;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.25);
  transform: translateY(-2px);
}

/* Tech section link reset - no underline, inherit color */
.tech-section a,
.tech-section-dark a,
.tech-section-darker a,
.tech-section-mid a,
.tech-contact a {
  text-decoration: none !important;
  color: inherit;
}

/* ============================================
   SEARCH BUTTON IN NAVBAR
   ============================================ */
.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1.5px solid rgba(0, 102, 204, 0.4);
  border-radius: 50%;
  color: var(--primary-blue);
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.search-btn:hover {
  background: rgba(0, 102, 204, 0.1);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: scale(1.08);
}

/* ============================================
   SEARCH OVERLAY & MODAL
   ============================================ */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 16, 24, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-modal {
  width: 100%;
  max-width: 660px;
  margin: 0 1rem;
  background: #0f2538;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 212, 255, 0.08);
  overflow: hidden;
  transform: translateY(-16px) scale(0.97);
  transition: transform 0.25s ease;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.search-overlay.active .search-modal {
  transform: translateY(0) scale(1);
}

.search-header {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.search-icon {
  color: rgba(0, 212, 255, 0.6);
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: inherit;
  caret-color: #00d4ff;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.search-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 4px;
  display: flex;
  border-radius: 6px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.search-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.search-results {
  overflow-y: auto;
  flex: 1;
  padding: 0.5rem 0.8rem 1rem;
}

.search-empty {
  padding: 2.5rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.95rem;
}

.search-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 212, 255, 0.5);
  padding: 0.8rem 0.4rem 0.4rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 0.6rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.search-result-item:hover {
  background: rgba(0, 212, 255, 0.08);
}

.search-result-item:active {
  background: rgba(0, 212, 255, 0.14);
}

.search-result-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: #00d4ff;
}

.search-result-text {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-arrow {
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  font-size: 0.8rem;
}

.search-no-results {
  padding: 2.5rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.95rem;
}

.search-footer {
  padding: 0.7rem 1.2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

/* Responsive */
@media (max-width: 640px) {
  .search-btn {
    width: 32px;
    height: 32px;
  }

  .search-overlay {
    padding-top: 5vh;
    align-items: flex-end;
  }

  .search-modal {
    margin: 0;
    border-radius: 18px 18px 0 0;
    max-height: 90vh;
    transform: translateY(100%) scale(1);
  }

  .search-overlay.active .search-modal {
    transform: translateY(0) scale(1);
  }
}

/* ============================================
   NEWS PAGE EVENT INFO CARDS - Dark Theme
   ============================================ */
.news-page .event-info-card h3 {
  color: var(--primary-blue) !important;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.news-page .event-info-card p {
  color: var(--text-dark) !important;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

/* ============================================
   INQUIRY FORM - Online Consultation
   ============================================ */
.tech-inquiry-section {
  max-width: 900px;
  margin: 3.5rem auto 0;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.tech-inquiry-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(0,212,255,0.4), rgba(0,255,136,0.4));
}

.tech-inquiry-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.tech-inquiry-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.tech-inquiry-header p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

.tech-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.25s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 212, 255, 0.6);
  background: rgba(0, 212, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #0b1e38;
  color: rgba(255, 255, 255, 0.9);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.form-note {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
  .tech-inquiry-section {
    padding: 1.5rem 1.2rem;
    margin: 2.5rem 0.8rem 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* ============================================
   CUSTOMERS PAGE
   ============================================ */
.tech-bg-customer {
  background: linear-gradient(160deg, #0b1e38 0%, #0f2d52 50%, #0a1628 100%) !important;
  overflow: visible !important;
}

.tech-bg-customer::before {
  overflow: hidden;
}

.customer-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
  overflow: visible;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .customer-hero-title {
    font-size: 2rem;
  }
}

.customer-filter-section {
  background: linear-gradient(180deg, #0a1628 0%, #080f1e 100%);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  position: sticky;
  top: 72px;
  z-index: 100;
}

.customer-filter-bar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.filter-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  flex-shrink: 0;
  min-width: 220px;
  color: rgba(255, 255, 255, 0.5);
}

.filter-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-family: inherit;
  width: 100%;
}

.filter-search-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.filter-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex: 1;
}

.filter-tag {
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}

.filter-tag:hover {
  border-color: rgba(0, 212, 255, 0.5);
  color: rgba(255, 255, 255, 0.8);
}

.filter-tag.active {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.6);
  color: #00d4ff;
}

.customer-count {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  flex-shrink: 0;
}

.customer-count span:first-child {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00d4ff;
}

/* Table */
.customer-table-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #080f1e 0%, #071018 100%);
  min-height: 50vh;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.customer-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.customer-table thead th {
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 212, 255, 0.6);
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.customer-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease;
}

.customer-table tbody tr:hover {
  background: rgba(0, 212, 255, 0.04);
}

.customer-table td {
  padding: 0.85rem 1.2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  vertical-align: middle;
}

.customer-num {
  color: rgba(0, 212, 255, 0.4) !important;
  font-weight: 600;
  font-size: 0.82rem !important;
  min-width: 40px;
}

.customer-name {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  white-space: nowrap;
}

.customer-dept {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.72rem;
  color: rgba(0, 212, 255, 0.5);
  font-weight: 400;
  background: rgba(0, 212, 255, 0.06);
  padding: 1px 8px;
  border-radius: 50px;
  vertical-align: middle;
}

.customer-loc {
  color: rgba(255, 255, 255, 0.5) !important;
  white-space: nowrap;
  font-size: 0.85rem !important;
}

.customer-products {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  max-width: 380px;
}

.table-no-results {
  padding: 4rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1rem;
}

/* Mobile: customer page */
@media (max-width: 768px) {
  .customer-filter-section {
    top: 60px;
  }

  .customer-filter-bar {
    gap: 0.75rem;
  }

  .filter-search-wrap {
    min-width: 160px;
  }

  .filter-tags {
    gap: 0.4rem;
  }

  .filter-tag {
    font-size: 0.78rem;
    padding: 0.3rem 0.7rem;
  }

  .customer-count {
    width: 100%;
    text-align: right;
    padding-right: 0.5rem;
  }
}

/* Active nav link */
.nav-links a.active-nav {
  color: #00d4ff !important;
}
.nav-links a.active-nav::after {
  width: 100% !important;
}

/* ===== PRODUCT DEMO SECTION ===== */
.demo-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #071018 100%);
}

.demo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.demo-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #00d4ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.demo-main {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

.demo-canvas-wrap {
  position: relative;
  background: linear-gradient(160deg, #071320 0%, #0a1f3a 100%);
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.demo-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}

#vs6841-demo {
  width: 100%;
  height: 100%;
  display: block;
}

.demo-mode-indicator {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.mode-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.4s;
}

.mode-dot.active {
  background: #00d4ff;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.8);
  transform: scale(1.3);
}

.demo-mode-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 30px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #00d4ff;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.4s;
}

.demo-data-panels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.data-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  opacity: 0.4;
  transform: translateX(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.data-panel.active {
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.06);
}

.panel-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #00d4ff;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.panel-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

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

.metric-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  font-family: 'Courier New', monospace;
}

.panel-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin-top: 0.8rem;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #00ff88);
  border-radius: 2px;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.el-bar {
  background: linear-gradient(90deg, #ff6600, #ffaa00);
  box-shadow: 0 0 8px rgba(255, 150, 0, 0.6);
}

.iv-bar {
  background: linear-gradient(90deg, #00ff88, #00d4ff);
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

/* Progress bar */
.demo-progress {
  margin-top: 2.5rem;
  padding: 0 1rem;
}

.progress-track {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin-bottom: 0.8rem;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, #00d4ff 0%, #00ff88 50%, #ff6600 100%);
  border-radius: 2px;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
  transition: left 0.1s linear;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

@media (max-width: 900px) {
  .demo-main {
    grid-template-columns: 1fr;
  }
  .demo-data-panels {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .data-panel {
    flex: 1;
    min-width: 140px;
  }
  .demo-header h2 { font-size: 1.8rem; }
}

@media (max-width: 640px) {
  .demo-header h2 { font-size: 1.5rem; }
  .demo-data-panels { flex-direction: column; }
  .data-panel { min-width: unset; }
}
