:root {
    --primary: #0da6f2;
    /* Custom color from Stitch: #0da6f2 */
    --primary-light: #4dbfff;
    --primary-dark: #0088cc;
    --bg-dark: #0a0c10;
    --bg-card: #161b22;
    --text-main: #e6edf3;
    --text-muted: #8b949e;
    --border: #30363d;
    --section-padding: 80px 0;
    --container-width: 1100px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-dark);
    scroll-behavior: smooth;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    /* Roundness from Stitch: ROUND_EIGHT */
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 166, 242, 0.2);
}

.btn-secondary {
    background-color: white;
    color: var(--bg-dark);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Header */
.main-header {
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-symbol {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(13, 166, 242, 0.3));
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--primary);
}

.footer-brand .logo-symbol {
    height: 32px;
}

.footer-brand .logo-text {
    font-size: 1.1rem;
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(48, 54, 61, 0.5);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.lang-btn {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: var(--text-muted) !important;
    text-decoration: none;
    transition: var(--transition);
}

.lang-btn.active {
    color: var(--primary) !important;
}

.lang-btn:hover {
    color: var(--text-main) !important;
}

.lang-divider {
    color: var(--border);
    font-size: 0.8rem;
    pointer-events: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 200px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-bg-accent {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: var(--primary);
    filter: blur(200px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 1;
}

/* Services */
.services {
    padding: var(--section-padding);
    background-color: rgba(22, 27, 34, 0.3);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
}

.section-subtitle {
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
}

.service-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Market Presence */
.market {
    padding: var(--section-padding);
}

.context-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.check-list .material-icons {
    color: var(--primary);
}

.map-placeholder {
    height: 400px;
    background: rgba(13, 166, 242, 0.05);
    border: 1px dashed var(--border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.node {
    position: absolute;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.node-korea {
    top: 20%;
    right: 20%;
}

.node-singapore {
    bottom: 20%;
    left: 30%;
}

.node-malaysia {
    bottom: 30%;
    left: 20%;
}

/* Management */
.management {
    padding: var(--section-padding);
}

.quote-card {
    padding: 60px;
    background: linear-gradient(135deg, var(--bg-card), rgba(13, 166, 242, 0.05));
    border-radius: 24px;
    border: 1px solid var(--border);
}

.director-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.director-photo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.director-photo-placeholder .material-icons {
    font-size: 40px;
    color: var(--text-muted);
}

.director-meta h3 {
    margin-bottom: 4px;
    font-size: 1.5rem;
}

.director-meta .role {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.5;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -40px;
    color: var(--primary);
    opacity: 0.2;
}

/* CTA */
.cta {
    padding: 100px 0;
    text-align: center;
}

.cta-container {
    max-width: 800px;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* Footer */
.main-footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-offices h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links ul,
.footer-offices ul {
    list-style: none;
}

.footer-links li,
.footer-offices li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-offices li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-offices .material-icons {
    font-size: 18px;
    color: var(--primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--text-main);
}

/* Responsive */
@media (max-width: 992px) {
    .context-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-nav {
        display: none;
        /* Mobile menu needed */
    }
}