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

/* ===== Design System Variables ===== */
:root {
    /* Brand Colors - Premium Blue */
    --primary: #4F6AF5;
    --primary-dark: #3D52D5;
    --primary-light: #6B7FFF;
    --primary-lighter: #8B9AFF;
    --primary-glow: rgba(79, 106, 245, 0.5);

    /* Accent Colors */
    --accent-purple: #8B5CF6;
    --accent-cyan: #06B6D4;
    --accent-pink: #EC4899;

    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #4F6AF5 0%, #6B7FFF 50%, #8B5CF6 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1a 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(79, 106, 245, 0.15) 0%, transparent 70%);

    /* Neutral Colors - Rich & Deep */
    --black: #0a0a0f;
    --black-light: #12121a;
    --gray-900: #1a1a28;
    --gray-800: #252538;
    --gray-700: #3a3a50;
    --gray-600: #5a5a72;
    --gray-500: #8585a0;
    --gray-400: #a8a8c0;
    --gray-300: #d0d0e0;
    --gray-200: #e8e8f0;
    --gray-100: #f5f5fa;
    --white: #FFFFFF;
    --off-white: #f8f8fc;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: 140px;
    --section-padding-mobile: 100px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Premium Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(79, 106, 245, 0.3), 0 0 80px rgba(79, 106, 245, 0.15);
    --shadow-glow-sm: 0 0 20px rgba(79, 106, 245, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* ===== English Typography Adjustments ===== */
html[lang="en"] body {
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: -0.015em;
    font-weight: 400;
}

html[lang="en"] .hero-title,
html[lang="en"] .page-hero-title {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 700;
}

@media (min-width: 768px) {
    html[lang="en"] .hero-title,
    html[lang="en"] .page-hero-title {
        font-size: 56px;
        letter-spacing: -0.035em;
    }
}

@media (min-width: 1024px) {
    html[lang="en"] .hero-title,
    html[lang="en"] .page-hero-title {
        font-size: 64px;
    }
}

html[lang="en"] .section-title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    font-weight: 700;
}

@media (min-width: 768px) {
    html[lang="en"] .section-title {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    html[lang="en"] .section-title {
        font-size: 48px;
    }
}

html[lang="en"] .section-description,
html[lang="en"] .hero-description,
html[lang="en"] .page-hero-description {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: -0.01em;
    font-weight: 400;
}

@media (min-width: 768px) {
    html[lang="en"] .section-description,
    html[lang="en"] .hero-description,
    html[lang="en"] .page-hero-description {
        font-size: 19px;
    }
}

html[lang="en"] .section-label {
    font-size: 13px;
    letter-spacing: 0.08em;
    font-weight: 600;
}

html[lang="en"] .service-title,
html[lang="en"] .culture-value-title,
html[lang="en"] .mv-card-title,
html[lang="en"] .wwd-title,
html[lang="en"] .value-title,
html[lang="en"] .principle-title,
html[lang="en"] .benefit-title,
html[lang="en"] .ci-meaning-title {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: 600;
}

html[lang="en"] .service-desc,
html[lang="en"] .culture-value-text,
html[lang="en"] .mv-card-text,
html[lang="en"] .wwd-text,
html[lang="en"] .value-text,
html[lang="en"] .principle-text,
html[lang="en"] .benefit-text,
html[lang="en"] .ci-meaning-text {
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: -0.01em;
    font-weight: 400;
}

html[lang="en"] .contact-intro,
html[lang="en"] .company-info-intro {
    font-size: 17px;
    line-height: 1.7;
}

html[lang="en"] .cta-title {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    html[lang="en"] .cta-title {
        font-size: 36px;
    }
}

html[lang="en"] .cta-description {
    font-size: 17px;
    line-height: 1.6;
}

html[lang="en"] .nav-link,
html[lang="en"] .nav-link-mobile {
    font-size: 15px;
    letter-spacing: 0;
    font-weight: 500;
}

html[lang="en"] .btn {
    font-size: 15px;
    letter-spacing: 0;
    font-weight: 500;
}

html[lang="en"] .footer-tagline {
    font-size: 15px;
    line-height: 1.5;
}

html[lang="en"] .footer-column a {
    font-size: 15px;
}

html[lang="en"] .image-banner-content h2 {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    html[lang="en"] .image-banner-content h2 {
        font-size: 36px;
    }
}

html[lang="en"] .image-banner-content p {
    font-size: 17px;
    line-height: 1.6;
}

html[lang="en"] .mission-card h3,
html[lang="en"] .mission-card-content h3 {
    font-size: 22px;
    letter-spacing: -0.02em;
}

html[lang="en"] .mission-card p,
html[lang="en"] .mission-card-content p {
    font-size: 15px;
    line-height: 1.7;
}

html[lang="en"] .stat-number {
    font-size: 36px;
    letter-spacing: -0.03em;
}

@media (min-width: 768px) {
    html[lang="en"] .stat-number {
        font-size: 48px;
    }
}

html[lang="en"] .stat-label {
    font-size: 14px;
    letter-spacing: 0;
}

html[lang="en"] .company-info-title {
    font-size: 28px;
    letter-spacing: -0.02em;
}

html[lang="en"] .detail-label {
    font-size: 13px;
    letter-spacing: 0.02em;
}

html[lang="en"] .detail-value {
    font-size: 15px;
}

html[lang="en"] .business-area-card h3,
html[lang="en"] .partner-card h3 {
    font-size: 18px;
    letter-spacing: -0.01em;
}

html[lang="en"] .business-area-card li,
html[lang="en"] .partner-card p {
    font-size: 15px;
    line-height: 1.6;
}

html[lang="en"] .ci-brand-message h3 {
    font-size: 24px;
    letter-spacing: -0.02em;
}

html[lang="en"] .ci-brand-message p {
    font-size: 16px;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Utility Classes ===== */
.hidden { display: none !important; }

.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile { display: inline; }
}

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

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

@media (min-width: 1024px) {
    .container { padding: 0 60px; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 500;
    font-size: 15px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--gradient-primary);
    background-size: 200% auto;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(79, 106, 245, 0.35), 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 106, 245, 0.45), 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(79, 106, 245, 0.5);
    box-shadow: 0 4px 20px rgba(79, 106, 245, 0.15);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(79, 106, 245, 0.15);
}

/* CTA Accent Button - Bright Yellow/Gold */
.btn-cta-accent {
    background: linear-gradient(135deg, #FFD93D 0%, #FFC107 50%, #FFB300 100%);
    color: #1a1a28;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-cta-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-cta-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #FFE066 0%, #FFD93D 50%, #FFC107 100%);
}

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

.btn-rounded { border-radius: 100px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; }

/* ===== Language Switcher ===== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-400);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lang-btn:hover {
    color: var(--white);
}

.lang-btn.active {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: 0 2px 8px rgba(79, 106, 245, 0.3);
}

.header-actions {
    display: none;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 16px;
    }
}

/* Mobile language switcher */
.mobile-lang-switcher {
    display: flex;
    justify-content: center;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-switcher .lang-switcher {
    background: rgba(255, 255, 255, 0.08);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    transition: opacity var(--transition-fast);
}

.logo:hover { opacity: 0.8; }

.logo-image {
    height: 32px;
    width: auto;
}

@media (min-width: 768px) {
    .logo-image { height: 36px; }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .nav-desktop { display: flex; }
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
    transition: all var(--transition-fast);
    letter-spacing: -0.01em;
}

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

.nav-link.active {
    color: var(--white);
    font-weight: 600;
}

.header-cta-desktop {
    display: none;
}

@media (min-width: 768px) {
    .header-cta-desktop { display: block; }
}

.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

.nav-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 15, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.nav-mobile-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-mobile-content > * {
    margin-bottom: 16px;
}

.nav-mobile-content > *:last-child {
    margin-bottom: 0;
}

.nav-link-mobile {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-300);
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.nav-link-mobile:hover { color: var(--primary); }

.nav-link-mobile.active {
    color: var(--white);
    font-weight: 600;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 15, 0.6) 0%,
        rgba(10, 10, 15, 0.8) 50%,
        rgba(10, 10, 15, 0.95) 100%
    );
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(79, 106, 245, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 80px);
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(79, 106, 245, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(79, 106, 245, 0.3);
    border-radius: 100px;
    margin-bottom: 32px;
    width: fit-content;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(79, 106, 245, 0.1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: 0 0 10px rgba(79, 106, 245, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px rgba(79, 106, 245, 0.6); }
    50% { opacity: 0.8; transform: scale(0.9); box-shadow: 0 0 20px rgba(79, 106, 245, 0.8); }
}

.hero-badge span:last-child {
    font-size: 13px;
    font-weight: 500;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .hero-title { font-size: 56px; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 72px; letter-spacing: -0.04em; }
}

.gradient-text {
    background: var(--gradient-primary);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.hero-description {
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray-400);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 600px;
}

@media (min-width: 768px) {
    .hero-description { font-size: 19px; }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 480px) {
    .hero-buttons { flex-direction: row; }
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .hero-stats { gap: 48px; }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .stat-number { font-size: 40px; }
}

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

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: none;
}

@media (min-width: 768px) {
    .stat-divider { display: block; }
}


/* ===== Section Styles ===== */
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .section-title { font-size: 40px; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 48px; letter-spacing: -0.03em; }
}

.section-description {
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray-500);
    font-weight: 400;
}

