:root {
      --navy: #0B1D36;
      --navy-light: #132a4a;
      --steel: #1B6B8A;
      --steel-light: #2A8BB0;
      --amber: #D4A017;
      --amber-hover: #E8B42A;
      --off-white: #F7F9FC;
      --text: #1A2332;
      --text-light: #5A6A7E;
      --white: #FFFFFF;
      --card-shadow: 0 10px 40px rgba(11, 29, 54, 0.08);
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      background: var(--off-white);
      line-height: 1.65;
      overflow-x: hidden;
    }

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

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    .container {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ========== HEADER ========== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(11, 29, 54, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: var(--transition);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      height: 72px;
    }

    .logo {
      display: flex;
      align-items: center;
      height: 42px;
      flex-shrink: 0;
    }

    .logo img {
      height: 42px;
      width: auto;
      max-width: 220px;
      object-fit: contain;
      display: block;
    }

    .logo-text {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.5px;
    }

    .logo-text span {
      color: var(--amber);
    }

    nav {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px 16px;
    }

    nav a {
      color: rgba(255,255,255,0.85);
      font-size: 0.88rem;
      font-weight: 500;
      white-space: nowrap;
    }

    nav a:hover,
    nav a.active {
      color: var(--amber);
    }

    .lang-switcher {
      display: flex;
      gap: 4px;
      margin-left: 8px;
      padding-left: 12px;
      border-left: 1px solid rgba(255,255,255,0.15);
    }

    .lang-switcher button {
      background: transparent;
      border: 1px solid transparent;
      color: rgba(255,255,255,0.7);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 4px;
      cursor: pointer;
      transition: var(--transition);
    }

    .lang-switcher button:hover,
    .lang-switcher button.active {
      color: var(--white);
      border-color: var(--amber);
      background: rgba(212, 160, 23, 0.15);
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      background: var(--navy);
      overflow: hidden;
      padding-top: 72px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.55;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(11,29,54,0.92) 0%, rgba(11,29,54,0.75) 50%, rgba(11,29,54,0.4) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
      color: var(--white);
      padding: 60px 0;
    }

    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .hero .subheadline {
      font-size: 1.25rem;
      color: rgba(255,255,255,0.9);
      margin-bottom: 16px;
      font-weight: 500;
    }

    .hero .support {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.75);
      margin-bottom: 36px;
      max-width: 540px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--amber);
      color: var(--navy);
      font-weight: 700;
      font-size: 1rem;
      padding: 16px 32px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      transition: var(--transition);
    }

    .btn:hover {
      background: var(--amber-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid rgba(255,255,255,0.4);
      color: var(--white);
    }

    .btn-outline:hover {
      border-color: var(--amber);
      color: var(--amber);
      background: transparent;
      box-shadow: none;
    }

    /* ========== SECTIONS ========== */
    section {
      padding: 90px 0;
    }

    .section-label {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--steel);
      margin-bottom: 12px;
    }

    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.4rem);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 20px;
      line-height: 1.25;
    }

    .section-intro {
      font-size: 1.1rem;
      color: var(--text-light);
      max-width: 680px;
      margin-bottom: 48px;
    }

    /* ========== INTRO ========== */
    .intro {
      background: var(--white);
    }

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

    .intro-text p {
      margin-bottom: 18px;
      font-size: 1.08rem;
      color: var(--text);
    }

    /* ========== EXPERTISE ========== */
    .expertise {
      background: var(--off-white);
    }

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

    .expertise-card {
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .expertise-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(11, 29, 54, 0.12);
    }

    .expertise-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .expertise-card .card-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .expertise-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
      line-height: 1.3;
    }

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

    /* ========== INDUSTRIES ========== */
    .industries {
      background: var(--navy);
      color: var(--white);
    }

    .industries h2,
    .industries .section-label {
      color: var(--white);
    }

    .industries .section-label {
      color: var(--amber);
    }

    .industries .section-intro {
      color: rgba(255,255,255,0.75);
    }

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

    .industry-card {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      height: 280px;
    }

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

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

    .industry-card .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11,29,54,0.9) 0%, rgba(11,29,54,0.3) 60%, transparent 100%);
      display: flex;
      align-items: flex-end;
      padding: 28px;
    }

    .industry-card h3 {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--white);
    }

    /* ========== WHY ========== */
    .why {
      background: var(--white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .why-item {
      text-align: center;
      padding: 28px 16px;
      border-radius: 10px;
      background: var(--off-white);
      transition: var(--transition);
    }

    .why-item:hover {
      background: #eef3f8;
    }

    .why-item .icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 16px;
      background: var(--navy);
      color: var(--amber);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      font-weight: 700;
    }

    .why-item p {
      font-size: 0.95rem;
      color: var(--text);
      font-weight: 500;
      line-height: 1.45;
    }

    /* ========== TRUST ========== */
    .trust {
      background: var(--off-white);
      text-align: center;
      padding: 70px 0;
    }

    .trust p {
      font-size: 1.15rem;
      color: var(--text-light);
      max-width: 820px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .trust strong {
      color: var(--navy);
    }

    /* ========== INSIGHTS TEASER ========== */
    .insights-teaser {
      background: var(--white);
    }

    .insights-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 40px;
    }

    .insights-header a {
      color: var(--steel);
      font-weight: 600;
      font-size: 0.95rem;
    }

    .insights-header a:hover {
      color: var(--amber);
    }

    .insights-placeholder {
      background: var(--off-white);
      border: 2px dashed #c5d0de;
      border-radius: 12px;
      padding: 60px 40px;
      text-align: center;
      color: var(--text-light);
    }

    /* ========== FINAL CTA ========== */
    .final-cta {
      background: linear-gradient(135deg, var(--navy) 0%, #132a4a 100%);
      color: var(--white);
      text-align: center;
      padding: 100px 0;
    }

    .final-cta h2 {
      color: var(--white);
      margin-bottom: 16px;
    }

    .final-cta p {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.8);
      max-width: 560px;
      margin: 0 auto 36px;
    }

    /* ========== FOOTER ========== */
    footer {
      background: #071525;
      color: rgba(255,255,255,0.6);
      padding: 40px 0;
      font-size: 0.9rem;
    }

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

    .footer-inner .logo {
      font-size: 1.1rem;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .why-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .industries-grid {
        grid-template-columns: 1fr;
      }
      .industry-card {
        height: 240px;
      }
    }

    @media (max-width: 980px) {
      nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(11, 29, 54, 0.98);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 12px 24px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
      }
      nav.open {
        display: flex;
      }
      nav a {
        padding: 10px 0;
        width: 100%;
      }
      .lang-switcher {
        margin: 12px 0 0;
        padding: 12px 0 0;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.15);
      }
      .mobile-toggle {
        display: block;
      }
      .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .expertise-grid {
        grid-template-columns: 1fr;
      }
      .why-grid {
        grid-template-columns: 1fr 1fr;
      }
      .hero-content {
        padding: 40px 0;
      }
      section {
        padding: 70px 0;
      }
    }

    @media (max-width: 480px) {
      .why-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Language content visibility */
    [data-lang] {
      display: none;
    }
    [data-lang].active {
      display: block;
    }
    span[data-lang].active {
      display: inline;
    }

    /* ========== INNER PAGE HERO ========== */
    .page-hero {
      position: relative;
      min-height: 42vh;
      display: flex;
      align-items: flex-end;
      background: var(--navy);
      padding: 140px 0 60px;
      overflow: hidden;
    }
    .page-hero h1 {
      color: var(--white);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      max-width: 800px;
      line-height: 1.2;
    }
    .page-hero p {
      color: rgba(255,255,255,0.8);
      font-size: 1.15rem;
      max-width: 680px;
      margin-top: 16px;
    }
    .content-block {
      background: var(--white);
    }
    .content-block p {
      font-size: 1.08rem;
      margin-bottom: 18px;
    }
    .content-block ul {
      margin: 16px 0 28px 22px;
      color: var(--text);
    }
    .content-block li {
      margin-bottom: 8px;
    }
    .split-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .detail-card {
      background: var(--white);
      border-radius: 12px;
      padding: 32px;
      box-shadow: var(--card-shadow);
      margin-bottom: 24px;
    }
    .detail-card h3 {
      color: var(--navy);
      font-size: 1.25rem;
      margin-bottom: 12px;
    }
    .detail-card p {
      color: var(--text-light);
      font-size: 1.02rem;
    }
    .partner-card {
      background: var(--white);
      border-radius: 12px;
      padding: 32px;
      box-shadow: var(--card-shadow);
    }
    .partner-card h3 {
      color: var(--navy);
      font-size: 1.2rem;
      margin-bottom: 12px;
    }
    .contact-form {
      background: var(--white);
      border-radius: 12px;
      padding: 36px;
      box-shadow: var(--card-shadow);
      max-width: 640px;
    }
    .contact-form label {
      display: block;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
      font-size: 0.95rem;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #d5dde8;
      border-radius: 6px;
      margin-bottom: 18px;
      font-size: 1rem;
      font-family: inherit;
      color: var(--text);
    }
    .contact-form textarea {
      min-height: 140px;
      resize: vertical;
    }
    @media (max-width: 768px) {
      .split-grid {
        grid-template-columns: 1fr;
      }
    }

