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

    :root {
      --navy: #174689;
      --deep: #152f4e;
      --dark: #0c1c30;
      --black: #060d17;
      --steel: #44464a;
      --slate: #64748b;
      --faint: #94a3b8;
      --border: #e2e8f0;
      --ice: #f1f5f9;
      --white: #ffffff;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      color: var(--steel);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      line-height: 1.6;
    }
    h1, h2, h3, h4, h5, h6, .label {
      font-family: 'Rajdhani', sans-serif;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    .w { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
    .w-narrow { max-width: 900px; margin: 0 auto; padding: 0 32px; }

    /* ===== NAV ===== */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(6,13,23,0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-in {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }
    .nav-logo img { height: 40px; width: auto; max-width: 180px; filter: brightness(0) invert(1) opacity(0.9); }
    .nav-links {
      display: flex;
      align-items: stretch;
      gap: 0;
      height: 100%;
    }
    .nav-links a {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: rgba(255,255,255,0.55);
      padding: 0 20px;
      border-radius: 0;
      transition: all 0.2s;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
    }
    .nav-links a:hover {
      color: var(--white);
      background: linear-gradient(180deg, rgba(23,70,137,0.5) 0%, rgba(23,70,137,0.3) 100%);
    }
    .nav-links a.active {
      color: var(--white);
      background: linear-gradient(180deg, var(--navy) 0%, rgba(23,70,137,0.7) 100%);
    }
    .nav-contact {
      color: var(--white) !important;
      background: var(--navy) !important;
      margin-left: 8px;
    }
    .nav-contact:hover { background: #1a52a0 !important; }
    .ham { display: none; background: none; border: none; cursor: pointer; color: var(--white); font-size: 1.4rem; }

    @media (max-width: 860px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 80px; left: 0; right: 0;
        background: rgba(6,13,23,0.97);
        padding: 12px 24px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
      }
      .nav-links.open a { padding: 12px 16px; width: 100%; }
      .ham { display: block; }
    }

    /* ===== VERTICAL ACCORDION HERO ===== */
    .acc-hero {
      display: flex;
      height: 85vh;
      min-height: 540px;
      overflow: hidden;
    }

    .acc-panel {
      position: relative;
      flex: 0.8;
      overflow: hidden;
      cursor: pointer;
      transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .acc-panel.active {
      flex: 5;
      cursor: default;
    }

    /* Backgrounds */
    .acc-panel .acc-bg {
      position: absolute; inset: 0;
    }
    .acc-panel .acc-bg img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), opacity 0.5s;
    }
    .acc-panel:not(.active) .acc-bg img {
      opacity: 0.4;
      transform: scale(1.05);
    }
    .acc-panel.active .acc-bg img {
      opacity: 0.75;
      transform: scale(1);
    }

    /* Gradients per panel */
    .acc-panel .acc-grad {
      position: absolute; inset: 0;
      transition: opacity 0.5s;
    }
    .acc-p1 .acc-grad { background: linear-gradient(35deg, rgba(6,13,23,0.97) 0%, rgba(6,13,23,0.9) 25%, rgba(12,28,48,0.7) 40%, rgba(40,100,190,0.35) 60%, rgba(80,150,225,0.3) 80%, rgba(110,175,240,0.25) 100%); }
    .acc-p2 .acc-grad { background: linear-gradient(35deg, rgba(6,13,23,0.97) 0%, rgba(12,28,48,0.88) 25%, rgba(23,70,137,0.55) 40%, rgba(50,120,200,0.35) 60%, rgba(80,155,230,0.28) 80%, rgba(110,175,240,0.22) 100%); }
    .acc-p3 .acc-grad { background: linear-gradient(35deg, rgba(6,13,23,0.97) 0%, rgba(12,28,48,0.88) 25%, rgba(23,70,137,0.5) 40%, rgba(50,120,200,0.3) 60%, rgba(80,155,230,0.25) 80%, rgba(110,175,240,0.2) 100%); }
    .acc-p4 .acc-grad { background: linear-gradient(35deg, rgba(6,13,23,0.97) 0%, rgba(6,13,23,0.9) 25%, rgba(21,47,78,0.65) 40%, rgba(45,110,195,0.35) 60%, rgba(75,145,220,0.28) 80%, rgba(110,175,240,0.22) 100%); }
    .acc-p5 .acc-grad { background: linear-gradient(35deg, rgba(6,13,23,0.97) 0%, rgba(23,70,137,0.85) 25%, rgba(23,70,137,0.5) 40%, rgba(50,120,200,0.3) 60%, rgba(80,150,225,0.25) 80%, rgba(110,175,240,0.2) 100%); }

    /* Collapsed: vertical label */
    .acc-collapsed {
      position: absolute; inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
      transition: opacity 0.4s;
    }
    .acc-panel.active .acc-collapsed { opacity: 0; pointer-events: none; }

    .acc-v-label {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      white-space: nowrap;
      transition: color 0.3s;
      padding: 24px 0;
      user-select: none;
    }
    .acc-panel:hover .acc-v-label { color: var(--white); }

    /* Collapsed border between panels */
    .acc-panel + .acc-panel {
      border-left: 1px solid rgba(255,255,255,0.02);
    }

    /* Expanded: content */
    .acc-expanded {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: flex;
      align-items: flex-end;
      opacity: 0;
      transition: opacity 0.5s 0.2s;
      pointer-events: none;
    }
    .acc-panel.active .acc-expanded {
      opacity: 1;
      pointer-events: auto;
    }

    .acc-inner {
      padding: 0 48px 56px;
      max-width: 640px;
    }
    .acc-tag {
      font-family: 'Rajdhani', sans-serif;
      color: var(--white);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .acc-tag::before {
      content: '';
      width: 32px; height: 1px;
      background: rgba(255,255,255,0.4);
    }
    .acc-inner h2 {
      color: var(--white);
      font-size: clamp(2rem, 4.5vw, 3.4rem);
      font-weight: 700;
      line-height: 0.95;
      letter-spacing: -0.01em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .acc-inner h2 .thin {
      display: block;
      font-weight: 300;
      font-size: 0.52em;
      color: rgba(255,255,255,0.4);
      margin-top: 8px;
      letter-spacing: 0;
      text-transform: none;
    }
    .acc-desc {
      color: rgba(255,255,255,0.5);
      font-size: 0.92rem;
      line-height: 1.65;
      max-width: 460px;
      margin-bottom: 28px;
    }
    .acc-btns { display: flex; flex-wrap: wrap; gap: 10px; }

    /* Panel number indicator */
    .acc-num {
      position: absolute;
      top: 20px; left: 50%; transform: translateX(-50%);
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      color: rgba(255,255,255,0.2);
      letter-spacing: 0.1em;
      z-index: 4;
      transition: opacity 0.3s;
    }
    .acc-panel.active .acc-num { opacity: 0; }

    /* Collapsed panel overlay — light top, dark navy bottom */
    .acc-panel:not(.active)::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(6,13,23,0.2) 0%, rgba(12,28,48,0.25) 40%, rgba(12,28,48,0.7) 75%, rgba(6,13,23,0.85) 100%);
      transition: background 0.3s;
      z-index: 2;
    }
    .acc-panel:not(.active):hover::after {
      background: linear-gradient(180deg, rgba(6,13,23,0.1) 0%, rgba(12,28,48,0.15) 40%, rgba(12,28,48,0.55) 75%, rgba(6,13,23,0.75) 100%);
    }

    @media (max-width: 800px) {
      .acc-hero {
        flex-direction: column;
        height: auto;
        min-height: 0;
      }
      .acc-panel {
        flex: none !important;
        height: 60px;
        transition: height 0.5s cubic-bezier(0.4,0,0.2,1);
      }
      .acc-panel.active {
        height: 75vh;
        min-height: 420px;
      }
      .acc-panel + .acc-panel {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.06);
      }
      .acc-v-label {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 0.75rem;
      }
      .acc-inner { padding: 0 24px 40px; }
      .acc-num { top: auto; bottom: 8px; left: 50%; }
    }

    /* ===== UH-60 BAR ===== */
    .uh60-bar {
      position: relative;
      overflow: hidden;
      background: var(--deep);
    }
    .uh60-bar-bg {
      position: absolute; inset: 0;
    }
    .uh60-bar-bg img {
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.15;
    }
    .uh60-bar-grad {
      position: absolute; inset: 0;
      background: linear-gradient(90deg, var(--navy) 0%, rgba(21,47,78,0.9) 50%, rgba(21,47,78,0.7) 100%);
    }
    .uh60-inner {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
      padding: 36px 0;
    }
    .uh60-text { max-width: 620px; }
    .uh60-text h3 {
      color: var(--white);
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      margin-bottom: 6px;
    }
    .uh60-text h3 em {
      font-style: normal;
      font-weight: 300;
      opacity: 0.6;
    }
    .uh60-text p {
      color: rgba(255,255,255,0.55);
      font-size: 0.85rem;
      line-height: 1.6;
    }
    .uh60-actions { display: flex; gap: 10px; flex-shrink: 0; }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: inherit; font-weight: 700; font-size: 0.82rem;
      padding: 14px 28px; border-radius: 4px;
      border: none; cursor: pointer; transition: all 0.25s;
      letter-spacing: 0.02em;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-w { background: var(--white); color: var(--dark); }
    .btn-w:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
    .btn-o { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); }
    .btn-o:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
    .btn-n { background: var(--navy); color: var(--white); }
    .btn-n:hover { box-shadow: 0 12px 32px rgba(23,70,137,0.3); background: #1a52a0; }
    .btn-wn { background: var(--white); color: var(--navy); }
    .btn-wn:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
    .btn-go { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
    .btn-go:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

    /* ===== INTRO STATEMENT ===== */
    .intro {
      padding: 100px 0;
      background: var(--white);
      position: relative;
      overflow: hidden;
    }
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 0.8fr;
      gap: 64px;
      align-items: center;
    }
    @media (max-width: 800px) { .intro-grid { grid-template-columns: 1fr; gap: 40px; } }

    .intro-header {
      margin-bottom: 32px;
    }
    .intro-logo {
      height: 56px;
      opacity: 0.85;
    }
    .intro-text {
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
      font-weight: 600;
      line-height: 1.5;
      color: var(--dark);
      letter-spacing: -0.01em;
    }
    .intro-text em {
      font-style: normal;
      color: var(--navy);
    }
    .intro-sub {
      margin-top: 24px;
      font-size: 0.88rem;
      color: var(--slate);
      max-width: 560px;
      line-height: 1.7;
    }

    /* Masked image */
    .intro-visual {
      position: relative;
    }
    .intro-img-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 4/5;
      overflow: hidden;
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500'%3E%3Cpath d='M40,0 L360,0 Q400,0 400,40 L400,400 Q400,500 300,500 L100,480 Q0,470 0,370 L0,40 Q0,0 40,0Z' fill='black'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500'%3E%3Cpath d='M40,0 L360,0 Q400,0 400,40 L400,400 Q400,500 300,500 L100,480 Q0,470 0,370 L0,40 Q0,0 40,0Z' fill='black'/%3E%3C/svg%3E");
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
    }
    .intro-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .intro-img-badge {
      position: absolute;
      bottom: 32px;
      left: -20px;
      background: var(--navy);
      color: var(--white);
      padding: 20px 24px;
      z-index: 2;
    }
    .intro-img-badge .big {
      font-family: 'Rajdhani', sans-serif;
      font-size: 2.4rem;
      font-weight: 700;
      line-height: 1;
    }
    .intro-img-badge .small {
      font-size: 0.68rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      opacity: 0.65;
      margin-top: 2px;
    }

    /* ===== CAPABILITIES ===== */
    .cap-section {
      padding: 100px 0;
      background: var(--ice);
    }
    .cap-header {
      margin-bottom: 56px;
    }
    .cap-header .label {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--navy);
      margin-bottom: 12px;
    }
    .cap-header h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: var(--dark);
      letter-spacing: 0.01em;
      text-transform: uppercase;
    }

    .cap-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    @media (max-width: 900px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 550px) { .cap-grid { grid-template-columns: 1fr; } }

    .cap-card {
      background: var(--white);
      padding: 40px 32px;
      border: 1px solid var(--border);
      margin: -0.5px;
      transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
      position: relative;
      cursor: default;
    }
    .cap-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 32px; right: 32px;
      height: 2px;
      background: var(--navy);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    }
    .cap-card:hover {
      background: var(--white);
      box-shadow: 0 24px 64px rgba(23,70,137,0.12);
      transform: translateY(-8px);
      z-index: 2;
      border-color: transparent;
    }
    .cap-card:hover::after { transform: scaleX(1); }
    .cap-card i {
      font-size: 1.6rem;
      color: var(--navy);
      display: block;
      margin-bottom: 20px;
      transition: transform 0.3s;
    }
    .cap-card:hover i { transform: translateX(4px); }
    .cap-card h4 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .cap-card p {
      font-size: 0.82rem;
      color: var(--slate);
      line-height: 1.6;
    }
    .cap-card .learn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--navy);
      margin-top: 16px;
      opacity: 0;
      transform: translateY(8px);
      transition: all 0.3s;
    }
    .cap-card:hover .learn {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== AUTHORITY (SPLIT) ===== */
    .authority {
      padding: 100px 0;
      background: var(--white);
    }
    .auth-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    @media (max-width: 800px) { .auth-grid { grid-template-columns: 1fr; gap: 48px; } }

    .auth-img {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
    }
    .auth-img img {
      width: 100%;
      min-height: 440px;
      object-fit: cover;
    }
    .auth-img .overlay-tag {
      position: absolute;
      bottom: 24px; left: 24px;
      background: var(--navy);
      color: var(--white);
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      padding: 8px 16px;
      border-radius: 3px;
    }

    .auth-text .label {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--navy);
      margin-bottom: 12px;
    }
    .auth-text h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: var(--dark);
      letter-spacing: 0.01em;
      text-transform: uppercase;
      margin-bottom: 20px;
      line-height: 1.15;
    }
    .auth-text > p {
      color: var(--slate);
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .auth-item {
      display: flex;
      gap: 14px;
      padding: 14px 0;
      border-top: 1px solid var(--border);
    }
    .auth-item:last-child { border-bottom: 1px solid var(--border); }
    .auth-item i {
      color: var(--navy);
      font-size: 1.1rem;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .auth-item strong { color: var(--dark); }
    .auth-item p { font-size: 0.88rem; line-height: 1.55; }

    /* ===== DARK SPLIT (WHY US) ===== */
    .why-section {
      background: var(--dark);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    .why-section::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      border: 1px solid rgba(255,255,255,0.03);
      border-radius: 50%;
    }
    .why-header {
      margin-bottom: 64px;
      max-width: 500px;
    }
    .why-header .label {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(255,255,255,0.3);
      margin-bottom: 12px;
    }
    .why-header h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.01em;
      text-transform: uppercase;
      line-height: 1.1;
      margin-bottom: 12px;
    }
    .why-header p {
      color: rgba(255,255,255,0.4);
      font-size: 0.92rem;
      line-height: 1.6;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.05);
      border-radius: 6px;
      overflow: hidden;
    }
    @media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }

    .why-card {
      background: var(--dark);
      padding: 36px 32px;
      transition: all 0.4s;
      position: relative;
    }
    .why-card:hover {
      background: rgba(23,70,137,0.15);
    }
    .why-card i {
      font-size: 1.3rem;
      color: var(--navy);
      display: block;
      margin-bottom: 16px;
    }
    .why-card h4 {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }
    .why-card p {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
      line-height: 1.55;
    }

    /* ===== PLATFORM HERO ===== */
    .platform-hero {
      position: relative;
      min-height: 500px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .platform-hero .bg {
      position: absolute; inset: 0;
    }
    .platform-hero .bg img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .platform-hero .grad {
      position: absolute; inset: 0;
      background: linear-gradient(90deg, var(--black) 0%, rgba(12,28,48,0.85) 40%, rgba(23,70,137,0.3) 100%);
    }
    .platform-content {
      position: relative;
      z-index: 2;
      max-width: 520px;
      padding: 80px 0;
    }
    .platform-content .label {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(255,255,255,0.35);
      margin-bottom: 12px;
    }
    .platform-content h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.01em;
      text-transform: uppercase;
      margin-bottom: 16px;
      line-height: 1.12;
    }
    .platform-content p {
      color: rgba(255,255,255,0.55);
      font-size: 0.92rem;
      line-height: 1.7;
      margin-bottom: 28px;
    }

    /* ===== ENGINEERING SPLIT ===== */
    .eng-section {
      padding: 100px 0;
      background: var(--ice);
    }
    .eng-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    @media (max-width: 800px) { .eng-grid { grid-template-columns: 1fr; gap: 48px; } }

    .eng-text .label {
      font-size: 0.7rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.18em;
      color: var(--navy); margin-bottom: 12px;
    }
    .eng-text h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700; color: var(--dark);
      letter-spacing: 0.01em; text-transform: uppercase; margin-bottom: 20px; line-height: 1.1;
    }
    .eng-text > p {
      color: var(--slate); line-height: 1.7; margin-bottom: 28px;
    }
    .eng-list li {
      display: flex; gap: 12px; padding: 12px 0; font-size: 0.9rem;
    }
    .eng-list li i { color: var(--navy); margin-top: 2px; flex-shrink: 0; }
    .eng-list strong { color: var(--dark); }

    .eng-img { border-radius: 6px; overflow: hidden; }
    .eng-img img { width: 100%; min-height: 360px; object-fit: cover; }

    /* ===== CTA ===== */
    .cta-section {
      background: var(--navy);
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 360px;
    }
    @media (max-width: 700px) { .cta-section { grid-template-columns: 1fr; } }

    .cta-left {
      padding: 72px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .cta-left .label {
      font-size: 0.7rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.18em;
      color: rgba(255,255,255,0.3); margin-bottom: 12px;
    }
    .cta-left h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700; color: var(--white);
      letter-spacing: 0.01em; text-transform: uppercase; margin-bottom: 16px; line-height: 1.1;
    }
    .cta-left p {
      color: rgba(255,255,255,0.55); font-size: 0.92rem;
      line-height: 1.6; margin-bottom: 28px; max-width: 400px;
    }
    .cta-left .btns { display: flex; flex-wrap: wrap; gap: 12px; }

    .cta-right {
      background: var(--deep);
      padding: 72px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 24px;
    }
    .cta-contact {
      display: flex; align-items: center; gap: 16px;
      color: rgba(255,255,255,0.7); font-size: 0.9rem;
    }
    .cta-contact i {
      font-size: 1.3rem;
      color: rgba(255,255,255,0.3);
    }
    .cta-contact a { color: var(--white); font-weight: 600; }
    .cta-contact a:hover { opacity: 0.8; }
    .cta-contact small { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 2px; }

    /* ===== FOOTER ===== */
    .foot-top {
      background: var(--dark);
      padding: 72px 0 48px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .foot-top-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    .foot-top-brand img {
      height: 36px;
      width: auto;
      max-width: 160px;
      filter: brightness(0) invert(1) opacity(0.8);
      margin-bottom: 16px;
    }
    .foot-top-brand p {
      color: rgba(255,255,255,0.4);
      font-size: 0.88rem;
      max-width: 360px;
      line-height: 1.7;
    }
    .foot-top-cta {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .foot-top-cta .foot-contact {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,0.5);
      font-size: 0.85rem;
    }
    .foot-contact i {
      font-size: 1.3rem;
      color: var(--navy);
    }
    .foot-contact a { color: rgba(255,255,255,0.7); font-weight: 600; }
    .foot-contact a:hover { color: var(--white); }
    .foot-contact small { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.25); margin-top: 2px; }

    footer {
      background: var(--black);
      color: rgba(255,255,255,0.35);
      padding: 64px 0 24px;
      font-size: 0.82rem;
    }
    .foot-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 48px;
    }
    @media (max-width: 700px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
    footer h6 {
      color: rgba(255,255,255,0.55);
      font-size: 0.68rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.16em;
      margin-bottom: 18px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    footer ul li { margin-bottom: 10px; }
    footer a { transition: color 0.15s; }
    footer a:hover { color: rgba(255,255,255,0.7); }

    .foot-social {
      display: flex;
      gap: 8px;
      margin-top: 20px;
    }
    .foot-social a {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.3);
      font-size: 1rem;
      transition: all 0.2s;
    }
    .foot-social a:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

    .foot-certifications {
      display: flex;
      gap: 16px;
      margin-top: 24px;
      flex-wrap: wrap;
    }
    .foot-cert {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border: 1px solid rgba(255,255,255,0.06);
      font-size: 0.72rem;
      color: rgba(255,255,255,0.3);
      font-weight: 600;
    }
    .foot-cert i { color: var(--navy); font-size: 0.9rem; }

    .foot-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      margin-top: 48px;
      padding-top: 24px;
      display: flex; flex-wrap: wrap;
      justify-content: space-between; gap: 12px;
      font-size: 0.7rem;
    }
    .foot-bottom a { margin-left: 20px; }

    /* ===== ANIMATIONS ===== */
    .rv { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1); }
    .rv.vis { opacity: 1; transform: translateY(0); }
    .rv-l { opacity: 0; transform: translateX(-20px); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
    .rv-l.vis { opacity: 1; transform: translateX(0); }
    .rv-r { opacity: 0; transform: translateX(20px); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
    .rv-r.vis { opacity: 1; transform: translateX(0); }

    /* ===== SITE-WIDE (header/footer applied to every page) ===== */
    /* The nav is fixed (80px). The front page hero sits under it by design;
       every other page needs clearance so content isn't hidden behind it. */
    body:not(.home):not(.elementor-editor-active) { padding-top: 80px; }
    /* Elementor location wrappers must not add their own spacing. */
    .elementor-location-header, .elementor-location-footer { margin: 0; padding: 0; }

    /* ===== NATIVE-SECTION LAYOUT =====
       CSS-grid columns for the native Elementor sections, targeted by the
       container CSS IDs (Elementor renders _element_id reliably). */
    #pa-cap-grid, #pa-why-grid, #pa-intro-row, #pa-auth-row, #pa-eng-row, #pa-uh60-row, #pa-cta-row { display: grid !important; }
    #pa-cap-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    #pa-why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    #pa-intro-row { grid-template-columns: 1.3fr 1fr; align-items: center; }
    #pa-auth-row, #pa-eng-row { grid-template-columns: 1fr 1fr; align-items: center; }
    #pa-uh60-row { grid-template-columns: 1fr auto; align-items: center; }
    #pa-cta-row { grid-template-columns: 1fr 1fr; }
    #pa-platform-content { max-width: 560px; }
    @media (max-width: 960px) { #pa-cap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
    @media (max-width: 820px) {
      #pa-intro-row, #pa-auth-row, #pa-eng-row, #pa-uh60-row, #pa-cta-row { grid-template-columns: 1fr; }
      #pa-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 560px) { #pa-cap-grid, #pa-why-grid { grid-template-columns: 1fr; } }

    /* ===== NATIVE CARD HOVER (Capabilities / Why Us) =====
       Restores the original hover behaviour on the native icon-box cards.
       Cards are the direct container children of the grid wrappers. */
    #pa-cap-grid > .e-con {
      position: relative;
      transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s cubic-bezier(.16,1,.3,1), border-color .4s;
    }
    #pa-cap-grid > .e-con::after {
      content: '';
      position: absolute;
      left: 32px; right: 32px; bottom: 0;
      height: 2px;
      background: var(--navy, #174689);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s cubic-bezier(.16,1,.3,1);
      pointer-events: none;
    }
    #pa-cap-grid > .e-con:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 64px rgba(23,70,137,.12);
      border-color: transparent !important;
      z-index: 2;
    }
    #pa-cap-grid > .e-con:hover::after { transform: scaleX(1); }
    #pa-cap-grid > .e-con .elementor-icon-box-icon { transition: transform .3s; }
    #pa-cap-grid > .e-con:hover .elementor-icon-box-icon { transform: translateX(4px); }

    /* Why Us cards — navy tint on hover */
    #pa-why-grid > .e-con { transition: background-color .4s, transform .4s; }
    #pa-why-grid > .e-con:hover { background-color: rgba(23,70,137,.15) !important; }