@media (min-width: 768px) {
    .section-description { font-size: 18px; }
}

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

/* ===== Services Section ===== */
.services-section {
    padding: var(--section-padding-mobile) 0;
    background: var(--off-white);
}

@media (min-width: 768px) {
    .services-section { padding: var(--section-padding) 0; }
}

.services-section .section-title { color: var(--black); }
.services-section .section-description { color: var(--gray-600); }

.services-grid {
    display: grid;
    gap: 24px;
}

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

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(79, 106, 245, 0.1);
    border-color: rgba(79, 106, 245, 0.3);
}

.service-card-image {
    height: 180px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-card-content {
    padding: 28px;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 106, 245, 0.1) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.service-icon svg {
    color: var(--primary);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    box-shadow: 0 8px 20px rgba(79, 106, 245, 0.3);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    transition: color var(--transition-fast);
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ===== Mission Section ===== */
.mission-section {
    padding: var(--section-padding-mobile) 0;
    background: var(--black);
}

@media (min-width: 768px) {
    .mission-section { padding: var(--section-padding) 0; }
}

.mission-layout {
    display: grid;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .mission-layout { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.mission-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mission-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .mission-image { height: 500px; }
}

.mission-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 106, 245, 0.3) 0%, rgba(139, 92, 246, 0.2) 50%, transparent 100%);
}

