/* ======== RESET & VARIABLES ======== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy:   #162340;
      --navy2:  #1e3060;
      --navy3:  #0d1829;
      --gold:   #c8972a;
      --gold2:  #e0ac40;
      --gold3:  rgba(200,151,42,.12);
      --text:   #2c3140;
      --muted:  #6b7283;
      --bg:     #f4f6fb;
      --white:  #ffffff;
      --border: #dde2ec;
      --shadow: 0 4px 24px rgba(0,0,0,.08);
      --radius: 14px;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    button { cursor: pointer; font-family: inherit; border: none; }

    /* ======== SCROLLBAR ======== */
    ::-webkit-scrollbar { width: 7px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--navy2); border-radius: 4px; }

    /* ======== HEADER ======== */
    #header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      background: var(--navy);
      transition: box-shadow .3s;
    }
    #header.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,.45); }
    .nav-wrap {
      max-width: 1300px; margin: 0 auto; padding: 0 28px;
      display: flex; align-items: center; justify-content: space-between;
      height: 70px;
    }
    .logo-area {
      display: flex; align-items: center; gap: 12px; cursor: pointer; flex-shrink: 0;
    }
    .logo-mark {
      width: auto; height: 40px; object-fit: contain; flex-shrink: 0;
    }
    .logo-words { line-height: 1.2; }
    .logo-words .l1 { font-size: 15px; font-weight: 700; color: #fff; }
    .logo-words .l2 { font-size: 10.5px; color: var(--gold); letter-spacing: 1.4px; text-transform: uppercase; }

    .nav-links { display: flex; align-items: center; gap: 2px; }
    .nav-links a {
      padding: 7px 15px; font-size: 13.5px; font-weight: 500;
      color: rgba(255,255,255,.78); border-radius: 7px;
      transition: all .2s; cursor: pointer;
    }
    .nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.1); }
    .nav-links a.active { color: var(--gold); background: transparent; }
    .nav-btn {
      margin-left: 8px; padding: 8px 20px;
      background: var(--gold); color: var(--navy); border-radius: 8px;
      font-size: 13.5px; font-weight: 700; transition: all .2s;
    }
    .nav-btn:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,151,42,.4); }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; padding: 6px; cursor: pointer;
    }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

    /* Mobile Nav */
    .mobile-nav {
      display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 998;
      background: var(--navy3); padding: 16px 28px 24px; flex-direction: column; gap: 4px;
      box-shadow: 0 8px 24px rgba(0,0,0,.4);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      padding: 12px 16px; color: rgba(255,255,255,.8); font-size: 15px; font-weight: 500;
      border-radius: 8px; transition: .2s; cursor: pointer;
    }
    .mobile-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
    .mobile-nav a.nav-btn { color: var(--navy); background: var(--gold); font-weight: 700; text-align: center; margin-top: 8px; }

    /* ======== PAGE CONTENT WRAPPER ======== */
    .page { min-height: 100vh; padding-top: 70px; }

    /* ======== UTILITY ======== */
    .container { max-width: 1300px; margin: 0 auto; padding: 0 28px; }
    .section { padding: 90px 0; }
    .section-sm { padding: 60px 0; }
    .bg-white { background: var(--white); }
    .bg-light { background: var(--bg); }
    .bg-navy { background: var(--navy); }

    .sec-tag {
      display: inline-block; padding: 4px 14px; border-radius: 20px;
      background: var(--gold3); color: var(--gold); font-size: 11.5px;
      font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
      margin-bottom: 12px;
    }
    .sec-head { text-align: center; margin-bottom: 56px; }
    .sec-head h2 {
      font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--navy);
      letter-spacing: -.4px; margin-bottom: 14px;
    }
    .sec-head p { font-size: 16px; color: var(--muted); max-width: 620px; margin: 0 auto; line-height: 1.8; }

    .btn-gold {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold); color: var(--navy); padding: 13px 26px;
      border-radius: 9px; font-size: 14.5px; font-weight: 700;
      transition: all .2s; cursor: pointer;
    }
    .btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,151,42,.4); }
    .btn-white-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: #fff; padding: 13px 26px;
      border-radius: 9px; font-size: 14.5px; font-weight: 600;
      border: 1.5px solid rgba(255,255,255,.32); transition: all .2s; cursor: pointer;
    }
    .btn-white-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }
    .btn-navy {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--navy); color: #fff; padding: 13px 26px;
      border-radius: 9px; font-size: 14.5px; font-weight: 700;
      transition: all .2s; cursor: pointer;
    }
    .btn-navy:hover { background: var(--navy2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22,35,64,.35); }

    /* ======== HOME – HERO ======== */
    .hero {
      position: relative; min-height: calc(100vh - 70px);
      background: linear-gradient(135deg, var(--navy3) 0%, var(--navy) 45%, #1a3b70 100%);
      display: flex; align-items: center; overflow: hidden;
    }
    .hero-grid-bg {
      position: absolute; inset: 0; opacity: .04;
      background-image:
        linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .hero-glow {
      position: absolute; width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(200,151,42,.18) 0%, transparent 70%);
      top: -200px; right: -100px; pointer-events: none;
    }
    .hero-inner {
      position: relative; max-width: 1300px; margin: 0 auto; padding: 80px 28px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(200,151,42,.16); border: 1px solid rgba(200,151,42,.35);
      color: var(--gold2); padding: 6px 15px; border-radius: 20px;
      font-size: 12.5px; font-weight: 700; letter-spacing: .6px; margin-bottom: 22px;
    }
    .hero h1 {
      font-size: clamp(30px, 4vw, 54px); font-weight: 800; color: #fff;
      line-height: 1.12; letter-spacing: -.5px; margin-bottom: 20px;
    }
    .hero h1 em { color: var(--gold); font-style: normal; }
    .hero-desc { font-size: 16.5px; color: rgba(255,255,255,.72); line-height: 1.85; margin-bottom: 36px; }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

    /* Hero right panel */
    .hero-panel {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    }
    .hpanel-card {
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11);
      border-radius: 14px; padding: 22px 18px; backdrop-filter: blur(8px);
      transition: background .2s;
    }
    .hpanel-card:hover { background: rgba(255,255,255,.11); }
    .hpanel-icon { width: 32px; height: 32px; margin-bottom: 10px; color: var(--gold); }
    .hpanel-card h3 { font-size: 14px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
    .hpanel-card p { font-size: 12.5px; color: rgba(255,255,255,.6); line-height: 1.6; }
    .hpanel-wide {
      grid-column: 1 / -1;
      background: rgba(200,151,42,.12); border: 1px solid rgba(200,151,42,.28);
      border-radius: 14px; padding: 18px 22px;
      display: flex; align-items: center; gap: 16px;
    }
    .hpanel-wide-icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--gold); }
    .hpanel-wide p { font-size: 13px; color: rgba(255,255,255,.8); }
    .hpanel-wide strong { color: var(--gold); }

    /* ======== STATS BAR ======== */
    .stats-bar { background: var(--white); padding: 48px 0; border-bottom: 1px solid var(--border); }
    .stats-row {
      display: grid; grid-template-columns: repeat(4, 1fr);
      max-width: 1300px; margin: 0 auto; padding: 0 28px;
    }
    .stat-cell {
      text-align: center; padding: 10px 20px;
      border-right: 1px solid var(--border);
    }
    .stat-cell:last-child { border-right: none; }
    .stat-num { font-size: 42px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 8px; }
    .stat-num span { color: var(--gold); }
    .stat-lbl { font-size: 13.5px; color: var(--muted); font-weight: 500; }

    /* ======== PRODUCT CARDS (HOME) ======== */
    .prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .prod-card {
      background: var(--white); border-radius: var(--radius);
      overflow: hidden; box-shadow: var(--shadow); transition: all .3s;
    }
    .prod-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.13); }
    .prod-img {
      height: 220px; overflow: hidden; position: relative;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    }
    .prod-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .45s ease; display: block;
    }
    .prod-card:hover .prod-img img { transform: scale(1.07); }
    .prod-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.22) 100%);
      pointer-events: none;
    }
    .prod-body { padding: 24px; }
    .prod-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .prod-body p { font-size: 13.5px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
    .tag-row { display: flex; flex-wrap: wrap; gap: 7px; }
    .tag {
      background: var(--bg); color: var(--muted); padding: 3px 9px;
      border-radius: 5px; font-size: 11.5px; font-weight: 600;
    }

    /* ======== INDUSTRIES ======== */
    .ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .ind-card {
      background: var(--white); border-radius: 14px; padding: 36px 18px 30px;
      text-align: center; border: 1.5px solid var(--border);
      transition: all .25s; cursor: default;
    }
    .ind-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.11); background: #fdfbf5; }
    .ind-icon { width: 56px; height: 56px; margin: 0 auto 16px; display: block; color: var(--navy); }
    .ind-card h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
    .ind-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

    /* ======== WHY US ======== */
    .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .why-card {
      background: var(--white); border-radius: var(--radius); padding: 30px 28px;
      display: flex; gap: 20px; box-shadow: var(--shadow);
      border-left: 4px solid var(--gold); transition: transform .2s;
    }
    .why-card:hover { transform: translateY(-2px); }
    .why-icon-box {
      width: 50px; height: 50px; background: var(--gold3); border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--navy); flex-shrink: 0;
    }
    .why-icon-box svg { width: 26px; height: 26px; }
    .why-card h3 { font-size: 16.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .why-card p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

    /* ======== CTA BANNER ======== */
    .cta-band {
      background: linear-gradient(135deg, var(--navy) 0%, #1a3b70 100%);
      padding: 72px 0;
    }
    .cta-inner {
      max-width: 1300px; margin: 0 auto; padding: 0 28px;
      display: flex; align-items: center; justify-content: space-between; gap: 40px;
    }
    .cta-inner h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 8px; }
    .cta-inner p { font-size: 15.5px; color: rgba(255,255,255,.72); }
    .cta-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

    /* ======== PAGE BANNER ======== */
    .page-banner {
      background: linear-gradient(135deg, var(--navy3) 0%, var(--navy) 100%);
      padding: 64px 0; text-align: center;
    }
    .page-banner h1 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; color: #fff; margin-bottom: 12px; }
    .page-banner p { font-size: 16px; color: rgba(255,255,255,.68); }
    .breadcrumb {
      display: flex; justify-content: center; align-items: center; gap: 8px;
      font-size: 13px; margin-bottom: 18px;
    }
    .breadcrumb a { color: var(--gold); cursor: pointer; }
    .breadcrumb span { color: rgba(255,255,255,.4); }

    /* ======== ABOUT PAGE ======== */
    .about-two-col {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    }
    .about-text .l-tag { display: inline-block; margin-bottom: 14px; }
    .about-text h2 { font-size: clamp(24px, 2.8vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 18px; }
    .about-text p { font-size: 14.5px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
    .check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
    .check-item { display: flex; gap: 12px; align-items: flex-start; }
    .check-bullet {
      width: 22px; height: 22px; background: var(--gold); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 800; color: var(--navy); flex-shrink: 0; margin-top: 2px;
    }
    .check-item p { font-size: 14px; color: var(--text); margin: 0; }

    /* About info box */
    .about-info-box {
      background: linear-gradient(145deg, var(--navy) 0%, var(--navy2) 100%);
      border-radius: 20px; padding: 36px;
    }
    .aib-label { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
    .aib-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .aib-stat {
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px; padding: 20px; text-align: center;
    }
    .aib-num { font-size: 32px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 6px; }
    .aib-lbl { font-size: 12.5px; color: rgba(255,255,255,.65); }
    .aib-row {
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px; padding: 18px 20px; margin-bottom: 14px;
    }
    .aib-row:last-child { margin-bottom: 0; }
    .aib-row-label { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: .8px; text-transform: uppercase; margin-bottom: 5px; }
    .aib-row-val { font-size: 14px; color: rgba(255,255,255,.8); }

    /* Mission Vision Values */
    .mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .mvv-card {
      background: var(--white); border-radius: var(--radius); padding: 36px 28px;
      box-shadow: var(--shadow); position: relative; overflow: hidden;
    }
    .mvv-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold);
    }
    .mvv-icon { width: 40px; height: 40px; margin-bottom: 16px; color: var(--navy); }
    .mvv-icon svg { width: 100%; height: 100%; }
    .mvv-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
    .mvv-card p { font-size: 14px; color: var(--muted); line-height: 1.8; }

    /* Capabilities */
    .cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .cap-card {
      background: var(--white); border-radius: var(--radius); padding: 28px;
      display: flex; gap: 18px; box-shadow: var(--shadow);
    }
    .cap-icon-box {
      width: 52px; height: 52px; background: var(--gold3); border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--navy); flex-shrink: 0;
    }
    .cap-icon-box svg { width: 26px; height: 26px; }
    .cap-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .cap-card p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

    /* Certs */
    .cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .cert-card {
      background: var(--white); border-radius: 12px; padding: 28px 18px;
      text-align: center; border: 1.5px solid var(--border); transition: all .25s;
    }
    .cert-card:hover { border-color: var(--gold); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
    .cert-icon { width: 44px; height: 44px; margin: 0 auto 14px; color: var(--navy); }
    .cert-icon svg { width: 100%; height: 100%; }
    .cert-card h3 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .cert-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

    /* ======== PRODUCTS PAGE ======== */
    .prod-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .prod-cat-card {
      background: var(--white); border-radius: var(--radius);
      overflow: hidden; box-shadow: var(--shadow); transition: all .3s;
    }
    .prod-cat-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,.12); }
    .pcc-img { height: 180px; overflow: hidden; position: relative; }
    .pcc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
    .prod-cat-card:hover .pcc-img img { transform: scale(1.06); }
    .pcc-head {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
      padding: 18px 24px; display: flex; align-items: center; gap: 16px;
    }
    .pcc-icon { width: 36px; height: 36px; color: var(--gold); flex-shrink: 0; }
    .pcc-icon svg { width: 100%; height: 100%; }
    .pcc-head h3 { font-size: 17px; font-weight: 700; color: #fff; }
    .pcc-head p { font-size: 11.5px; color: rgba(255,255,255,.65); margin-top: 2px; }
    .pcc-body { padding: 22px 24px; }

    /* ======== KNOWLEDGE CENTER ======== */
    .kb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
    .kb-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all .3s; cursor: pointer; }
    .kb-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.13); }
    .kb-card-img { height: 190px; overflow: hidden; position: relative; }
    .kb-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
    .kb-card:hover .kb-card-img img { transform: scale(1.07); }
    .kb-card-body { padding: 22px 24px; }
    .kb-cat-tag { display: inline-block; font-size: 10.5px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1.2px; background: var(--gold3); padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
    .kb-card-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.45; }
    .kb-card-body p { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
    .kb-meta { display: flex; gap: 14px; font-size: 12px; color: var(--muted); margin-bottom: 14px; }
    .kb-read-more { display: inline-flex; align-items: center; gap: 5px; color: var(--gold); font-weight: 700; font-size: 13px; transition: gap .2s; }
    .kb-card:hover .kb-read-more { gap: 9px; }

    /* Article Modal */
    .art-modal { display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(10,18,38,.7); overflow-y: auto; padding: 30px 20px; }
    .art-modal.open { display: flex; align-items: flex-start; justify-content: center; }
    .art-inner { background: var(--white); border-radius: 20px; max-width: 820px; width: 100%; padding: 48px; position: relative; margin: auto; }
    .art-close { position: absolute; top: 18px; right: 22px; font-size: 26px; line-height: 1; cursor: pointer; color: var(--muted); background: none; border: none; font-family: inherit; }
    .art-close:hover { color: var(--navy); }
    .art-cat { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 12px; }
    .art-inner h1 { font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.3; }
    .art-meta { display: flex; gap: 18px; font-size: 13px; color: var(--muted); margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
    .art-img { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; margin-bottom: 26px; }
    .art-body h2 { font-size: 19px; font-weight: 700; color: var(--navy); margin: 26px 0 10px; }
    .art-body p { font-size: 14.5px; color: var(--text); line-height: 1.85; margin-bottom: 14px; }
    .art-body ul { padding-left: 22px; margin-bottom: 14px; }
    .art-body ul li { font-size: 14.5px; color: var(--text); line-height: 1.8; margin-bottom: 7px; }
    .art-body table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 13.5px; }
    .art-body table th { background: var(--navy); color: #fff; padding: 10px 14px; text-align: left; }
    .art-body table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
    .art-body table tr:hover td { background: rgba(200,151,42,.04); }
    @media (max-width: 900px) { .kb-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .kb-grid { grid-template-columns: 1fr; } .art-inner { padding: 28px 20px; } }
    .pcc-body p { font-size: 13.5px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
    .pcc-specs { display: flex; flex-wrap: wrap; gap: 7px; }
    .pcc-tag {
      background: rgba(22,35,64,.07); color: var(--navy); padding: 4px 10px;
      border-radius: 5px; font-size: 12px; font-weight: 600;
    }

    /* Grades Table */
    .grade-block {
      background: var(--white); border-radius: var(--radius);
      overflow: hidden; box-shadow: var(--shadow); margin-bottom: 24px;
    }
    .grade-head {
      background: var(--navy); padding: 18px 28px;
      display: flex; align-items: center; gap: 12px;
    }
    .grade-head h3 { font-size: 15px; font-weight: 700; color: #fff; }
    table { width: 100%; border-collapse: collapse; }
    thead th {
      background: rgba(22,35,64,.05); padding: 12px 22px;
      text-align: left; font-size: 12.5px; font-weight: 700; color: var(--navy);
      border-bottom: 1px solid var(--border);
    }
    tbody td {
      padding: 12px 22px; font-size: 13px; color: var(--text);
      border-bottom: 1px solid var(--border);
    }
    tbody tr:last-child td { border-bottom: none; }
    tbody tr:hover td { background: rgba(200,151,42,.04); }

    /* Services */
    .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .svc-card {
      background: var(--white); border-radius: var(--radius); padding: 30px 24px;
      border: 1.5px solid var(--border); transition: all .25s;
    }
    .svc-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,.09); }
    .svc-icon { width: 38px; height: 38px; margin: 0 auto 16px; color: var(--navy); }
    .svc-icon svg { width: 100%; height: 100%; }
    .svc-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .svc-card p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

    /* ======== CONTACT PAGE ======== */
    .contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 36px; }
    .contact-side h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
    .contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
    .ci {
      background: var(--white); border-radius: 12px; padding: 18px 20px;
      display: flex; gap: 16px; align-items: flex-start;
      border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,.04);
    }
    .ci-icon {
      width: 44px; height: 44px; background: var(--navy); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .ci-icon svg { width: 20px; height: 20px; color: var(--gold); }
    .ci-body h4 {
      font-size: 11.5px; font-weight: 700; color: var(--muted);
      text-transform: uppercase; letter-spacing: .6px; margin-bottom: 4px;
    }
    .ci-body p, .ci-body a { font-size: 14px; color: var(--text); line-height: 1.6; }
    .ci-body a:hover { color: var(--gold); }

    /* Commitments box */
    .commit-box {
      background: var(--navy); border-radius: 14px; padding: 24px;
      margin-bottom: 24px;
    }
    .commit-box h4 { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
    .commit-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 11px; }
    .commit-item:last-child { margin-bottom: 0; }
    .commit-icon { color: var(--gold); font-weight: 700; flex-shrink: 0; font-size: 16px; line-height: 1.4; }
    .commit-item p { font-size: 13.5px; color: rgba(255,255,255,.8); line-height: 1.55; margin: 0; }

    /* Team cards */
    .team-row { display: flex; gap: 14px; }
    .team-box {
      flex: 1; background: var(--white); border-radius: 12px; padding: 18px;
      text-align: center; border: 1px solid var(--border);
    }
    .team-avatar {
      width: 52px; height: 52px; background: var(--navy); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; font-weight: 800; color: var(--gold);
      margin: 0 auto 10px;
    }
    .team-box h4 { font-size: 15px; font-weight: 700; color: var(--navy); }
    .team-box p { font-size: 12.5px; color: var(--muted); }

    /* Contact Form */
    .form-box {
      background: var(--white); border-radius: 20px; padding: 40px;
      box-shadow: 0 6px 32px rgba(0,0,0,.09);
    }
    .form-box h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .fg { display: flex; flex-direction: column; gap: 6px; }
    .fg.full { grid-column: 1 / -1; }
    .fg label { font-size: 13px; font-weight: 600; color: var(--text); }
    .fg input, .fg select, .fg textarea {
      padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 9px;
      font-size: 14px; color: var(--text); font-family: inherit;
      background: var(--bg); outline: none; transition: border-color .2s, background .2s;
    }
    .fg input:focus, .fg select:focus, .fg textarea:focus {
      border-color: var(--gold); background: var(--white);
    }
    .fg textarea { min-height: 130px; resize: vertical; }
    .form-submit { margin-top: 20px; }
    .btn-submit {
      width: 100%; background: var(--navy); color: #fff;
      padding: 15px; border-radius: 9px; font-size: 15px; font-weight: 700;
      transition: all .2s; font-family: inherit;
    }
    .btn-submit:hover { background: var(--navy2); box-shadow: 0 6px 20px rgba(22,35,64,.35); }

    /* Map */
    .map-box {
      margin-top: 40px; border-radius: 16px; overflow: hidden;
      border: 1px solid var(--border); box-shadow: var(--shadow);
    }
    .map-placeholder {
      height: 260px; background: linear-gradient(135deg, #e2e8f5 0%, #d0d9ea 100%);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 10px; color: var(--muted); font-size: 14px; cursor: pointer;
      transition: background .2s;
    }
    .map-placeholder:hover { background: linear-gradient(135deg, #d5ddf0 0%, #c4cde2 100%); }
    .map-placeholder span:first-child { font-size: 44px; }

    /* ======== FOOTER ======== */
    footer {
      background: var(--navy3); padding: 64px 0 28px;
    }
    .footer-grid {
      max-width: 1300px; margin: 0 auto; padding: 0 28px;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 52px;
      margin-bottom: 52px;
    }
    .footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
    .footer-logo-mark {
      height: 36px; object-fit: contain; flex-shrink: 0;
    }
    .footer-logo-row span { font-size: 14px; font-weight: 700; color: #fff; }
    .footer-brand h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 12px; }
    .footer-brand p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 20px; }
    .footer-col h4 {
      font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 1.2px;
      text-transform: uppercase; margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-col ul li a {
      font-size: 13px; color: rgba(255,255,255,.55);
      cursor: pointer; transition: color .2s;
    }
    .footer-col ul li a:hover { color: var(--gold); }
    .footer-ci { display: flex; gap: 10px; margin-bottom: 13px; align-items: flex-start; }
    .footer-ci-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; color: var(--gold); }
    .footer-ci span:last-child { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.55; }
    .footer-bottom {
      max-width: 1300px; margin: 0 auto; padding: 22px 28px 0;
      border-top: 1px solid rgba(255,255,255,.08);
      display: flex; justify-content: space-between; align-items: center;
      font-size: 12.5px; color: rgba(255,255,255,.36); flex-wrap: wrap; gap: 8px;
    }
    .footer-bottom a { color: var(--gold); }

    /* ======== TOAST ======== */
    #toast {
      position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px);
      background: var(--navy); color: #fff; padding: 14px 28px; border-radius: 10px;
      font-size: 14.5px; font-weight: 600; z-index: 9999;
      box-shadow: 0 8px 32px rgba(0,0,0,.35); transition: transform .4s, opacity .4s; opacity: 0;
      display: flex; align-items: center; gap: 10px;
    }
    #toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

    /* ======== RESPONSIVE ======== */
    @media (max-width: 1100px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-panel { display: none; }
      .hero-inner { padding: 70px 28px; }
      .ind-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      .prod-grid { grid-template-columns: repeat(2, 1fr); }
      .mvv-grid { grid-template-columns: 1fr; }
      .prod-cat-grid { grid-template-columns: 1fr 1fr; }
      .svc-grid { grid-template-columns: 1fr 1fr; }
      .stats-row { grid-template-columns: repeat(2, 1fr); }
      .stat-cell:nth-child(2) { border-right: none; }
      .cert-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-layout { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .cta-inner { flex-direction: column; text-align: center; }
      .cta-btns { justify-content: center; }
    }
    @media (max-width: 680px) {
      .prod-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .about-two-col { grid-template-columns: 1fr; }
      .ind-grid { grid-template-columns: repeat(2, 1fr); }
      .prod-cat-grid { grid-template-columns: 1fr; }
      .svc-grid { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .cap-grid { grid-template-columns: 1fr; }
      .stats-row { grid-template-columns: repeat(2, 1fr); }
      .cert-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .section { padding: 60px 0; }
    }

    /* ======== ANIMATIONS ======== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fade-up { animation: fadeUp .6s ease both; }
    .delay-1 { animation-delay: .1s; }
    .delay-2 { animation-delay: .2s; }
    .delay-3 { animation-delay: .3s; }
    .delay-4 { animation-delay: .4s; }