*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Noto Sans', sans-serif;
      font-weight: 400;
      color: #1a1a1a;
      background: #fff;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    :root {
      --brand:      #4338ca;
      --brand-dark: #3730a3;
      --text-dark:  #1a1a1a;
      --text-mid:   #404040;
      --text-muted: #767676;
      --border:     #e5e5e5;
      --surface:    #f5f5f5;
      --hero-grad:  linear-gradient(135deg, #0f2c8a 0%, #3b3bba 28%, #5a3fd4 52%, #7c3aed 72%, #0ea5e9 100%);
    }

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

    /* BUTTONS */
    .btn-primary {
      display: inline-block; background: var(--brand); color: #fff;
      padding: 13px 28px; font-family: 'Noto Sans', sans-serif; font-size: 15px;
      font-weight: 500; border-radius: 4px; text-decoration: none; border: none;
      cursor: pointer; transition: background 0.15s, transform 0.1s;
    }
    .btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
    .btn-outline-white {
      display: inline-block; background: transparent; color: #fff;
      padding: 12px 28px; font-family: 'Noto Sans', sans-serif; font-size: 15px;
      font-weight: 400; border-radius: 4px; text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.5); cursor: pointer;
      transition: border-color 0.15s, background 0.15s;
    }
    .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
    .btn-outline-dark {
      display: inline-block; background: transparent; color: var(--brand);
      padding: 12px 28px; font-family: 'Noto Sans', sans-serif; font-size: 15px;
      font-weight: 500; border-radius: 4px; text-decoration: none;
      border: 1.5px solid var(--brand); cursor: pointer;
      transition: background 0.15s, color 0.15s;
    }
    .btn-outline-dark:hover { background: var(--brand); color: #fff; }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }

    /* ══ NAV ══ */
    .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: #ffffff; box-shadow: 0 1px 0 var(--border); overflow: visible; }
    .nav-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 2rem;
      height: 68px; display: flex; align-items: center; justify-content: space-between;
    }
    .nav-left { display: flex; align-items: center; gap: 1.5rem; }
    .nav-logo { display: inline-block; text-decoration: none; line-height: 0; }
    .nav-logo img { height: 44px; width: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
    .nav-links li { display: flex; align-items: center; }
    .nav-links a { color: var(--text-mid); text-decoration: none; font-size: 14px; padding: 8px 16px; border-radius: 2px; transition: color 0.15s, background 0.15s; white-space: nowrap; }
    .nav-links a:hover { color: var(--text-dark); background: var(--surface); }

    .nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
    .nav-cta { margin-left: 0; background: var(--brand); color: #fff; border-radius: 4px; font-weight: 500; font-size: 14px; padding: 8px 20px; text-decoration: none; white-space: nowrap; transition: background 0.15s; }
    .nav-cta:hover { background: var(--brand-dark); }
    /* Dropdown */
    .nav-dropdown { position: relative; }
    .nav-dropdown > a { display: inline-flex; align-items: center; gap: 5px; padding: 8px 16px; }
    .nav-dropdown > a::after { content: ''; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-1px); display: inline-block; transition: transform 0.2s; }
    .nav-dropdown:hover > a::after { transform: rotate(-135deg) translateY(1px); }
    .nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; padding-top: 12px; z-index: 300; }
    .nav-dropdown:hover .nav-dropdown-menu { display: block; }
    .nav-dropdown-menu-inner { background: #fff; border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); min-width: 180px; padding: 6px; }
    .nav-dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 14px; font-size: 14px; color: var(--text-mid); text-decoration: none; border-radius: 5px; transition: background 0.15s, color 0.15s; white-space: nowrap; }
    .nav-dropdown-menu a svg { stroke: var(--brand); width: 18px; height: 18px; stroke-width: 2; }
    .nav-dropdown-menu a:hover { background: #eef2ff; color: var(--brand); }

    /* ══ HERO ══ */
    .hero {
      background: var(--hero-grad);
      min-height: 100vh; display: flex; align-items: center;
      padding: 68px 0 0; position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 70% 60% at 75% 50%, rgba(6,182,212,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 15% 80%, rgba(99,102,241,0.25) 0%, transparent 60%);
    }
    .hero::after {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 40% 50% at 85% 15%, rgba(255,255,255,0.07) 0%, transparent 50%),
        radial-gradient(ellipse 30% 40% at 10% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(ellipse 60% 30% at 50% 90%, rgba(99,102,241,0.15) 0%, transparent 60%);
    }
    .hero-blobs { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
    .hero-inner {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; padding: 0 4rem;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(255,255,255,0.7); margin-bottom: 1.5rem;
      animation: fadeUp 0.7s ease both;
    }
    .hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1.5px; background: rgba(255,255,255,0.5); }
    .hero-title {
      font-family: 'Noto Sans', sans-serif; font-size: clamp(42px, 5.5vw, 72px);
      font-weight: 700; color: #fff; line-height: 1.08; margin-bottom: 1.5rem;
      max-width: 800px;
      animation: fadeUp 0.7s ease 0.1s both;
    }
    .hero-title em {  font-weight: 500; color: rgba(255,255,255,0.75); }
    .hero-desc {
      font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.75;
      margin-bottom: 2.5rem; max-width: 620px; font-weight: 300;
      animation: fadeUp 0.7s ease 0.2s both;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.7s ease 0.3s both; }

    /* Hero right card */
    .hero-card {
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
      border-radius: 12px; padding: 2rem; backdrop-filter: blur(12px);
      animation: fadeUp 0.8s ease 0.35s both;
    }
    .hero-card-title {
      font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(255,255,255,0.5); margin-bottom: 1.5rem;
    }
    .hero-card-stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
      background: rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; margin-bottom: 1.5rem;
    }
    .hero-stat { background: rgba(0,0,0,0.15); padding: 1.25rem 1rem; text-align: center; }
    .hero-stat-num { font-family: 'Noto Sans', sans-serif; font-size: 34px; font-weight: 700; color: #fff; line-height: 1; display: block; margin-bottom: 4px; }
    .hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.4; }
    .hero-card-quote { font-family: 'Noto Sans', sans-serif;  font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; }

    /* ══ PILLARS ══ */
    .pillars-strip { background: #fff; border-bottom: 1px solid var(--border); display: flex; }
    .pillar-item { flex: 1; padding: 1.5rem 1rem; text-align: center; border-right: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; gap: 5px; transition: background 0.15s; }
    .pillar-item:last-child { border-right: none; }
    .pillar-item:hover { background: var(--surface); }
    .pillar-icon { width: 28px; height: 28px; background: var(--surface); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .pillar-icon svg { width: 14px; height: 14px; stroke: var(--brand); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .pillar-num { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); }
    .pillar-name { font-size: 14px; font-weight: 500; color: var(--text-dark); }

    /* ══ WHAT WE DO ══ */
    .what-we-do { padding: 5rem 0; }
    .wwd-card { background: #fff; border-radius: 18px; box-shadow: 0 4px 32px rgba(15,42,46,.07); overflow: hidden; }
    .wwd-top { padding: 52px 56px 44px; }
    .wwd-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #36C98A; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
    .wwd-eyebrow::after { content: ''; width: 40px; height: 1px; background: #e8edf0; }
    .wwd-headline { font-family: 'Noto Sans', sans-serif; font-size: clamp(24px, 2.8vw, 38px); font-weight: 700; color: #132027; line-height: 1.2; max-width: 560px; margin-bottom: 16px; }
    .wwd-sub { font-size: 16px; color: #5A6B73; line-height: 1.75; max-width: 560px; font-weight: 300; }
    .wwd-divider { height: 1px; background: #e8edf0; margin: 0 56px; }
    .wwd-pillars { display: grid; grid-template-columns: repeat(3, 1fr); }
    .wwd-pillar { padding: 40px 40px 48px; text-align: center; border-right: 1px solid #e8edf0; }
    .wwd-pillar:last-child { border-right: none; }
    .wwd-icon { width: 52px; height: 52px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; }
    .wwd-pillar h3 { font-size: 15px; font-weight: 600; color: #132027; margin-bottom: 10px; line-height: 1.35; }
    .wwd-pillar p { font-size: 14px; color: #5A6B73; line-height: 1.75; font-weight: 300; }
    @media (max-width: 768px) {
      .wwd-top { padding: 36px 24px 28px; }
      .wwd-divider { margin: 0 24px; }
      .wwd-pillars { grid-template-columns: 1fr; }
      .wwd-pillar { border-right: none; border-bottom: 1px solid #e8edf0; padding: 32px 24px; }
      .wwd-pillar:last-child { border-bottom: none; }
    }

    /* ══ CLIENTS ══ */
    .clients-bar { padding: 3rem 0; border-bottom: 1px solid var(--border); }
    .clients-label { text-align: center; font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2rem; }
    .clients-logos { display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; }
    .client-logo { font-size: 17px; font-weight: 600; color: #c0c0c0; letter-spacing: 0.02em; transition: color 0.2s; cursor: default; }
    .client-logo:hover { color: var(--brand); }

    /* ══ SECTION COMMON ══ */
    .section { padding: 6rem 0; }
    .section-alt { background: var(--surface); }
    .section-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); margin-bottom: 0.85rem; display: block; }
    .section-title { font-family: 'Noto Sans', sans-serif; font-size: clamp(28px, 3vw, 40px); font-weight: 700; color: var(--text-dark); line-height: 1.18; margin-bottom: 1.25rem; }
    .section-sub { font-size: 16px; color: var(--text-mid); line-height: 1.8; max-width: 560px; font-weight: 300; }

    /* ══ FEATURES ══ */
    .features-intro { max-width: 620px; margin-bottom: 3.5rem; }
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .feature-card { text-align: center;
      background: #fff; border: 1px solid var(--border); border-radius: 8px;
      padding: 2rem 1.75rem; transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
      position: relative; overflow: hidden;
    }
    .feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--hero-grad); opacity: 0; transition: opacity 0.2s; }
    .feature-card:hover { box-shadow: 0 8px 32px rgba(67,56,202,0.1); border-color: #c7d2fe; transform: translateY(-3px); }
    .feature-card:hover::before { opacity: 1; }
    .feature-icon { width: 56px; height: 56px; background: transparent; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
    .feature-icon svg { width: 22px; height: 22px; stroke: var(--brand); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .feature-card h3 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
    .feature-card p { font-size: 14px; color: var(--text-mid); line-height: 1.75; font-weight: 300; }

    /* ══ METHODOLOGY ══ */
    .method-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
    .method-steps { display: flex; flex-direction: column; }
    .method-step { display: flex; gap: 1.5rem; padding: 1.75rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
    .method-step:first-child { padding-top: 0; }
    .method-step:last-child { border-bottom: none; }
    .step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
    .step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 16px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
    .step-line { width: 1px; height: 32px; background: linear-gradient(to bottom, var(--brand), transparent); margin-top: 6px; }
    .method-step:last-child .step-line { display: none; }
    .step-body { padding-top: 8px; }
    .step-body h3 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
    .step-body p { font-size: 14px; color: var(--text-mid); line-height: 1.75; font-weight: 300; }
    .method-highlight { background: var(--hero-grad); border-radius: 12px; padding: 2.5rem; color: #fff; position: sticky; top: 80px; }
    .method-highlight h3 { font-family: 'Noto Sans', sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 1rem; line-height: 1.25; }
    .method-highlight p { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.75; font-weight: 300; margin-bottom: 2rem; }
    .method-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .method-tag { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 500; padding: 5px 14px; border-radius: 20px; }

    /* ══ TESTIMONIALS ══ */
    .testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 2rem; transition: box-shadow 0.2s, border-color 0.2s; }
    .testimonial-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); border-color: #c7d2fe; }
    .testimonial-card.featured { grid-column: span 2; background: #f0f4ff; border-color: #c7d2fe; }
    .stars { display: flex; gap: 3px; margin-bottom: 1rem; }
    .star { width: 14px; height: 14px; background: var(--brand); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
    .testimonial-text { font-size: 15px; color: var(--text-dark); line-height: 1.75; margin-bottom: 1.5rem; font-weight: 300; }
    .testimonial-card.featured .testimonial-text { font-family: 'Noto Sans', sans-serif; font-size: 17px;  }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: #fff; flex-shrink: 0; }
    .author-name { font-size: 14px; font-weight: 600; color: var(--text-dark); }
    .author-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    /* ══ CTA BAND ══ */
    .cta-band { background: var(--hero-grad); padding: 6rem 0; position: relative; overflow: hidden; }
    .cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(6,182,212,0.2) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 10% 50%, rgba(99,102,241,0.2) 0%, transparent 60%); pointer-events: none; }
    .cta-inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; padding: 0 2rem; }
    .cta-quote-text { font-family: 'Noto Sans', sans-serif;  font-size: 18px; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
    .cta-quote-attr { font-size: 13px; color: rgba(255,255,255,0.3); margin-bottom: 3.5rem; }
    .cta-title { font-family: 'Noto Sans', sans-serif; font-size: clamp(30px, 4vw, 46px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 1.25rem; }
    .cta-desc { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 2.5rem; font-weight: 300; }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ══ FOOTER ══ */
    footer { background: #111; padding: 4rem 0 2rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem; }
    .footer-brand-logo { font-family: 'Noto Sans', sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
    .footer-brand-logo span { color: #818cf8;  font-weight: 500; }
    .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.75; max-width: 260px; font-weight: 300; }
    .footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; font-weight: 300; transition: color 0.15s; }
    .footer-col a:hover { color: #fff; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
    .footer-social { display: flex; gap: 10px; }
    .footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 11px; font-weight: 600; transition: border-color 0.15s, color 0.15s; }
    .footer-social a:hover { border-color: #818cf8; color: #818cf8; }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 960px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-card { display: none; }
      .method-layout { grid-template-columns: 1fr; }
      .method-highlight { position: static; }
      .features-grid { grid-template-columns: 1fr 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .testimonial-card.featured { grid-column: span 1; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    /* ══ HAMBURGER ══ */
    .nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-drawer { display: none; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    .nav-drawer.open { display: block; }
    .nav-drawer ul { list-style: none; padding: 1rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 0; }
    .nav-drawer ul li a { display: block; padding: 13px 0; font-size: 16px; font-weight: 500; color: var(--text-dark); text-decoration: none; border-bottom: 1px solid var(--border); }
    .nav-drawer ul li:last-child a { border-bottom: none; }
    .nav-drawer-cta { color: var(--brand) !important; font-weight: 600 !important; }

    @media (max-width: 600px) {
      .section { padding: 4rem 0; }
      .features-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .pillars-strip { flex-wrap: wrap; }
      .pillar-item { flex: 1 0 33%; border-bottom: 1px solid var(--border); }
      /* Nav */
      .nav-links { display: none; }
      .hide-mobile { display: none; }
      .nav-hamburger { display: flex; }
      /* Hero */
      .hero { padding-bottom: 3rem; }
      .hero-inner { padding: 0 1.25rem; }
      .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
      .hero-actions a { width: 100%; text-align: center; }
      /* What We Do card */
      .wwd-card { border-radius: 12px; }
      .wwd-top { padding: 28px 20px 22px; }
      .wwd-divider { margin: 0 20px; }
      .wwd-pillar { padding: 24px 20px; }
    }

    /* ══ LANG SWITCHER ══ */
    .lang-switcher { position: relative; display: flex; align-items: center; margin-left: 8px; }
    .lang-btn { display: flex; align-items: center; gap: 6px; background: none; border: 1.5px solid var(--border); border-radius: 6px; padding: 6px 10px; cursor: pointer; font-family: 'Noto Sans', sans-serif; font-size: 13px; font-weight: 500; color: var(--text-mid); transition: border-color 0.15s, color 0.15s; }
    .lang-btn:hover { border-color: var(--brand); color: var(--brand); }
    .lang-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
    .lang-dropdown { display: none; position: absolute; top: 100%; right: 0; padding-top: 12px; z-index: 300; }
    .lang-switcher:hover .lang-dropdown { display: block; }
    .lang-dropdown-inner { background: #fff; border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); min-width: 150px; padding: 6px; }
    .lang-option { display: flex; align-items: center; gap: 10px; padding: 9px 14px; font-size: 14px; color: var(--text-mid); text-decoration: none; border-radius: 5px; transition: background 0.15s, color 0.15s; }
    .lang-option:hover { background: #eef2ff; color: var(--brand); }
    .lang-option.active { color: var(--brand); font-weight: 600; }
    .lang-flag { font-size: 16px; line-height: 1; }
  

/* ══ PAGE-SPECIFIC STYLES ══ */
    body { font-family: 'Noto Sans', sans-serif; font-weight: 400; color: #1a1a1a; background: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
    .btn-primary { display: inline-block; background: var(--brand); color: #fff; padding: 13px 28px; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 500; border-radius: 4px; text-decoration: none; border: none; cursor: pointer; transition: background 0.15s, transform 0.1s; }
    .nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; height: 68px; display: flex; align-items: center; justify-content: space-between; }
    .nav-links { list-style: none; display: flex; gap: 0; align-items: center; }
    .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-mid); text-decoration: none; padding: 8px 16px; border-radius: 4px; transition: color 0.15s, background 0.15s; }
    .nav-links a:hover, .nav-links a.active { color: var(--brand); background: #eef2ff; }
    .nav-cta { background: var(--brand); color: #fff; padding: 9px 20px; border-radius: 4px; font-size: 14px; font-weight: 500; text-decoration: none; transition: background 0.15s; white-space: nowrap; }
    /* ══ BLOG HERO ══ */
    .blog-hero { background: var(--hero-grad); padding: 120px 0 72px; position: relative; overflow: hidden; }
    .blog-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(6,182,212,0.18) 0%, transparent 60%); pointer-events: none; }
    .blog-hero-inner { position: relative; z-index: 1; }
    .blog-hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 14px; display: block; }
    .blog-hero-title { font-family: 'Noto Sans', sans-serif; font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 18px; max-width: 640px; }
    .blog-hero-desc { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.8; max-width: 560px; font-weight: 300; }
    /* ══ FEATURED ARTICLE ══ */
    .featured-section { padding: 64px 0 0; }
    .featured-label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
    .featured-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .featured-card { display: grid; grid-template-columns: 1fr 1fr; border-radius: 14px; overflow: hidden; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 32px rgba(0,0,0,0.06); transition: box-shadow 0.2s; text-decoration: none; color: inherit; }
    .featured-card:hover { box-shadow: 0 12px 48px rgba(67,56,202,0.12); }
    .featured-img { min-height: 340px; background: linear-gradient(135deg, #0e2a5c 0%, #1e4d8c 40%, #0ea5e9 100%); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .featured-img-inner { text-align: center; padding: 2rem; }
    .featured-img-inner svg { opacity: 0.18; }
    .featured-img-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); }
    .featured-img-caption p { font-size: 13px; color: rgba(255,255,255,0.7);  }
    .featured-body { padding: 44px 48px; display: flex; flex-direction: column; justify-content: center; }
    .cat-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: var(--brand); padding: 4px 12px; border-radius: 3px; margin-bottom: 18px; }
    .cat-badge.sustainment { background: #0d9488; }
    .featured-body h2 { font-family: 'Noto Sans', sans-serif; font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 16px; }
    .featured-body p { font-size: 15px; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-bottom: 28px; }
    .featured-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
    .featured-meta span { display: flex; align-items: center; gap: 5px; }
    .read-link { font-size: 14px; font-weight: 600; color: var(--brand); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.15s; }
    .read-link:hover { gap: 10px; }
    /* ══ FILTER TABS ══ */
    .filter-section { padding: 48px 0 32px; }
    .filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
    .filter-tab { font-size: 13px; font-weight: 500; padding: 8px 18px; border-radius: 20px; border: 1.5px solid var(--border); background: #fff; color: var(--text-muted); cursor: pointer; transition: all 0.15s; }
    .filter-tab:hover { border-color: var(--brand); color: var(--brand); }
    .filter-tab.active { background: var(--brand); border-color: var(--brand); color: #fff; }
    /* ══ BLOG GRID ══ */
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-bottom: 80px; }
    .blog-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }
    .blog-card:hover { box-shadow: 0 8px 36px rgba(67,56,202,0.1); transform: translateY(-3px); }
    .blog-card-img { height: 196px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
    .blog-card-img svg { opacity: 0.15; }
    .blog-card-badge { position: absolute; top: 14px; right: 14px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--brand); padding: 4px 10px; border-radius: 3px; }
    .blog-card-badge.sustainment { background: #0d9488; }
    .blog-card-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
    .blog-card-body h3 { font-size: 16px; font-weight: 600; color: var(--text-dark); line-height: 1.4; margin-bottom: 10px; flex: 1; }
    .blog-card-body p { font-size: 13px; color: var(--text-mid); line-height: 1.75; font-weight: 300; margin-bottom: 18px; }
    .blog-card-footer { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 14px; margin-top: auto; }
    .blog-card-footer .read-more { font-size: 13px; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.15s; }
    .blog-card-footer .read-more:hover { gap: 8px; }
    /* Gradient covers per card */
    .grad-blue   { background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%); }
    .grad-teal   { background: linear-gradient(135deg, #0f2a2e 0%, #0d9488 100%); }
    .grad-purple { background: linear-gradient(135deg, #3730a3 0%, #7c3aed 100%); }
    .grad-indigo { background: linear-gradient(135deg, #1e1b4b 0%, #4338ca 100%); }
    .grad-sky    { background: linear-gradient(135deg, #0c4a6e 0%, #0ea5e9 100%); }
    .grad-slate  { background: linear-gradient(135deg, #1e293b 0%, #475569 100%); }
    /* Hidden cards (filter) */
    .blog-card.hidden { display: none; }
    .cta-band { background: var(--hero-grad); padding: 80px 0; position: relative; overflow: hidden; }
    .cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(6,182,212,0.2) 0%, transparent 60%); pointer-events: none; }
    .cta-title { font-family: 'Noto Sans', sans-serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 1rem; }
    .btn-outline-white { display: inline-block; background: transparent; color: #fff; padding: 12px 28px; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 400; border-radius: 4px; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.5); cursor: pointer; transition: border-color 0.15s, background 0.15s; }
      .featured-card { grid-template-columns: 1fr; }
      .featured-img { min-height: 220px; }
      .featured-body { padding: 32px; }
      .blog-grid { grid-template-columns: 1fr 1fr; }
      .blog-hero { padding: 100px 0 52px; }
      .blog-grid { grid-template-columns: 1fr; }
    body { font-family: 'Noto Sans', sans-serif; font-weight: 400; color: #1a1a1a; background: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
    .btn-primary { display: inline-block; background: var(--brand); color: #fff; padding: 13px 28px; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 500; border-radius: 4px; text-decoration: none; transition: background 0.15s, transform 0.1s; }
    .btn-outline-white { display: inline-block; background: transparent; color: #fff; padding: 12px 28px; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 400; border-radius: 4px; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.5); transition: border-color 0.15s, background 0.15s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: #fff; box-shadow: 0 1px 0 var(--border); overflow: visible; }
    .nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; height: 68px; display: flex; align-items: center; justify-content: space-between; }
    .nav-links { list-style: none; display: flex; gap: 0; align-items: center; }
    .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-mid); text-decoration: none; padding: 8px 16px; border-radius: 2px; transition: color 0.15s, background 0.15s; white-space: nowrap; }
    .nav-links a:hover, .nav-links a.active { color: var(--brand); background: #eef2ff; }
    .nav-cta { background: var(--brand); color: #fff; padding: 9px 20px; border-radius: 4px; font-size: 14px; font-weight: 500; text-decoration: none; transition: background 0.15s; white-space: nowrap; }
    /* Hamburger */
    .nav-drawer ul { list-style: none; padding: 1rem 1.5rem 1.5rem; display: flex; flex-direction: column; }
    .about-hero { background: var(--hero-grad); padding: 130px 0 90px; position: relative; overflow: hidden; }
    .about-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(6,182,212,0.18) 0%, transparent 60%); pointer-events: none; }
    .about-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .about-hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 16px; display: block; }
    .about-hero-title { font-family: 'Noto Sans', sans-serif; font-size: clamp(36px, 4.5vw, 58px); font-weight: 700; color: #fff; line-height: 1.12; margin-bottom: 22px; }
    .about-hero-title em {  color: rgba(255,255,255,0.75); }
    .about-hero-desc { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.8; font-weight: 300; max-width: 480px; }
    /* Right side stat cards */
    .about-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 24px 20px; backdrop-filter: blur(6px); }
    .stat-card .stat-num { font-family: 'Noto Sans', sans-serif; font-size: 38px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 6px; }
    .stat-card .stat-num span { font-size: 22px; color: #7dd3fc; }
    .stat-card .stat-label { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.5; }
    /* ══ MISSION ══ */
    .mission-section { padding: 90px 0; background: #fff; }
    .mission-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
    .mission-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #36C98A; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
    .mission-label::after { content: ''; width: 32px; height: 1px; background: #e8edf0; }
    .mission-left h2 { font-family: 'Noto Sans', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--text-dark); line-height: 1.22; }
    .mission-left h2 em {  color: var(--brand); }
    .mission-right p { font-size: 16px; color: var(--text-mid); line-height: 1.85; font-weight: 300; margin-bottom: 1.25rem; }
    .mission-right p:last-child { margin-bottom: 0; }
    .mission-right strong { font-weight: 600; color: var(--text-dark); }
    .pillars-section { padding: 0 0 90px; }
    .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .pillar-card { border-radius: 14px; padding: 36px 32px; position: relative; overflow: hidden; }
    .pillar-card.card-1 { background: linear-gradient(135deg, #0f2c8a, #4338ca); color: #fff; }
    .pillar-card.card-2 { background: #f8f7ff; border: 1px solid #e0e7ff; }
    .pillar-card.card-3 { background: linear-gradient(135deg, #0B3A46, #0d9488); color: #fff; }
    .pillar-card-icon { width: 48px; height: 48px; margin-bottom: 20px; }
    .pillar-card h3 { font-family: 'Noto Sans', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
    .pillar-card.card-2 h3 { color: var(--text-dark); }
    .pillar-card p { font-size: 14px; line-height: 1.8; font-weight: 300; }
    .pillar-card.card-1 p, .pillar-card.card-3 p { color: rgba(255,255,255,0.72); }
    .pillar-card.card-2 p { color: var(--text-mid); }
    .pillar-card-accent { position: absolute; bottom: -20px; right: -20px; width: 100px; height: 100px; border-radius: 50%; opacity: 0.1; }
    .card-1 .pillar-card-accent { background: #fff; }
    .card-3 .pillar-card-accent { background: #36C98A; }
    /* ══ INDUSTRIES ══ */
    .industries-section { padding: 80px 0; background: var(--surface); }
    .section-header { text-align: center; margin-bottom: 52px; }
    .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; display: block; }
    .section-title { font-family: 'Noto Sans', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--text-dark); line-height: 1.2; }
    .section-sub { font-size: 16px; color: var(--text-muted); margin-top: 10px; font-weight: 300; }
    .industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .industry-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 28px 20px; text-align: center; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; }
    .industry-card:hover { box-shadow: 0 6px 24px rgba(67,56,202,0.1); transform: translateY(-3px); border-color: #c7d2fe; }
    .industry-icon { width: 44px; height: 44px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; background: #eef2ff; border-radius: 10px; }
    .industry-icon svg { width: 22px; height: 22px; stroke: var(--brand); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .industry-card h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); line-height: 1.35; }
    /* ══ VALUES ══ */
    .values-section { padding: 90px 0; }
    .values-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
    .values-text h2 { font-family: 'Noto Sans', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--text-dark); line-height: 1.22; margin-bottom: 1.25rem; }
    .values-text p { font-size: 16px; color: var(--text-mid); line-height: 1.85; font-weight: 300; margin-bottom: 2rem; }
    .values-list { display: flex; flex-direction: column; gap: 16px; }
    .value-item { display: flex; gap: 16px; align-items: flex-start; }
    .value-dot { width: 36px; height: 36px; border-radius: 50%; background: #eef2ff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
    .value-dot svg { width: 16px; height: 16px; stroke: var(--brand); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .value-item h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
    .value-item p { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-weight: 300; }
    /* Right: big quote card */
    .values-quote { background: var(--hero-grad); border-radius: 16px; padding: 48px 40px; color: #fff; position: relative; overflow: hidden; }
    .values-quote::before { content: '"'; position: absolute; top: -20px; left: 20px; font-family: 'Noto Sans', sans-serif; font-size: 160px; color: rgba(255,255,255,0.06); line-height: 1; pointer-events: none; }
    .values-quote blockquote { font-family: 'Noto Sans', sans-serif; font-size: clamp(18px, 2vw, 24px);  line-height: 1.6; color: rgba(255,255,255,0.9); margin-bottom: 28px; position: relative; z-index: 1; }
    .values-quote cite { font-size: 13px; color: rgba(255,255,255,0.45); font-style: normal; position: relative; z-index: 1; display: block; }
    /* ══ CTA ══ */
    .cta-band { background: var(--hero-grad); padding: 80px 0; position: relative; overflow: hidden; }
    .cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(6,182,212,0.2) 0%, transparent 60%); pointer-events: none; }
    .cta-title { font-family: 'Noto Sans', sans-serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 1rem; }
      .about-hero-inner { grid-template-columns: 1fr; }
      .about-hero-stats { grid-template-columns: repeat(4, 1fr); }
      .mission-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .pillars-grid { grid-template-columns: 1fr; }
      .industries-grid { grid-template-columns: repeat(2, 1fr); }
      .values-inner { grid-template-columns: 1fr; gap: 3rem; }
      .about-hero { padding: 100px 0 60px; }
      .about-hero-stats { grid-template-columns: 1fr 1fr; }
      .industries-grid { grid-template-columns: 1fr 1fr; }
    body { font-family: 'Noto Sans', sans-serif; font-weight: 400; color: #1a1a1a; background: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
    .reveal-delay-1 { transition-delay: 0.15s; }
    .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: #fff; box-shadow: 0 1px 0 var(--border); overflow: visible; }
    .nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; height: 68px; display: flex; align-items: center; justify-content: space-between; }
    .nav-links { list-style: none; display: flex; gap: 0; align-items: center; }
    .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-mid); text-decoration: none; padding: 8px 16px; border-radius: 2px; transition: color 0.15s, background 0.15s; white-space: nowrap; }
    .nav-links a:hover { color: var(--brand); background: #eef2ff; }
    .nav-cta { background: var(--brand); color: #fff; padding: 9px 20px; border-radius: 4px; font-size: 14px; font-weight: 500; text-decoration: none; transition: background 0.15s; white-space: nowrap; }
    .nav-drawer ul { list-style: none; padding: 1rem 1.5rem 1.5rem; display: flex; flex-direction: column; }
    /* ══ CONTACT LAYOUT ══ */
    .contact-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 68px; }
    /* Left panel */
    .contact-left {
      display: flex; flex-direction: column; justify-content: flex-start;
      padding: 98px 52px 60px;
      min-height: calc(100vh - 68px);
    .contact-left::before {
      background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    /* Decorative blobs */
    .contact-left-blobs { position: absolute; inset: 0; z-index: 0; }
    .contact-left-content { position: relative; z-index: 2; text-align: center; }
    .contact-left-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; display: block; }
    .contact-left h1 { font-family: 'Noto Sans', sans-serif; font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 22px; }
    .contact-left-desc { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.8; font-weight: 300; margin-bottom: 36px; max-width: 400px; margin-left: auto; margin-right: auto; }
    .contact-left-note { display: flex; align-items: flex-start; gap: 12px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 18px 20px; max-width: 420px; margin: 0 auto; text-align: left; }
    .contact-left-note svg { flex-shrink: 0; margin-top: 2px; }
    .contact-left-note p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; font-weight: 300; }
    /* Contact info chips */
    .contact-chips { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; align-items: center; }
    .contact-chip { display: flex; align-items: center; gap: 12px; justify-content: center; }
    .contact-chip svg { flex-shrink: 0; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .contact-chip span { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 300; }
    /* Right panel */
    .contact-right { background: #fafafa; display: flex; align-items: flex-start; justify-content: center; padding: 64px 52px; overflow-y: auto; }
    .contact-form-wrap { width: 100%; max-width: 520px; }
    .form-title { font-family: 'Noto Sans', sans-serif; font-size: 26px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
    .form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 36px; font-weight: 300; line-height: 1.6; }
    /* Form fields */
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
    .form-group { margin-bottom: 20px; }
    .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
    .form-group label .req { color: #e11d48; margin-left: 3px; }
    .form-group input,
    .form-group textarea {
      width: 100%; padding: 11px 14px; font-family: 'Noto Sans', sans-serif; font-size: 14px;
      color: var(--text-dark); background: #fff; border: 1.5px solid var(--border);
      border-radius: 6px; outline: none; transition: border-color 0.15s, box-shadow 0.15s;
    .form-group input:focus,
    .form-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(67,56,202,0.08); }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: #bbb; }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .field-hint { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
    /* Checkboxes */
    .checkbox-label { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; display: block; }
    .checkbox-label .req { color: #e11d48; margin-left: 3px; }
    .checkbox-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
    .checkbox-item { display: flex; align-items: center; gap: 12px; cursor: pointer; }
    .checkbox-item input[type="checkbox"] { display: none; }
    .checkbox-box {
      width: 18px; height: 18px; border: 1.5px solid #d0d5dd; border-radius: 4px;
      background: #fff; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
      transition: background 0.15s, border-color 0.15s; vertical-align: middle;
    .checkbox-item { display: flex; flex-direction: row; align-items: center; gap: 12px; cursor: pointer; }
    .checkbox-item input[type="checkbox"]:checked + .checkbox-box {
      background: var(--brand); border-color: var(--brand);
    .checkbox-item input[type="checkbox"]:checked + .checkbox-box::after {
      content: ''; width: 10px; height: 6px; border-left: 2px solid #fff; border-bottom: 2px solid #fff;
      transform: rotate(-45deg) translateY(-1px); display: block;
    .checkbox-item span.checkbox-label-text { font-size: 14px; color: var(--text-mid); font-weight: 300; user-select: none; line-height: 1; vertical-align: middle; }
    /* reCAPTCHA placeholder */
    .recaptcha-wrap { background: #f9f9f9; border: 1px solid #d0d5dd; border-radius: 4px; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; max-width: 300px; }
    .recaptcha-left { display: flex; align-items: center; gap: 14px; }
    .recaptcha-check { width: 24px; height: 24px; border: 2px solid #d0d5dd; border-radius: 3px; background: #fff; flex-shrink: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s, border-color 0.15s; }
    .recaptcha-check.checked { background: #4285f4; border-color: #4285f4; }
    .recaptcha-check.checked::after { content: ''; width: 12px; height: 7px; border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(-45deg) translateY(-1px); display: block; }
    .recaptcha-text { font-size: 14px; color: #555; }
    .recaptcha-logo { text-align: center; }
    .recaptcha-logo svg { display: block; margin: 0 auto 2px; }
    .recaptcha-logo p { font-size: 8px; color: #999; line-height: 1.3; }
    /* Submit */
    .btn-submit {
      width: 100%; padding: 14px; background: var(--brand); color: #fff;
      font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 600;
      border: none; border-radius: 6px; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    .btn-submit:hover { background: var(--brand-dark); transform: translateY(-1px); }
    .btn-submit svg { transition: transform 0.15s; }
    .btn-submit:hover svg { transform: translateX(3px); }
    /* Success message */
    .form-success { display: none; text-align: center; padding: 48px 24px; }
    .form-success .success-icon { width: 64px; height: 64px; background: #d1fae5; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
    .form-success h3 { font-family: 'Noto Sans', sans-serif; font-size: 24px; color: var(--text-dark); margin-bottom: 10px; }
    .form-success p { font-size: 15px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
      .contact-page { grid-template-columns: 1fr; }
      .contact-left { min-height: 420px; padding: 48px 32px; justify-content: flex-end; }
      .contact-right { padding: 48px 32px; }
      .contact-left { min-height: 320px; padding: 36px 20px; }
      .contact-right { padding: 36px 20px; }
      .form-row { grid-template-columns: 1fr; }
    body { font-family: 'Noto Sans', sans-serif; font-weight: 400; color: #1a1a1a; background: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
    .btn-primary { display: inline-block; background: var(--brand); color: #fff; padding: 13px 28px; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 500; border-radius: 4px; text-decoration: none; transition: background 0.15s, transform 0.1s; }
    .btn-outline-white { display: inline-block; background: transparent; color: #fff; padding: 12px 28px; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 400; border-radius: 4px; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.5); transition: border-color 0.15s, background 0.15s; }
    .btn-dark { display: inline-block; background: rgba(0,0,0,0.55); color: #fff; padding: 14px 32px; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 500; border-radius: 6px; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(6px); transition: background 0.2s; }
    .btn-dark:hover { background: rgba(0,0,0,0.72); }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: #fff; box-shadow: 0 1px 0 var(--border); overflow: visible; }
    .nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; height: 68px; display: flex; align-items: center; justify-content: space-between; }
    .nav-links { list-style: none; display: flex; gap: 0; align-items: center; }
    .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-mid); text-decoration: none; padding: 8px 16px; border-radius: 2px; transition: color 0.15s, background 0.15s; white-space: nowrap; }
    .nav-links a:hover, .nav-links a.active { color: var(--brand); background: #eef2ff; }
    .nav-cta { background: var(--brand); color: #fff; padding: 9px 20px; border-radius: 4px; font-size: 14px; font-weight: 500; text-decoration: none; transition: background 0.15s; white-space: nowrap; }
    .nav-drawer ul { list-style: none; padding: 1rem 1.5rem 1.5rem; display: flex; flex-direction: column; }
    .services-hero {
      margin-top: 68px;
      min-height: 480px;
      background: url('services-background.png') center center / cover no-repeat;
    .services-hero::before {
      background: linear-gradient(90deg, rgba(10,20,80,0.72) 0%, rgba(10,20,80,0.45) 60%, transparent 100%);
    .services-hero-inner { position: relative; z-index: 1; max-width: 700px; padding: 80px 0; }
    .services-hero h1 { font-family: 'Noto Sans', sans-serif; font-size: clamp(32px, 4vw, 54px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 22px; }
    .services-hero p { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.8; font-weight: 300; margin-bottom: 10px; max-width: 520px; }
    .services-hero .hero-actions { margin-top: 36px; }
    /* ══ INTRO STRIP ══ */
    .intro-strip { padding: 64px 0 0; }
    .intro-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .intro-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #36C98A; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
    .intro-eyebrow::after { content: ''; width: 32px; height: 1px; background: #e8edf0; }
    .intro-strip h2 { font-family: 'Noto Sans', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--text-dark); line-height: 1.22; margin-bottom: 16px; }
    .intro-strip p { font-size: 16px; color: var(--text-mid); line-height: 1.85; font-weight: 300; }
    .intro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .intro-stat { background: var(--surface); border-radius: 12px; padding: 28px 24px; text-align: center; border: 1px solid var(--border); }
    .intro-stat .num { font-family: 'Noto Sans', sans-serif; font-size: 36px; font-weight: 700; color: var(--brand); margin-bottom: 6px; }
    .intro-stat .label { font-size: 13px; color: var(--text-muted); font-weight: 300; line-height: 1.5; }
    /* ══ SERVICES GRID ══ */
    .services-section { padding: 80px 0; }
    .section-header { margin-bottom: 52px; }
    .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; display: block; }
    .section-title { font-family: 'Noto Sans', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--text-dark); line-height: 1.2; }
    .section-sub { font-size: 16px; color: var(--text-muted); margin-top: 10px; font-weight: 300; max-width: 560px; }
    .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .service-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: #fff; transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
    .service-card:hover { box-shadow: 0 12px 48px rgba(67,56,202,0.1); transform: translateY(-4px); }
    .service-card-header { padding: 32px 32px 24px; display: flex; gap: 20px; align-items: flex-start; }
    .service-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .service-icon svg { width: 24px; height: 24px; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }
    .service-icon.blue   { background: #eef2ff; } .service-icon.blue svg   { stroke: #4338ca; }
    .service-icon.teal   { background: #f0fdfa; } .service-icon.teal svg   { stroke: #0d9488; }
    .service-icon.purple { background: #faf5ff; } .service-icon.purple svg { stroke: #7c3aed; }
    .service-icon.sky    { background: #f0f9ff; } .service-icon.sky svg    { stroke: #0284c7; }
    .service-card-header-text h3 { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; line-height: 1.3; }
    .service-card-header-text .tag { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
    .tag-blue   { background: #eef2ff; color: #4338ca; }
    .tag-teal   { background: #f0fdfa; color: #0d9488; }
    .tag-purple { background: #faf5ff; color: #7c3aed; }
    .tag-sky    { background: #f0f9ff; color: #0284c7; }
    .service-card-body { padding: 0 32px 32px; flex: 1; display: flex; flex-direction: column; }
    .service-card-body p { font-size: 14px; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
    .service-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; flex: 1; }
    .service-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-mid); font-weight: 300; line-height: 1.55; }
    .service-bullets li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex-shrink: 0; margin-top: 6px; }
    .service-card-footer { border-top: 1px solid var(--border); padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; }
    .service-link { font-size: 13px; font-weight: 600; color: var(--brand); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.15s; }
    .service-link:hover { gap: 10px; }
    .service-duration { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
    .service-duration svg { width: 13px; height: 13px; stroke: var(--text-muted); fill: none; stroke-width: 1.5; stroke-linecap: round; }
    /* ══ VOCMA TEASER ══ */
    .vocma-section { padding: 0 0 80px; }
    .vocma-card { background: var(--hero-grad); border-radius: 20px; padding: 60px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .vocma-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(6,182,212,0.2) 0%, transparent 60%); pointer-events: none; }
    .vocma-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 20px; letter-spacing: 0.04em; }
    .vocma-badge span { width: 7px; height: 7px; border-radius: 50%; background: #36C98A; display: inline-block; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
    .vocma-card h2 { font-family: 'Noto Sans', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
    .vocma-card p { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.8; font-weight: 300; margin-bottom: 28px; }
    .vocma-cta { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--brand); padding: 12px 26px; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; }
    .vocma-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
    .vocma-right { position: relative; z-index: 1; }
    .vocma-features { display: flex; flex-direction: column; gap: 16px; }
    .vocma-feature { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 18px 20px; display: flex; align-items: center; gap: 14px; }
    .vocma-feature-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .vocma-feature-icon svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.5; stroke-linecap: round; }
    .vocma-feature p { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 300; line-height: 1.5; }
    .vocma-feature strong { display: block; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
    /* ══ PROCESS ══ */
    .process-section { padding: 80px 0; background: var(--surface); }
    .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
    .process-steps::before { content: ''; position: absolute; top: 28px; left: calc(12.5%); right: calc(12.5%); height: 2px; background: linear-gradient(90deg, var(--brand), #0ea5e9); z-index: 0; }
    .process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
    .step-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Noto Sans', sans-serif; box-shadow: 0 4px 16px rgba(67,56,202,0.3); }
    .process-step h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
    .process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
    /* ══ CTA ══ */
    .cta-band { background: var(--hero-grad); padding: 80px 0; position: relative; overflow: hidden; }
    .cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(6,182,212,0.2) 0%, transparent 60%); pointer-events: none; }
    .cta-title { font-family: 'Noto Sans', sans-serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 1rem; }
      .intro-strip-inner { grid-template-columns: 1fr; gap: 3rem; }
      .services-grid { grid-template-columns: 1fr; }
      .vocma-card { grid-template-columns: 1fr; padding: 40px; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
      .process-steps::before { display: none; }
      .services-hero { min-height: 360px; }
      .process-steps { grid-template-columns: 1fr; }
      .vocma-card { padding: 28px 24px; }