.mission-content .section-title { color: var(--white); }

.mission-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.mission-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.mission-card:hover {
    border-color: rgba(79, 106, 245, 0.4);
    background: linear-gradient(145deg, rgba(79, 106, 245, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
    box-shadow: 0 8px 32px rgba(79, 106, 245, 0.15);
}

.mission-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 20px rgba(79, 106, 245, 0.3);
}

.mission-card-icon svg { color: var(--white); }

.mission-card-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

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

/* ===== About Section ===== */
.about-section {
    padding: var(--section-padding-mobile) 0;
    background: var(--off-white);
}

@media (min-width: 768px) {
    .about-section { padding: var(--section-padding) 0; }
}

.about-header {
    margin-bottom: 60px;
}

.about-header .section-title { color: var(--black); }
.about-header .section-description { color: var(--gray-600); max-width: 600px; }

.about-content {
    display: grid;
    gap: 48px;
}

@media (min-width: 1024px) {
    .about-content { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-image-main {
    grid-column: span 2;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-lg);
}

.about-image-sub {
    border-radius: 16px;
    overflow: hidden;
    height: 180px;
    box-shadow: var(--shadow-md);
}

.about-image-main img,
.about-image-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image-main:hover img,
.about-image-sub:hover img {
    transform: scale(1.05);
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.company-info-item {
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.company-info-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(79, 106, 245, 0.2);
}

.info-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}

.business-areas {
    padding: 28px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.business-areas h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.business-areas ul {
    list-style: none;
}

.business-areas li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.business-areas li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 120px 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 40%);
    animation: cta-glow 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 100% 100%;
    pointer-events: none;
}

.cta-section .cta-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-section .cta-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

.cta-section .cta-bg-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    background: #fff;
    top: -100px;
    right: 10%;
    animation: float-shape 12s ease-in-out infinite;
}

