:root {
            --white: #FFFFFF;
            --cream-50: #FFFBF6;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1F2937;
            --gray-900: #111827;
            --gray-950: #0a0d12;
            
            --bronze-900: #312E81;
            --bronze-800: #3730A3;
            --bronze-700: #4F46E5;
            --bronze-600: #6366F1;
            --bronze-500: #818CF8;
            --bronze-400: #A5B4FC;
            --bronze-300: #C7D2FE;
            --bronze-200: #E0E7FF;
            --bronze-100: #EEF2FF;
            
            --emerald: #059669;
            --emerald-light: #D1FAE5;
            --blue: #3B82F6;
            --blue-light: #DBEAFE;
            --violet: #8B5CF6;
            --violet-light: #EDE9FE;
            --cyan: #06B6D4;
            --orange: #F97316;
            
            --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-serif: 'DM Serif Display', Georgia, serif;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { 
            font-family: var(--font-sans); 
            font-size: 15px; 
            line-height: 1.6; 
            color: var(--gray-800); 
            background: var(--white); 
            -webkit-font-smoothing: antialiased;
            padding-top: 80px;
        }
        a { text-decoration: none; color: inherit; }
        button { font-family: inherit; cursor: pointer; border: none; background: none; }
        .container { max-width: 1600px; margin: 0 auto; padding: 0 72px; }

        /* HEADER */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 14px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--gray-100);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 10px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 600;
            color: var(--gray-900);
        }

        .logo-mark {
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, var(--bronze-700), var(--bronze-900));
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(61, 41, 20, 0.2);
        }

        .logo-mark svg { width: 18px; height: 18px; color: white; }
        .logo sup { font-size: 10px; font-weight: 500; color: var(--bronze-600); margin-left: 2px; }

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

        .nav-link {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-600);
            border-radius: 6px;
            transition: all 0.2s;
        }

        .nav-link:hover { color: var(--gray-900); background: var(--gray-50); }
        .nav-link.active { color: var(--bronze-700); }
        .nav-link svg { width: 14px; height: 14px; }

        .header-actions { display: flex; align-items: center; gap: 12px; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            font-family: var(--font-sans);
            font-size: 14px;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .btn-sm { padding: 8px 16px; font-size: 13px; }
        .btn-lg { padding: 14px 28px; font-size: 15px; }
        .btn-xl { padding: 16px 32px; font-size: 16px; }
        .btn-primary { background: transparent; color: #1E1E24; border: 1.5px solid #1E1E24; }
        .btn-primary:hover { background: #1E1E24; color: #FFFFFF; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10); }
        .btn-secondary { background: var(--gray-900); color: white; }
        .btn-secondary:hover { background: var(--gray-800); }
        .btn-outline { background: transparent; color: var(--gray-700); border: 1px solid var(--gray-200); }
        .btn-outline:hover { background: var(--gray-50); border-color: var(--gray-300); }
        .btn-ghost { color: var(--gray-600); background: transparent; }
        .btn-ghost:hover { color: var(--gray-900); background: var(--gray-50); }
        .btn-white { background: white; color: var(--gray-900); }
        .btn-white:hover { background: var(--gray-100); }

        /* Dark section button overrides */
        .cta-card .btn-primary,
        .api-orchestration-section .btn-primary,
        .hybrid-section .btn-primary {
            background: #FFFFFF;
            color: #1E1E24;
            border: none;
            border-radius: 8px;
            padding: 9px 20px;
            font-weight: 500;
        }
        .cta-card .btn-primary:hover,
        .api-orchestration-section .btn-primary:hover,
        .hybrid-section .btn-primary:hover {
            background: #F0F0F0;
            color: #1E1E24;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .cta-card .btn-outline,
        .api-orchestration-section .btn-outline,
        .hybrid-section .btn-outline {
            background: transparent;
            color: #FFFFFF;
            border: 1.5px solid rgba(255,255,255,0.5);
            border-radius: 8px;
            padding: 9px 20px;
        }
        .cta-card .btn-outline:hover,
        .api-orchestration-section .btn-outline:hover,
        .hybrid-section .btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.7);
        }
        .cta-card .btn-primary.btn-lg,
        .api-orchestration-section .btn-primary.btn-lg {
            padding: 14px 28px;
        }
        .btn-icon { width: 16px; height: 16px; }

        .mobile-menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: var(--gray-600);
        }
        .mobile-menu-toggle svg { width: 24px; height: 24px; }

        @media (max-width: 1024px) {
            .nav { display: none; }
            .mobile-menu-toggle { display: flex; }
            .header-actions .btn-ghost { display: none; }
        }

        /* HERO SECTION */
        .about-hero {
            padding: 80px 0 100px;
            background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99,102,241, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .about-hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .about-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(99,102,241, 0.12);
            border: 1px solid rgba(99,102,241, 0.25);
            border-radius: 100px;
            margin-bottom: 24px;
        }

        .about-badge span {
            font-size: 13px;
            font-weight: 600;
            color: var(--bronze-700);
        }

        .about-hero-title {
            font-family: var(--font-serif);
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 400;
            color: var(--gray-900);
            line-height: 1.15;
            margin-bottom: 24px;
        }

        .about-hero-title .highlight {
            color: var(--bronze-600);
        }

        .about-hero-subtitle {
            font-size: 19px;
            color: var(--gray-600);
            line-height: 1.7;
            max-width: 640px;
            margin: 0 auto;
        }

        /* MISSION SECTION */
        .mission-section {
            padding: 100px 0;
            background: var(--white);
        }

        .mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .mission-content h2 {
            font-family: var(--font-serif);
            font-size: 36px;
            font-weight: 400;
            color: var(--gray-900);
            margin-bottom: 20px;
        }

        .mission-content p {
            font-size: 17px;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .mission-visual {
            position: relative;
        }

        .mission-card {
            background: linear-gradient(135deg, var(--bronze-800), var(--bronze-900));
            border-radius: 24px;
            padding: 48px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .mission-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .mission-card-icon {
            width: 64px;
            height: 64px;
            background: rgba(255,255,255,0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .mission-card-icon svg { width: 32px; height: 32px; }

        .mission-card h3 {
            font-family: var(--font-serif);
            font-size: 28px;
            font-weight: 400;
            margin-bottom: 16px;
        }

        .mission-card p {
            font-size: 16px;
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
        }

        /* VALUES SECTION */
        .values-section {
            padding: 100px 0;
            background: var(--gray-50);
        }

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

        .section-eyebrow {
            font-size: 12px;
            font-weight: 700;
            color: var(--bronze-600);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: 40px;
            font-weight: 400;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 17px;
            color: var(--gray-600);
            line-height: 1.7;
        }

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

        .value-card {
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            padding: 36px;
            transition: all 0.3s ease;
        }

        .value-card:hover {
            border-color: var(--bronze-300);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .value-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .value-icon svg { width: 28px; height: 28px; }

        .value-icon.innovation { background: linear-gradient(135deg, var(--bronze-400), var(--bronze-600)); color: white; }
        .value-icon.customer { background: linear-gradient(135deg, var(--emerald), #047857); color: white; }
        .value-icon.integrity { background: linear-gradient(135deg, var(--blue), #1D4ED8); color: white; }
        .value-icon.excellence { background: linear-gradient(135deg, var(--violet), #6D28D9); color: white; }
        .value-icon.collaboration { background: linear-gradient(135deg, var(--cyan), #0891B2); color: white; }
        .value-icon.impact { background: linear-gradient(135deg, var(--orange), #EA580C); color: white; }

        .value-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .value-card p {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* STATS SECTION */
        .stats-section {
            padding: 80px 0;
            background: var(--gray-900);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

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

        .stat-value {
            font-size: 48px;
            font-weight: 800;
            color: var(--bronze-400);
            margin-bottom: 8px;
            line-height: 1;
        }

        .stat-label {
            font-size: 15px;
            color: var(--gray-400);
        }

        /* CTA SECTION */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--bronze-800), var(--bronze-900));
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 10;
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-title {
            font-family: var(--font-serif);
            font-size: 40px;
            color: white;
            margin-bottom: 16px;
        }

        .cta-text {
            font-size: 18px;
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            margin-bottom: 36px;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-cta-primary {
            background: white;
            color: var(--bronze-800);
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
        }

        .btn-cta-primary:hover {
            background: var(--gray-100);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .btn-cta-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            padding: 14px 30px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
        }

        .btn-cta-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }

        /* FOOTER */
        .footer {
            background: var(--gray-950);
            color: white;
            padding: 80px 0 32px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.3fr 2fr;
            gap: 48px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

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

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-logo-mark {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--bronze-600), var(--bronze-800));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-mark svg { width: 18px; height: 18px; color: white; }

        .footer-desc { 
            font-size: 15px; 
            color: var(--gray-400); 
            line-height: 1.7; 
            margin-bottom: 28px; 
        }

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

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .social-link:hover { 
            background: var(--bronze-700); 
            border-color: var(--bronze-600);
        }
        .social-link svg { width: 18px; height: 18px; color: var(--gray-400); }
        .social-link:hover svg { color: white; }

        .footer-links-grid {
            display: grid;
            grid-template-columns: minmax(120px, 1fr) minmax(180px, 1.5fr) minmax(130px, 1.2fr) minmax(130px, 1.2fr) minmax(130px, 1.2fr);
            gap: 20px;
        }

        .footer-column h4 {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: white;
            margin-bottom: 20px;
        
            white-space: nowrap;
        }

        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        
        .footer-link { 
            font-size: 14px; 
            color: var(--gray-400); 
            transition: all 0.2s;
            white-space: nowrap;
        }
        
        .footer-link:hover { 
            color: white; 
            transform: translateX(2px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 32px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-copyright { font-size: 14px; color: var(--gray-500); }
        
        .footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
        .footer-legal a { 
            font-size: 14px; 
            color: var(--gray-500); 
            transition: color 0.2s;
        }
        .footer-legal a:hover { color: white; }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .mission-grid { grid-template-columns: 1fr; gap: 48px; }
            .values-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
            .footer-top { grid-template-columns: 1fr; gap: 48px; }
            .footer-links-grid { grid-template-columns: minmax(120px, 1fr) minmax(180px, 1.5fr) minmax(130px, 1.2fr) minmax(130px, 1.2fr) minmax(130px, 1.2fr); }
        }

        @media (max-width: 768px) {
            .about-hero { padding: 60px 0 80px; }
            .about-hero-title { font-size: 36px; }
            .section-title { font-size: 32px; }
            .values-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; gap: 24px; }
            .stat-value { font-size: 40px; }
            .cta-title { font-size: 32px; }
            .cta-actions { flex-direction: column; align-items: center; }
        }
    
/* ── Nav wrapping fix for long translations ── */
#header .nav-link,
#header .nav-item > a {
  white-space: nowrap;
}
#header .nav {
  font-size: clamp(12px, 1.1vw, 15px);
  flex-wrap: nowrap;
}
#header .header-inner {
  flex-wrap: nowrap;
  align-items: center;
}
.header-actions {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Hero badge overflow fix for long translations ── */
.hero-badge {
  white-space: nowrap;
  width: auto;
  max-width: 100%;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