.cta-section .cta-bg-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    background: rgba(139, 92, 246, 0.8);
    bottom: -50px;
    left: 15%;
    animation: float-shape 10s ease-in-out infinite reverse;
}

.cta-section .cta-bg-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    background: rgba(6, 182, 212, 0.6);
    top: 50%;
    left: 5%;
    animation: float-shape 14s ease-in-out infinite 2s;
}

.cta-section .cta-bg-shape:nth-child(4) {
    width: 180px;
    height: 180px;
    background: #fff;
    bottom: 20%;
    right: 5%;
    animation: float-shape 11s ease-in-out infinite 1s;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.05); }
    50% { transform: translate(0, 20px) scale(0.95); }
    75% { transform: translate(-20px, -10px) scale(1.02); }
}

@keyframes cta-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

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

.cta-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

@media (min-width: 480px) {
    .cta-title { font-size: 28px; }
}

@media (min-width: 768px) {
    .cta-title { font-size: 36px; margin-bottom: 20px; }
}

@media (min-width: 1024px) {
    .cta-title { font-size: 40px; }
}

.cta-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .cta-description { font-size: 17px; margin-bottom: 36px; }
}

/* ===== Contact Section ===== */
.contact-section {
    padding: var(--section-padding-mobile) 0;
    background: var(--black);
}

@media (min-width: 768px) {
    .contact-section { padding: var(--section-padding) 0; }
}

.contact-layout {
    display: grid;
    gap: 60px;
}

@media (min-width: 1024px) {
    .contact-layout { grid-template-columns: 1fr 1.2fr; gap: 100px; }
}

.contact-info-side .section-title { color: var(--white); }

.contact-intro {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Simplified Contact Layout */
.contact-simple {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-simple .section-label {
    display: inline-block;
    margin-bottom: 16px;
}

.contact-simple .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-simple .contact-intro {
    margin-bottom: 48px;
}

.contact-details-centered {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details-centered .contact-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
    min-height: 160px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.contact-details-centered .contact-item .contact-icon {
    margin-bottom: 12px;
}

.contact-details-centered .contact-item .contact-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 4px;
}

.contact-details-centered .contact-item .contact-value {
    font-size: 13px;
    word-break: break-all;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
}

.contact-item:hover {
    border-color: rgba(79, 106, 245, 0.4);
    box-shadow: 0 8px 24px rgba(79, 106, 245, 0.12);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(79, 106, 245, 0.3);
}

.contact-icon svg { color: var(--white); }

.contact-label {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

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

.contact-form-side {
    padding: 40px;
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

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

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

.form-row {
    display: grid;
    gap: 24px;
}

@media (min-width: 600px) {
    .form-row { grid-template-columns: repeat(2, 1fr); }
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition-base);
}

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

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(79, 106, 245, 0.1);
    box-shadow: 0 0 0 3px rgba(79, 106, 245, 0.15);
}

.form-textarea { resize: none; }

/* ===== Footer ===== */
.footer {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--black) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 106, 245, 0.3), transparent);
}

.footer-main {
    display: grid;
    gap: 48px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-main { grid-template-columns: 1.5fr 2fr; }
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
    transition: opacity var(--transition-fast);
}

.footer-logo:hover { opacity: 0.8; }

.footer-logo-image {
    height: 32px;
    width: auto;
}

.footer-tagline {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.footer-email {
    font-size: 15px;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity var(--transition-fast);
}

.footer-email:hover { opacity: 0.8; }

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

.footer-column h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

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

.footer-column a {
    font-size: 14px;
    color: var(--gray-500);
    transition: color var(--transition-fast);
    letter-spacing: -0.01em;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

.footer-company-info {
    font-size: 12px !important;
    color: var(--gray-700) !important;
}

/* ===== Sub Page Styles ===== */

/* Header Dark (for sub pages) */
.header-dark {
    background: rgba(26, 26, 26, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link-mobile.active {
    color: var(--primary);
}

/* Page Hero */
.page-hero {
    padding: 160px 0 80px;
    background: var(--black);
    text-align: center;
}

@media (min-width: 768px) {
    .page-hero { padding: 180px 0 100px; }
}

.page-hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .page-hero-title { font-size: 48px; letter-spacing: -1.5px; }
}

@media (min-width: 1024px) {
    .page-hero-title { font-size: 56px; }
}

.page-hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .page-hero-description { font-size: 18px; }
}

/* Content Section */
.content-section {
    padding: var(--section-padding-mobile) 0;
}

@media (min-width: 768px) {
    .content-section { padding: var(--section-padding) 0; }
}

.content-section.bg-dark {
    background: var(--black);
}

.content-section.bg-light {
    background: var(--off-white);
}

.content-section.bg-light .section-title {
    color: var(--black);
}

.content-section.bg-light .section-description {
    color: var(--gray-600);
}

.content-section.bg-light .ci-logo-info h3 {
    color: var(--black);
}

.content-section.bg-light .ci-meaning-title {
    color: var(--black);
}

.content-section.bg-light .ci-meaning-text {
    color: var(--gray-600);
}

.content-section.bg-light .ci-color-info {
    color: var(--gray-700);
}

.text-white { color: var(--white) !important; }

/* Mission & Vision Page */
.mission-vision-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .mission-vision-grid { grid-template-columns: repeat(2, 1fr); }
}

.mv-card {
    padding: 48px;
    background: var(--off-white);
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.mv-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.1);
}

.mv-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    margin-bottom: 28px;
}

.mv-card-icon svg { color: var(--white); }

.mv-card-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.mv-card-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.mv-card-quote {
    padding: 20px 24px;
    background: rgba(37, 99, 235, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    font-style: italic;
}

/* What We Do Grid */
.what-we-do-grid {
    display: grid;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .what-we-do-grid { grid-template-columns: repeat(2, 1fr); }
}

.wwd-card {
    padding: 36px;
    background: var(--gray-900);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.wwd-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-4px);
}

.wwd-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 16px;
}

.wwd-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.wwd-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-400);
}

/* Values Grid */
.values-grid {
    display: grid;
    gap: 24px;
}

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

@media (min-width: 1024px) {
    .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
    padding: 32px;
    background: var(--off-white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all var(--transition-base);
}

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

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    margin: 0 auto 20px;
}

.value-icon svg { color: var(--white); }

.value-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.value-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Culture Page */
.culture-values-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .culture-values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .culture-values-grid { grid-template-columns: repeat(4, 1fr); }
}

.culture-value-card {
    padding: 36px 28px;
    background: var(--off-white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all var(--transition-base);
}

.culture-value-card:hover {
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.1);
}

.culture-value-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
    border-radius: 18px;
    margin: 0 auto 24px;
}

.culture-value-icon svg { color: var(--primary); }

.culture-value-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.culture-value-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Principles Grid */
.principles-grid {
    display: grid;
    gap: 24px;
}

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

@media (min-width: 1024px) {
    .principles-grid { grid-template-columns: repeat(3, 1fr); }
}

.principle-card {
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

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

.principle-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 16px;
}

.principle-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.principle-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    gap: 24px;
}

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

@media (min-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
    padding: 32px;
    background: var(--off-white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

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

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    margin-bottom: 20px;
}

.benefit-icon svg { color: var(--white); }

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.benefit-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Company Page */
.company-info-layout {
    display: grid;
    gap: 48px;
}

@media (min-width: 1024px) {
    .company-info-layout { grid-template-columns: 1.5fr 1fr; gap: 80px; }
}

.company-info-main {
    padding: 48px;
    background: var(--off-white);
    border-radius: 24px;
}

.company-info-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.company-info-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.company-details-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 600px) {
    .company-details-grid { grid-template-columns: repeat(2, 1fr); }
}

.company-detail-item {
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.detail-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}

.company-info-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.business-area-card,
.partner-card {
    padding: 32px;
    background: var(--off-white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}

.business-area-card h3,
.partner-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.business-area-card ul {
    list-style: none;
}

.business-area-card li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.business-area-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

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

/* CI Section */
.ci-showcase {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.ci-logo-display {
    text-align: center;
}

.ci-logo-box {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 0 auto 24px;
}

.ci-logo-img {
    width: 120px;
    height: 120px;
}

.ci-logo-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.ci-color-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

.ci-color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.ci-meaning-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .ci-meaning-grid { grid-template-columns: repeat(2, 1fr); }
}

.ci-meaning-card {
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.ci-meaning-card:hover {
    border-color: var(--primary);
}

.ci-meaning-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
    border-radius: 14px;
    margin-bottom: 20px;
}

.ci-meaning-icon svg { color: var(--primary); }

.ci-meaning-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.ci-meaning-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-600);
}

.ci-meaning-text strong {
    color: var(--primary-dark);
}

.ci-brand-message {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.ci-brand-message h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.ci-brand-message p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.ci-brand-message strong {
    color: var(--white);
}

/* Location Section */
.location-layout {
    display: grid;
    gap: 48px;
}

@media (min-width: 1024px) {
    .location-layout { grid-template-columns: 2fr 1fr; }
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    background: var(--gray-200);
    min-height: 400px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-info-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--off-white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.location-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    flex-shrink: 0;
}

.location-icon svg { color: var(--white); }

.location-info-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.location-info-item p {
    font-size: 15px;
    color: var(--gray-700);
}

.location-info-item a {
    color: var(--primary);
    transition: opacity var(--transition-fast);
}

.location-info-item a:hover { opacity: 0.8; }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Animation Classes - Initial State */
.animate-on-scroll {
    opacity: 0;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-40px);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(40px);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
}

/* Animation Classes - Animated State */
.animate-on-scroll.animated {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-up.animated {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-left.animated {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-right.animated {
    animation: fadeInRight 0.8s ease forwards;
}

.animate-scale.animated {
    animation: scaleIn 0.8s ease forwards;
}

/* Staggered Animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* ===== Enhanced Motion Effects ===== */

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pulse-soft {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

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

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(79, 106, 245, 0.3); }
    50% { box-shadow: 0 0 40px rgba(79, 106, 245, 0.5), 0 0 60px rgba(79, 106, 245, 0.2); }
}

/* Card Hover Effects */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.service-card:hover .service-icon {
    animation: bounce-soft 0.6s ease infinite;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Culture Value Card Hover */
.culture-value-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.culture-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(79, 106, 245, 0.15);
}

.culture-value-card:hover .culture-value-icon {
    animation: wiggle 0.5s ease;
}

/* Mission Vision Card */
.mv-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mv-card:hover {
    transform: translateY(-8px);
}

.mv-card:hover .mv-card-icon {
    animation: pulse-soft 1s ease infinite;
}

/* Value Card Hover */
.value-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.value-card:hover .value-icon {
    animation: bounce-soft 0.6s ease infinite;
}

/* Principle Card */
.principle-card {
    transition: all 0.4s ease;
}

.principle-card:hover {
    transform: translateX(10px);
}

.principle-card:hover .principle-number {
    transform: scale(1.1);
    color: var(--primary);
}

.principle-number {
    transition: all 0.3s ease;
}

/* Benefit Card */
.benefit-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-card:hover .benefit-icon {
    animation: float 2s ease infinite;
}

/* WWD Card (What We Do) */
.wwd-card {
    transition: all 0.4s ease;
}

.wwd-card:hover {
    transform: translateY(-5px);
    background: rgba(79, 106, 245, 0.08);
}

.wwd-card:hover .wwd-number {
    transform: scale(1.2);
    color: var(--primary-light);
}

.wwd-number {
    transition: all 0.3s ease;
}

/* CI Meaning Card */
.ci-meaning-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ci-meaning-card:hover {
    transform: translateY(-10px);
}

.ci-meaning-card:hover .ci-meaning-icon {
    animation: rotate-slow 3s linear infinite;
}

/* Button Hover Enhancements */
.btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary:hover svg,
.btn-white:hover svg,
.btn-cta-accent:hover svg {
    transform: translateX(4px);
    transition: transform 0.3s ease;
}

/* Nav Link Hover Effect */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

/* Logo Hover */
.logo:hover .logo-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.logo-image {
    transition: transform 0.3s ease;
}

/* Footer Link Hover */
.footer-column a {
    position: relative;
    transition: all 0.3s ease;
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-column a:hover::before {
    width: 100%;
}

/* Contact Item Hover */
.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item:hover .contact-icon {
    animation: pulse-soft 1s ease infinite;
    background: var(--primary);
}

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

/* Stat Counter Animation */
.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-item:hover .stat-number {
    animation: pulse-soft 1s ease infinite;
}

/* Image Banner Parallax Effect */
.image-banner img {
    transition: transform 8s ease-out;
}

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

/* Section Label Animation */
.section-label {
    position: relative;
    display: inline-block;
}

.section-label::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 10px;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.animated .section-label::before {
    animation: expandLine 0.5s ease 0.3s forwards;
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 10px; }
}

/* Gradient Text Shimmer */
.gradient-text {
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

/* Hero Stats Float */
.hero-stats .stat-item:nth-child(1) { animation: float 4s ease-in-out infinite; }
.hero-stats .stat-item:nth-child(2) { animation: float 4s ease-in-out infinite 0.5s; }
.hero-stats .stat-item:nth-child(3) { animation: float 4s ease-in-out infinite 1s; }

/* Loading State for Images */
.page-hero-bg img,
.image-banner img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.page-hero-bg img.loaded,
.image-banner img.loaded {
    opacity: 1;
}

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

/* Magnetic Button Effect (applied via JS) */
.magnetic-btn {
    transition: transform 0.2s ease;
}

/* Tilt Card Effect */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

/* Reveal Animation for Text */
.reveal-text {
    overflow: hidden;
}

.reveal-text span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-text.animated span {
    transform: translateY(0);
}

/* Cursor Trail Effect Container */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(79, 106, 245, 0.3);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease;
    mix-blend-mode: screen;
}

/* Smooth Scroll Behavior */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ===== Page Hero with Background Image ===== */
.page-hero-with-image {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(26, 26, 26, 0.85) 100%
    );
}

.page-hero-with-image .container {
    position: relative;
    z-index: 1;
}

/* ===== Image Section Styles ===== */
.image-text-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-text-section.reverse {
    direction: rtl;
}

.image-text-section.reverse > * {
    direction: ltr;
}

.image-section-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-section-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-section-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.image-section-content .highlight-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

/* Dark background variant */
.bg-dark .image-section-content h2 {
    color: var(--white);
}

.bg-dark .image-section-content p {
    color: var(--gray-400);
}

/* ===== Feature Image Grid ===== */
.feature-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-image-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-image-card-content {
    padding: 24px;
}

.feature-image-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.feature-image-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== Full Width Image Banner ===== */
.image-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.image-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(26, 26, 26, 0.9) 0%,
        rgba(26, 26, 26, 0.4) 100%
    );
    display: flex;
    align-items: center;
}

.image-banner-content {
    max-width: 600px;
    padding-left: 80px;
}

.image-banner-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.image-banner-content p {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.7;
}

/* ===== Responsive Styles for Images & Animations ===== */
@media (max-width: 1024px) {
    .image-text-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-text-section.reverse {
        direction: ltr;
    }

    .feature-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-banner-content {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .page-hero-with-image {
        min-height: 400px;
    }

    .feature-image-grid {
        grid-template-columns: 1fr;
    }

    .image-section-content h2 {
        font-size: 28px;
    }

    .image-banner {
        height: 350px;
    }

    .image-banner-content {
        padding: 20px;
    }

    .image-banner-content h2 {
        font-size: 28px;
    }

    .image-banner-content p {
        font-size: 16px;
    }
}
