    :root {
      --navy: #0b2545;
      --navy-2: #13315c;
      --gold: #1d4ed8;
      --ink: #1a1a1a;
      --muted: #6b7280;
      --bg: #ffffff;
      --soft: #f6f7f9;
      --line: #e5e7eb;
      --shadow: 0 10px 30px rgba(11, 37, 69, .08);
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Inter', sans-serif;
      color: var(--navy);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -.5px;
    }

    h1 {
      font-size: clamp(2rem, 4.5vw, 3.4rem);
      font-weight: 900;
    }

    h2 {
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      font-weight: 800;
    }

    h3 {
      font-size: 1.15rem;
      font-weight: 700
    }

    a {
      text-decoration: none;
      color: inherit
    }

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

    .btn {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 4px;
      font-weight: 500;
      font-size: .95rem;
      letter-spacing: .3px;
      transition: all .25s ease;
      border: 1.5px solid transparent;
    }

    .btn-primary {
      background: var(--navy);
      color: #fff
    }

    .btn-primary:hover {
      background: var(--navy-2)
    }

    .btn-outline {
      border-color: #fff;
      color: #fff
    }

    .btn-outline:hover {
      background: #fff;
      color: var(--navy)
    }

    .btn-ghost {
      border-color: var(--navy);
      color: var(--navy)
    }

    .btn-ghost:hover {
      background: var(--navy);
      color: #fff
    }

    /* HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, .96);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .brand-mark {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .brand-name {
      font-family: 'Inter', sans-serif;
      font-size: 1.2rem;
      color: var(--navy);
      font-weight: 700;
      letter-spacing: 1.8px;
      line-height: 1.1;
    }

    /* Footer brand uses lighter logo treatment */
    footer .brand-mark { width: 50px; height: 50px }

    .nav-links {
      display: flex;
      gap: 28px;
      align-items: center
    }

    .nav-links a {
      font-size: .93rem;
      color: var(--ink);
      font-weight: 500;
      transition: color .2s
    }

    .nav-links a:hover {
      color: var(--gold)
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--navy);
      cursor: pointer
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      color: #fff;
      overflow: hidden;
      isolation: isolate;
      padding: 100px 0 80px;
    }

    .hero {
      --mx: 0;
      --my: 0;
      perspective: 1400px;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: -4%;
      background:
        linear-gradient(108deg, rgba(11, 37, 69, .82) 0%, rgba(11, 37, 69, .58) 55%, rgba(11, 37, 69, .38) 100%),
        url('https://images.unsplash.com/photo-1554224154-26032ffc0d07?w=1900&q=85') center/cover;
      z-index: -2;
      transform: translate3d(calc(var(--mx) * -22px), calc(var(--my) * -22px), 0) scale(1.08);
      transition: transform .8s cubic-bezier(.2, .9, .3, 1);
      will-change: transform;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(900px 480px at 14% 22%, rgba(29,78,216, .22), transparent 70%),
        radial-gradient(700px 540px at 96% 88%, rgba(29,78,216, .14), transparent 70%);
      z-index: -1;
      pointer-events: none;
    }

    /* Floating geometric shapes (3D parallax) */
    .hero-shape {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(2px);
      opacity: .55;
      will-change: transform;
      transition: transform .9s cubic-bezier(.2, .9, .3, 1);
    }

    .hero-shape-1 {
      width: 280px;
      height: 280px;
      top: 14%;
      right: 8%;
      background: radial-gradient(circle, rgba(29,78,216, .35), transparent 70%);
      transform: translate3d(calc(var(--mx) * 40px), calc(var(--my) * 40px), 0);
      animation: floatY 7s ease-in-out infinite;
    }

    .hero-shape-2 {
      width: 200px;
      height: 200px;
      bottom: 18%;
      right: 26%;
      background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 70%);
      transform: translate3d(calc(var(--mx) * -30px), calc(var(--my) * -30px), 0);
      animation: floatY 9s ease-in-out infinite reverse;
    }

    .hero-shape-3 {
      width: 140px;
      height: 140px;
      top: 60%;
      left: 8%;
      background: radial-gradient(circle, rgba(29,78,216, .28), transparent 70%);
      transform: translate3d(calc(var(--mx) * 24px), calc(var(--my) * 24px), 0);
      animation: floatY 11s ease-in-out infinite;
    }

    @keyframes floatY {
      0%, 100% { translate: 0 0 }
      50% { translate: 0 -28px }
    }

    .hero .container {
      position: relative;
      z-index: 1;
    }

    .hero-content {
      max-width: 760px;
      text-align: left;
      transform-style: preserve-3d;
      transform:
        rotateY(calc(var(--mx) * 3.5deg))
        rotateX(calc(var(--my) * -3.5deg));
      transition: transform .35s cubic-bezier(.2, .9, .3, 1);
      will-change: transform;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px;
      border-radius: 100px;
      background: rgba(255, 255, 255, .08);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, .18);
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 26px;
      opacity: 0;
      animation: heroFadeUp .9s ease .15s forwards;
    }

    .hero-eyebrow .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 0 rgba(29,78,216, .7);
      animation: pulse 2s ease-out infinite;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(29,78,216, .7)
      }

      80% {
        box-shadow: 0 0 0 10px rgba(29,78,216, 0)
      }

      100% {
        box-shadow: 0 0 0 0 rgba(29,78,216, 0)
      }
    }

    .hero-h1 {
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: clamp(2.8rem, 6.8vw, 5.4rem);
      line-height: 1.02;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 26px;
      opacity: 0;
      transform: translateZ(60px);
      animation: heroFadeUp 1s ease .3s forwards;
      text-shadow: 0 4px 30px rgba(0, 0, 0, .25);
    }

    .hero-h1 .line-2 {
      display: inline-block;
      position: relative;
    }

    .hero-h1 .line-2::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 80px;
      height: 4px;
      background: var(--gold);
      border-radius: 2px;
      transform: scaleX(0);
      transform-origin: left;
      animation: barGrow 1s ease 1.2s forwards;
    }

    @keyframes barGrow {
      to { transform: scaleX(1) }
    }

    .hero-sub {
      font-size: 1.1rem;
      max-width: 560px;
      margin: 28px 0 36px;
      opacity: 0;
      font-weight: 300;
      line-height: 1.75;
      color: rgba(255, 255, 255, .92);
      transform: translateZ(30px);
      animation: heroFadeUp 1s ease .55s forwards;
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateZ(20px);
      animation: heroFadeUp 1s ease .75s forwards;
    }

    .hero-cta .btn {
      padding: 14px 32px;
      border-radius: 4px;
      font-weight: 600;
      font-size: .95rem;
      letter-spacing: .3px;
    }

    .btn-hero-solid {
      background: #fff;
      color: var(--navy);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
    }

    .btn-hero-solid:hover {
      background: var(--gold);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(29,78,216, .4);
    }

    .btn-hero-ghost {
      background: rgba(255, 255, 255, .06);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1.5px solid rgba(255, 255, 255, .55);
      color: #fff;
    }

    .btn-hero-ghost:hover {
      background: #fff;
      color: var(--navy);
      border-color: #fff;
      transform: translateY(-2px);
    }

    .hero-meta {
      display: flex;
      gap: 38px;
      margin-top: 56px;
      padding-top: 28px;
      border-top: 1px solid rgba(255, 255, 255, .15);
      opacity: 0;
      animation: heroFadeUp 1s ease .8s forwards;
    }

    .hero-meta-item .num {
      font-family: 'Inter', sans-serif;
      font-size: 1.7rem;
      color: var(--gold);
      font-weight: 700;
      line-height: 1;
    }

    .hero-meta-item .lbl {
      font-size: .78rem;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      opacity: .75;
      margin-top: 6px;
    }

    .hero-scroll {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, .7);
      font-size: .72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      opacity: 0;
      animation: heroFadeUp 1s ease 1s forwards;
    }

    .hero-scroll .line {
      width: 1px;
      height: 36px;
      background: linear-gradient(to bottom, transparent, var(--gold));
      animation: scrollLine 2s ease-in-out infinite;
    }

    @keyframes scrollLine {

      0%,
      100% {
        transform: scaleY(.4);
        transform-origin: top
      }

      50% {
        transform: scaleY(1);
        transform-origin: top
      }
    }

    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translateY(24px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* CHAT WIDGET */
    .chat-widget {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 90;
      background: #fff;
      border-radius: 14px;
      padding: 12px 16px 12px 12px;
      box-shadow: 0 12px 32px rgba(11, 37, 69, .18);
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      transition: transform .25s ease, box-shadow .25s ease;
      animation: heroFadeUp .8s ease 1.4s both;
    }

    .chat-widget:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 42px rgba(11, 37, 69, .25);
    }

    .chat-widget .avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), #2563eb);
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 1rem;
    }

    .chat-widget .text .top {
      font-size: .72rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .chat-widget .text .top::after {
      content: '\25CF \25CF \25CF';
      color: #2563eb;
      font-size: .5rem;
      letter-spacing: 2px;
      animation: typingDots 1.4s infinite;
    }

    .chat-widget .text .label {
      font-size: .9rem;
      font-weight: 600;
      color: var(--ink);
      margin-top: 2px;
    }

    @keyframes typingDots {

      0%,
      100% {
        opacity: .3
      }

      50% {
        opacity: 1
      }
    }

    /* SECTIONS */
    section {
      padding: 80px 0
    }

    .section-head {
      text-align: center;
      margin-bottom: 56px
    }

    .section-head h2 {
      margin-bottom: 10px
    }

    .section-head p {
      color: var(--muted);
      font-size: 1.05rem
    }

    .accent-bar {
      width: 60px;
      height: 3px;
      background: var(--gold);
      margin: 14px auto 0
    }

    /* WHY US GRID */
    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px
    }

    /* WHY US (about) */
    #about {
      background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 65%);
      position: relative;
      overflow: hidden;
    }
    #about::before {
      content: '';
      position: absolute;
      top: 8%; right: -8%;
      width: 460px; height: 460px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(254, 215, 170, .42), transparent 70%);
      filter: blur(10px);
      pointer-events: none;
    }
    #about::after {
      content: '';
      position: absolute;
      bottom: -8%; left: -6%;
      width: 380px; height: 380px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(186, 230, 253, .42), transparent 70%);
      filter: blur(10px);
      pointer-events: none;
    }
    #about .container { position: relative; z-index: 1 }

    .why-grid { perspective: 1200px; gap: 18px }

    .why-card {
      --tx: 0deg;
      --ty: 0deg;
      --lift: 0px;
      padding: 32px 18px 24px;
      background: transparent;
      border-top: none;
      text-align: center;
      transform: translateY(var(--lift)) rotateX(var(--tx)) rotateY(var(--ty));
      transform-style: preserve-3d;
      transition: transform .4s cubic-bezier(.2, .9, .3, 1);
      will-change: transform;
    }
    .why-card:hover { --lift: -6px }

    .why-icon {
      width: 88px; height: 88px;
      border-radius: 50%;
      display: grid; place-items: center;
      margin: 0 auto 28px;
      position: relative;
      transform: translateZ(50px);
      animation: iconFloat 5.5s ease-in-out infinite;
    }
    .why-icon svg {
      width: 34px; height: 34px;
      stroke-width: 2.2;
    }
    .why-icon::after {
      content: '';
      position: absolute;
      inset: -14px;
      border-radius: 50%;
      z-index: -1;
      filter: blur(10px);
      opacity: .5;
    }

    .why-icon-1 {
      background: linear-gradient(135deg, #dbeafe, #bfdbfe);
      color: #2563eb;
    }
    .why-icon-1::after { background: radial-gradient(circle, rgba(37, 99, 235, .45), transparent 70%) }

    .why-icon-2 {
      background: linear-gradient(135deg, #d1fae5, #a7f3d0);
      color: #059669;
      animation-delay: -1.4s;
    }
    .why-icon-2::after { background: radial-gradient(circle, rgba(5, 150, 105, .45), transparent 70%) }

    .why-icon-3 {
      background: linear-gradient(135deg, #ede9fe, #ddd6fe);
      color: #7c3aed;
      animation-delay: -2.8s;
    }
    .why-icon-3::after { background: radial-gradient(circle, rgba(124, 58, 237, .45), transparent 70%) }

    .why-icon-4 {
      background: linear-gradient(135deg, #ffedd5, #fed7aa);
      color: #ea580c;
      animation-delay: -4.2s;
    }
    .why-icon-4::after { background: radial-gradient(circle, rgba(234, 88, 12, .45), transparent 70%) }

    @keyframes iconFloat {
      0%, 100% { transform: translateZ(50px) translateY(0) }
      50% { transform: translateZ(60px) translateY(-10px) }
    }

    .why-card h3 {
      margin-bottom: 14px;
      font-size: 1.2rem;
      color: var(--navy);
      transform: translateZ(28px);
    }

    .why-card p {
      color: var(--muted);
      font-size: .94rem;
      line-height: 1.7;
      max-width: 270px;
      margin: 0 auto;
      transform: translateZ(14px);
    }

    /* PRACTICE AREAS */
    .practice {
      background: var(--soft)
    }

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

    /* Practice section premium look */
    .practice {
      background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
      position: relative;
      overflow: hidden;
    }
    .practice::before {
      content: '';
      position: absolute;
      top: 6%; left: -8%;
      width: 460px; height: 460px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(186, 230, 253, .42), transparent 70%);
      filter: blur(10px);
      pointer-events: none;
    }
    .practice::after {
      content: '';
      position: absolute;
      bottom: -8%; right: -6%;
      width: 420px; height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(254, 215, 170, .42), transparent 70%);
      filter: blur(10px);
      pointer-events: none;
    }
    .practice .container { position: relative; z-index: 1 }

    /* 5-card centered grid: 3 + 2 centered */
    .practice-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 26px;
      perspective: 1200px;
    }
    .practice-grid > .practice-card { grid-column: span 2 }
    .practice-grid > .practice-card:nth-child(4) { grid-column: 2 / span 2 }
    .practice-grid > .practice-card:nth-child(5) { grid-column: 4 / span 2 }

    .practice-card {
      --tx: 0deg;
      --ty: 0deg;
      --lift: 0px;
      background: #fff;
      padding: 14px 14px 28px;
      border-radius: 16px;
      border: 1px solid rgba(11, 37, 69, .06);
      box-shadow: 0 6px 22px rgba(11, 37, 69, .05);
      text-align: left;
      position: relative;
      transform: translateY(var(--lift)) rotateX(var(--tx)) rotateY(var(--ty));
      transform-style: preserve-3d;
      transition: transform .45s cubic-bezier(.2, .9, .3, 1), box-shadow .35s ease, border-color .35s ease;
      will-change: transform;
      overflow: hidden;
    }
    .practice-card:hover {
      --lift: -8px;
      box-shadow: 0 28px 60px rgba(11, 37, 69, .14);
      border-color: rgba(29,78,216, .3);
    }

    .practice-img {
      height: 200px;
      border-radius: 12px;
      background-size: cover;
      background-position: center;
      margin-bottom: 22px;
      position: relative;
      overflow: hidden;
      transform: translateZ(40px);
      transition: transform .6s cubic-bezier(.2, .9, .3, 1);
    }
    .practice-img::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(11, 37, 69, .25) 100%);
      transition: opacity .35s ease;
    }
    .practice-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: inherit;
      background-size: cover;
      background-position: center;
      transition: transform .8s cubic-bezier(.2, .9, .3, 1);
      z-index: -1;
    }
    .practice-card:hover .practice-img {
      transform: translateZ(55px);
    }
    .practice-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(6px);
      color: var(--navy);
      padding: 6px 12px;
      border-radius: 100px;
      font-size: .72rem;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      font-weight: 600;
      z-index: 2;
    }

    .practice-card h3 {
      margin: 0 16px 12px;
      font-size: 1.2rem;
      color: var(--navy);
      transform: translateZ(24px);
    }

    .practice-card p {
      color: var(--muted);
      font-size: .94rem;
      line-height: 1.7;
      margin: 0 16px 20px;
      transform: translateZ(14px);
    }

    .learn-more {
      color: var(--navy);
      font-weight: 600;
      font-size: .9rem;
      letter-spacing: .3px;
      margin: 0 16px;
      transform: translateZ(8px);
      display: inline-block;
      transition: color .25s ease, transform .25s ease;
    }
    .learn-more:hover {
      color: var(--gold);
    }

    @media (max-width: 960px) {
      .practice-grid { grid-template-columns: 1fr; gap: 20px }
      .practice-grid > .practice-card,
      .practice-grid > .practice-card:nth-child(4),
      .practice-grid > .practice-card:nth-child(5) { grid-column: 1 }
    }

    /* EXCELLENCE GRID */
    .excellence-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 40px;
      perspective: 1200px;
    }

    .excellence-card {
      --tx: 0deg;
      --ty: 0deg;
      --lift: 0px;
      position: relative;
      height: 260px;
      border-radius: 12px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      transform: translateY(var(--lift)) rotateX(var(--tx)) rotateY(var(--ty));
      transform-style: preserve-3d;
      transition: transform .45s cubic-bezier(.2, .9, .3, 1), box-shadow .35s ease;
      will-change: transform;
      box-shadow: 0 8px 22px rgba(11, 37, 69, .08);
      cursor: pointer;
    }
    .excellence-card:hover {
      --lift: -8px;
      box-shadow: 0 26px 50px rgba(11, 37, 69, .22);
    }

    .excellence-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11, 37, 69, .92) 0%, transparent 60%);
      transition: background .35s ease;
    }
    .excellence-card:hover::after {
      background: linear-gradient(to top, rgba(11, 37, 69, .96) 0%, rgba(11, 37, 69, .15) 70%);
    }

    .excellence-card .label {
      position: absolute;
      bottom: 18px;
      left: 18px;
      right: 18px;
      z-index: 2;
      color: #fff;
      transform: translateZ(40px);
    }

    .excellence-card .label h3 {
      color: #fff;
      font-size: 1.1rem;
      margin-bottom: 4px
    }

    .excellence-card .label p {
      font-size: .85rem;
      opacity: .9
    }

    /* CYBERSECURITY */
    .cyber-section { background: linear-gradient(180deg, #fff 0%, var(--soft) 100%) }
    .cyber-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center }
    .cyber-text h2 { color: var(--navy); margin-bottom: 8px; line-height: 1.15 }
    .cyber-list { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 14px }
    .cyber-list li {
      position: relative; padding: 14px 16px 14px 48px;
      background: #fff; border: 1px solid var(--line); border-radius: 8px;
      font-size: .94rem; color: #374151; line-height: 1.65;
      transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
    }
    .cyber-list li:hover { border-color: var(--gold); transform: translateX(4px); box-shadow: 0 8px 22px rgba(11,37,69,.07) }
    .cyber-list li::before {
      content: '\2713'; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--navy); color: var(--gold);
      display: grid; place-items: center; font-size: .75rem; font-weight: 700;
    }
    .cyber-list li strong { color: var(--navy); font-weight: 600 }
    .cyber-visual { position: relative }
    .cyber-card {
      background: var(--navy); color: #fff; border-radius: 12px;
      padding: 26px 28px; box-shadow: 0 24px 60px rgba(11,37,69,.25);
      position: relative; overflow: hidden;
    }
    .cyber-card::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(400px 200px at 100% 0%, rgba(29,78,216,.18), transparent 60%);
      pointer-events: none;
    }
    .cyber-card::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      top: 0;
      height: 90px;
      pointer-events: none;
      z-index: 2;
      background: linear-gradient(180deg,
        transparent 0%,
        rgba(74, 222, 128, .08) 50%,
        rgba(74, 222, 128, .55) 92%,
        rgba(74, 222, 128, .85) 99%,
        transparent 100%);
      filter: blur(.6px);
      animation: scanSweep 4.5s ease-in-out infinite;
      mix-blend-mode: screen;
    }
    @keyframes scanSweep {
      0%   { transform: translateY(-100px); opacity: 0 }
      8%   { opacity: 1 }
      92%  { opacity: 1 }
      100% { transform: translateY(420px); opacity: 0 }
    }
    .cyber-card-head {
      display: flex; align-items: center; gap: 10px;
      font-size: .8rem; letter-spacing: 1.6px; text-transform: uppercase;
      color: rgba(255,255,255,.7); padding-bottom: 16px; margin-bottom: 12px;
      border-bottom: 1px solid rgba(255,255,255,.12);
      position: relative; z-index: 1;
    }
    .cyber-status {
      width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
      box-shadow: 0 0 0 0 rgba(34,197,94,.7);
      animation: pulse-green 1.8s ease-out infinite;
    }
    @keyframes pulse-green {
      0% { box-shadow: 0 0 0 0 rgba(34,197,94,.7) }
      80% { box-shadow: 0 0 0 8px rgba(34,197,94,0) }
      100% { box-shadow: 0 0 0 0 rgba(34,197,94,0) }
    }
    .cyber-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 12px 0; font-size: .92rem;
      border-bottom: 1px dashed rgba(255,255,255,.08);
      position: relative; z-index: 1;
    }
    .cyber-row:last-of-type { border-bottom: none }
    .cyber-row .ok, .cyber-row .warn {
      font-size: .72rem; font-weight: 600; padding: 4px 10px;
      border-radius: 100px; letter-spacing: .8px; text-transform: uppercase;
    }
    .cyber-row .ok { background: rgba(34,197,94,.15); color: #4ade80 }
    .cyber-row .warn { background: rgba(234,179,8,.15); color: #facc15 }
    .cyber-card-foot {
      margin-top: 16px; padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,.12);
      font-size: .78rem; color: rgba(255,255,255,.55);
      letter-spacing: 1px; text-transform: uppercase;
      position: relative; z-index: 1;
    }

    /* BLOGS */
    .blogs { background: var(--soft) }
    .blog-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
      perspective: 1200px;
    }
    .blog-card {
      --tx: 0deg; --ty: 0deg; --lift: 0px;
      background: #fff; border-radius: 12px; overflow: hidden;
      box-shadow: 0 6px 18px rgba(11,37,69,.06);
      transform: translateY(var(--lift)) rotateX(var(--tx)) rotateY(var(--ty));
      transform-style: preserve-3d;
      transition: transform .45s cubic-bezier(.2,.9,.3,1), box-shadow .35s ease;
      display: flex; flex-direction: column;
      will-change: transform;
    }
    .blog-card:hover { --lift: -8px; box-shadow: 0 26px 50px rgba(11,37,69,.16) }
    .blog-img {
      height: 200px; background-size: cover; background-position: center;
      position: relative;
      transform: translateZ(20px);
      transition: transform .55s cubic-bezier(.2,.9,.3,1);
    }
    .blog-card:hover .blog-img { transform: translateZ(35px) scale(1.04) }
    .blog-tag {
      position: absolute; top: 14px; left: 14px;
      background: var(--gold); color: #fff;
      padding: 5px 12px; border-radius: 4px;
      font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
    }
    .blog-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1 }
    .blog-date {
      font-size: .78rem; color: var(--muted);
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px;
    }
    .blog-card h3 {
      color: var(--navy); font-family: 'Inter', sans-serif;
      font-size: 1.15rem; line-height: 1.3; margin-bottom: 12px;
    }
    .blog-card p { color: var(--muted); font-size: .92rem; line-height: 1.6; margin-bottom: 18px; flex: 1 }
    .blog-card .learn-more { margin-top: auto }

    /* CAREER */
    .career-section {
      position: relative;
      background: #fff;
      color: var(--ink);
    }
    .career-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center }
    .career-text h2 { color: var(--navy); margin-bottom: 16px }
    .career-text p { color: var(--muted); font-size: 1.02rem; line-height: 1.75; margin-bottom: 22px }
    .career-points { list-style: none; padding: 0; margin: 0 0 30px }
    .career-points li {
      padding: 10px 0; font-size: .96rem; color: var(--ink);
      border-bottom: 1px solid var(--line);
      display: flex; align-items: center; gap: 12px;
    }
    .career-points li::before { content: '\2192'; color: var(--gold); font-weight: 700 }
    .career-roles {
      background: var(--soft);
      border: 1px solid var(--line);
      border-radius: 12px; padding: 32px;
    }
    .career-roles h3 {
      color: var(--navy); font-size: 1.1rem; margin-bottom: 18px;
      padding-bottom: 14px; border-bottom: 1px solid var(--line);
    }
    .role-item {
      padding: 14px 8px; border-bottom: 1px solid var(--line);
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
      border-radius: 6px;
      transition: transform .35s cubic-bezier(.2,.9,.3,1), background .35s ease, padding-left .35s ease;
    }
    .role-item:hover {
      transform: translateX(4px);
      background: linear-gradient(90deg, rgba(11,37,69,.04), transparent 70%);
      padding-left: 14px;
    }
    .role-item:last-child { border-bottom: none }
    .role-info .title { font-size: .98rem; font-weight: 600; color: var(--navy) }
    .role-info .meta { font-size: .82rem; color: var(--muted); margin-top: 4px }
    .role-tag {
      font-size: .72rem; letter-spacing: 1px; text-transform: uppercase;
      background: var(--navy); color: #fff;
      padding: 6px 14px; border-radius: 4px; font-weight: 600;
      cursor: pointer; transition: background .2s ease;
    }
    .role-tag:hover { background: var(--gold) }

    /* CONTACT */
    .contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start }
    .contact-info h3 { color: var(--navy); margin-bottom: 14px; font-size: 1.25rem }
    .contact-info p { color: var(--muted); font-size: .95rem; line-height: 1.7; margin-bottom: 26px }
    .contact-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line) }
    .contact-row:last-child { border-bottom: none }
    .contact-icon {
      width: 40px; height: 40px; border-radius: 8px;
      background: var(--soft); color: var(--navy);
      display: grid; place-items: center; font-size: 1.05rem; flex-shrink: 0;
    }
    .contact-row .lbl {
      font-size: .72rem; color: var(--muted);
      letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 3px;
    }
    .contact-row .val { color: var(--ink); font-size: .96rem; font-weight: 500 }
    .contact-form {
      background: #fff; padding: 36px;
      border: 1px solid var(--line); border-radius: 10px;
      box-shadow: var(--shadow);
    }
    .contact-form h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.3rem }
    .contact-form .sub { color: var(--muted); font-size: .92rem; margin-bottom: 24px }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px }
    .form-field { display: flex; flex-direction: column; margin-bottom: 16px }
    .form-field label {
      font-size: .8rem; color: var(--navy); font-weight: 600;
      letter-spacing: .5px; margin-bottom: 6px;
    }
    .form-field input, .form-field textarea, .form-field select {
      padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px;
      font-family: 'Inter',sans-serif; font-size: .95rem; color: var(--ink);
      background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
    }
    .form-field input:focus, .form-field textarea:focus, .form-field select:focus {
      outline: none; border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(29,78,216,.15);
    }
    .form-field textarea { resize: vertical; min-height: 110px }
    .form-submit {
      background: var(--navy); color: #fff; border: none;
      padding: 14px 30px; border-radius: 6px;
      font-family: 'Inter',sans-serif; font-weight: 600; font-size: .95rem;
      cursor: pointer; letter-spacing: .4px;
      transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    }
    .form-submit:hover {
      background: var(--gold); transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(29,78,216,.35);
    }

    /* Contact locations (right column) */
    .contact-locations {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }
    .loc-item {
      padding: 22px 24px;
      background: #fff;
      border: 1px solid var(--line);
      border-left: 3px solid var(--gold);
      border-radius: 8px;
      transition: transform .35s cubic-bezier(.2,.9,.3,1), box-shadow .35s ease, border-color .35s ease;
    }
    .loc-item:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
      border-left-color: var(--navy);
    }
    .loc-item h4 {
      color: var(--navy);
      font-family: 'Inter', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 8px;
      letter-spacing: .2px;
    }
    .loc-item .loc-addr {
      color: var(--ink);
      font-size: .92rem;
      line-height: 1.6;
      margin-bottom: 10px;
    }
    .loc-item .loc-line {
      font-size: .9rem;
      color: var(--muted);
      margin: 4px 0;
    }
    .loc-item .loc-line .lbl {
      color: var(--navy);
      font-weight: 600;
      margin-right: 4px;
    }

    @media (max-width: 960px) {
      .cyber-grid, .career-grid, .contact-grid { grid-template-columns: 1fr }
      .blog-grid { grid-template-columns: 1fr }
      .form-row { grid-template-columns: 1fr }
    }

    /* INDUSTRIES (sector pillars) */
    .industries-section {
      background: linear-gradient(180deg, #ffffff 0%, #eef3fa 100%);
      position: relative;
      overflow: hidden;
    }
    .industries-section::before {
      content: '';
      position: absolute;
      top: -10%; left: -6%;
      width: 420px; height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(186, 230, 253, .35), transparent 70%);
      filter: blur(10px);
      pointer-events: none;
    }
    .industries-section::after {
      content: '';
      position: absolute;
      bottom: -10%; right: -6%;
      width: 380px; height: 380px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(254, 215, 170, .32), transparent 70%);
      filter: blur(10px);
      pointer-events: none;
    }
    .industries-section .container { position: relative; z-index: 1 }

    .industries-card {
      background: #fff;
      border: 1px solid rgba(11, 37, 69, .06);
      border-radius: 22px;
      box-shadow: 0 18px 50px rgba(11, 37, 69, .06);
      padding: 60px 44px;
      position: relative;
    }
    .industries-title {
      text-align: center;
      font-family: 'Inter', sans-serif;
      color: var(--navy);
      font-size: clamp(1.5rem, 2.4vw, 1.85rem);
      font-weight: 700;
      margin-bottom: 50px;
    }

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

    .ind-card {
      --tx: 0deg;
      --ty: 0deg;
      --lift: 0px;
      text-align: center;
      padding: 14px 14px 6px;
      transform: translateY(var(--lift)) rotateX(var(--tx)) rotateY(var(--ty));
      transform-style: preserve-3d;
      transition: transform .4s cubic-bezier(.2, .9, .3, 1);
      will-change: transform;
    }
    .ind-card:hover { --lift: -6px }

    .ind-icon {
      width: 88px; height: 88px;
      border-radius: 50%;
      display: grid; place-items: center;
      margin: 0 auto 24px;
      position: relative;
      transform: translateZ(45px);
      animation: iconFloat 5.5s ease-in-out infinite;
    }
    .ind-icon svg { width: 34px; height: 34px; stroke-width: 2.2 }
    .ind-icon::after {
      content: '';
      position: absolute;
      inset: -14px;
      border-radius: 50%;
      z-index: -1;
      filter: blur(10px);
      opacity: .55;
    }

    .ind-icon-1 {
      background: linear-gradient(135deg, #dbeafe, #bfdbfe);
      color: #2563eb;
    }
    .ind-icon-1::after { background: radial-gradient(circle, rgba(37, 99, 235, .45), transparent 70%) }

    .ind-icon-2 {
      background: linear-gradient(135deg, #d1fae5, #a7f3d0);
      color: #059669;
      animation-delay: -1.6s;
    }
    .ind-icon-2::after { background: radial-gradient(circle, rgba(5, 150, 105, .45), transparent 70%) }

    .ind-icon-3 {
      background: linear-gradient(135deg, #ede9fe, #ddd6fe);
      color: #7c3aed;
      animation-delay: -3.2s;
    }
    .ind-icon-3::after { background: radial-gradient(circle, rgba(124, 58, 237, .45), transparent 70%) }

    .ind-icon-4 {
      background: linear-gradient(135deg, #ffedd5, #fed7aa);
      color: #ea580c;
      animation-delay: -4.5s;
    }
    .ind-icon-4::after { background: radial-gradient(circle, rgba(234, 88, 12, .45), transparent 70%) }

    .ind-icon-5 {
      background: linear-gradient(135deg, #ccfbf1, #99f6e4);
      color: #0d9488;
      animation-delay: -2.2s;
    }
    .ind-icon-5::after { background: radial-gradient(circle, rgba(13, 148, 136, .45), transparent 70%) }

    .ind-icon-6 {
      background: linear-gradient(135deg, #fce7f3, #fbcfe8);
      color: #db2777;
      animation-delay: -3.8s;
    }
    .ind-icon-6::after { background: radial-gradient(circle, rgba(219, 39, 119, .45), transparent 70%) }

    .ind-card h3 {
      margin-bottom: 12px;
      font-size: 1.18rem;
      color: var(--navy);
      transform: translateZ(24px);
    }
    .ind-card p {
      color: var(--muted);
      font-size: .94rem;
      line-height: 1.7;
      max-width: 290px;
      margin: 0 auto;
      transform: translateZ(12px);
    }

    @media (max-width: 960px) {
      .industries-grid { grid-template-columns: 1fr; gap: 24px }
      .industries-card { padding: 40px 24px }
    }

    /* SECTORS */
    .sectors {
      background: var(--soft);
      color: var(--ink);
      padding: 90px 0;
    }

    .sectors h2 {
      color: var(--navy);
      text-align: center;
      margin-bottom: 14px;
    }
    .sectors .lead {
      text-align: center;
      color: var(--muted);
      max-width: 620px;
      margin: 0 auto 50px;
      font-size: 1rem;
    }

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

    .sector-item {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 28px 26px;
      text-align: left;
      transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
      position: relative;
    }
    .sector-item:hover {
      border-color: var(--gold);
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(11, 37, 69, .08);
    }

    .sector-item h3 {
      color: var(--navy);
      margin-bottom: 10px;
      font-size: 1.05rem;
    }

    .sector-item p {
      color: var(--muted);
      font-size: .92rem;
      line-height: 1.65;
    }

    /* STATS */
    .stats {
      background: var(--soft);
      text-align: center
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin-top: 40px
    }

    .stats-grid > div {
      padding: 18px 10px;
      border-radius: 12px;
      transition: transform .4s cubic-bezier(.2,.9,.3,1), background .4s ease;
    }

    .stats-grid > div:hover {
      transform: translateY(-6px);
      background: rgba(255, 255, 255, .55);
    }

    .stat-num {
      font-family: 'Inter', sans-serif;
      font-size: clamp(2.6rem, 4vw, 3.4rem);
      background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 45%, #0b2545 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: #2563eb;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -1px;
      display: inline-block;
      transition: transform .4s cubic-bezier(.2,.9,.3,1);
    }

    .stats-grid > div:hover .stat-num {
      transform: scale(1.06);
    }

    .stat-label {
      color: var(--ink);
      margin-top: 10px;
      font-size: .95rem;
      font-weight: 500;
      letter-spacing: .2px;
    }

    /* OFFICES */
    .offices-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      perspective: 1200px;
    }

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

    .office-card {
      --tx: 0deg;
      --ty: 0deg;
      --lift: 0px;
      background: #fff;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 12px;
      transition: transform .4s cubic-bezier(.2,.9,.3,1), border-color .25s, box-shadow .25s;
      transform: translateY(var(--lift)) rotateX(var(--tx)) rotateY(var(--ty));
      transform-style: preserve-3d;
      display: flex;
      flex-direction: column;
    }

    .office-card:hover {
      --lift: -4px;
      border-color: var(--gold);
      box-shadow: var(--shadow)
    }

    .office-card h3 {
      margin-bottom: 10px;
      color: var(--navy)
    }

    .office-card p {
      color: var(--muted);
      font-size: .95rem;
      margin-bottom: 18px;
    }

    .office-map {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--line);
    }

    .office-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .office-map .open-maps {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #fff;
      color: #1a73e8;
      font-size: .85rem;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 4px;
      text-decoration: none;
      box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .office-map .open-maps:hover {
      background: #f8f9fa;
    }

    /* TESTIMONIALS */
    .testimonials {
      background: var(--soft)
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      perspective: 1200px;
    }

    .testimonial-card {
      --tx: 0deg;
      --ty: 0deg;
      --lift: 0px;
      background: #fff;
      padding: 38px 34px 32px;
      border-radius: 12px;
      border-left: 4px solid var(--gold);
      box-shadow: var(--shadow);
      position: relative;
      transform: translateY(var(--lift)) rotateX(var(--tx)) rotateY(var(--ty));
      transform-style: preserve-3d;
      transition: transform .45s cubic-bezier(.2, .9, .3, 1), box-shadow .35s ease;
      will-change: transform;
      overflow: hidden;
    }
    .testimonial-card:hover {
      --lift: -6px;
      box-shadow: 0 28px 56px rgba(11, 37, 69, .14);
    }
    .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: -10px;
      right: 22px;
      font-family: 'Inter', sans-serif;
      font-size: 7rem;
      line-height: 1;
      color: rgba(29,78,216, .14);
      font-weight: 800;
      pointer-events: none;
      transform: translateZ(10px);
      transition: transform .5s ease, color .35s ease;
    }
    .testimonial-card:hover::before {
      transform: translateZ(20px) scale(1.08);
      color: rgba(29,78,216, .22);
    }

    .testimonial-card p {
      color: var(--ink);
      font-style: italic;
      margin-bottom: 18px;
      font-size: 1rem;
      position: relative;
      z-index: 1;
      transform: translateZ(20px);
    }

    .testimonial-card .author {
      font-weight: 600;
      color: var(--navy);
      font-style: normal;
      position: relative;
      z-index: 1;
      transform: translateZ(12px);
    }

    /* FOOTER */
    footer {
      background: #fff;
      color: var(--ink);
      padding: 70px 0 30px;
      border-top: 1px solid var(--line);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 50px;
      margin-bottom: 40px;
    }

    .footer-brand .brand-name {
      color: var(--navy);
    }

    .footer-brand p {
      margin: 14px 0;
      font-size: .92rem;
      color: var(--muted);
      line-height: 1.7;
    }

    footer h4 {
      color: var(--navy);
      font-family: 'Inter', sans-serif;
      font-size: .82rem;
      text-transform: uppercase;
      letter-spacing: 1.4px;
      margin-bottom: 18px;
      font-weight: 600;
    }

    footer ul {
      list-style: none;
      padding: 0;
    }

    footer ul li {
      margin-bottom: 12px;
    }

    footer ul li a {
      font-size: .94rem;
      color: var(--muted);
      transition: color .2s ease;
      position: relative;
    }

    footer ul li a:hover {
      color: var(--navy);
    }

    .disclaimer {
      border-top: 1px solid var(--line);
      padding-top: 28px;
      margin-top: 12px;
      font-size: .82rem;
      color: var(--muted);
      text-align: justify;
      line-height: 1.75;
    }

    .copyright {
      text-align: center;
      padding-top: 22px;
      margin-top: 18px;
      border-top: 1px solid var(--line);
      font-size: .85rem;
      color: var(--muted);
    }

    /* Footer brand block */
    .footer-brand .brand { margin-bottom: 18px }
    .footer-meta {
      margin-top: 16px;
      font-size: .85rem;
      color: var(--muted);
      line-height: 1.9;
    }
    .footer-meta .lbl {
      letter-spacing: 1.2px;
      text-transform: uppercase;
      font-size: .72rem;
      color: var(--ink);
      font-weight: 600;
      margin-right: 6px;
    }

    /* Footer connect column */
    .footer-connect .social-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--ink);
      font-size: .95rem;
      transition: color .2s ease;
      margin-bottom: 22px;
    }
    .footer-connect .social-link:hover { color: var(--navy) }
    .footer-connect .social-link .icon {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: #0a66c2;
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 700;
      font-size: .8rem;
      font-family: 'Inter', sans-serif;
    }
    .footer-connect h5 {
      color: var(--navy);
      font-size: .95rem;
      font-weight: 600;
      margin-bottom: 6px;
    }
    .footer-connect address {
      font-style: normal;
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* Memberships */
    .memberships {
      border-top: 1px solid var(--line);
      padding-top: 36px;
      margin-top: 8px;
      text-align: center;
    }
    .memberships h3 {
      color: var(--navy);
      font-size: 1.15rem;
      margin-bottom: 32px;
    }
    .memberships-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 36px;
      max-width: 760px;
      margin: 0 auto;
    }
    .membership-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }
    .membership-logo {
      width: 160px;
      height: 90px;
      display: grid;
      place-items: center;
      padding: 10px 16px;
      border-radius: 8px;
      background: #fff;
      border: 1px solid var(--line);
    }
    .membership-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    /* CII text logo */
    .logo-cii {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    .logo-cii .cii-mark {
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      font-size: 1.9rem;
      letter-spacing: 2px;
      color: #1a3c8c;
      padding: 4px 16px;
      border: 2px solid #1a3c8c;
      border-radius: 4px;
      line-height: 1;
    }
    .logo-cii .cii-sub {
      font-size: .55rem;
      font-weight: 700;
      color: #1a3c8c;
      letter-spacing: .3px;
    }

    /* Yi (Young Indians) text logo */
    .logo-yi {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
    }
    .logo-yi .yi-mark {
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      font-size: 1.7rem;
      color: #111;
      line-height: 1;
      position: relative;
      padding-top: 8px;
    }
    .logo-yi .yi-mark::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 26px;
      height: 4px;
      background: linear-gradient(90deg, #ff9933 33%, #fff 33% 66%, #138808 66%);
      border-radius: 2px;
    }
    .logo-yi .yi-i { color: #ff9933 }
    .logo-yi .yi-name {
      font-size: .65rem;
      font-weight: 700;
      color: #111;
      letter-spacing: .5px;
    }
    .logo-yi .yi-tag {
      display: inline-flex;
      gap: 2px;
      margin-top: 2px;
    }
    .logo-yi .yi-tag b {
      font-size: .55rem;
      padding: 2px 6px;
      color: #fff;
      font-weight: 700;
      letter-spacing: .3px;
    }
    .logo-yi .we-can { background: #ff9933 }
    .logo-yi .we-will { background: #138808 }
    .membership-item .name {
      font-weight: 600;
      color: var(--navy);
      font-size: 1rem;
    }
    .membership-item .desc {
      color: var(--muted);
      font-size: .85rem;
      text-align: center;
      max-width: 320px;
    }

    /* Bottom row */
    .footer-bottom {
      border-top: 1px solid var(--line);
      padding-top: 22px;
      margin-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-size: .85rem;
      color: var(--muted);
    }
    .footer-bottom .legal-links {
      display: flex;
      gap: 24px;
    }
    .footer-bottom .legal-links a {
      color: var(--muted);
      transition: color .2s ease;
    }
    .footer-bottom .legal-links a:hover { color: var(--navy) }

    @media (max-width: 720px) {
      .memberships-grid { grid-template-columns: 1fr }
      .footer-bottom { flex-direction: column; align-items: flex-start }
    }

    /* RESPONSIVE */
    @media (max-width: 960px) {

      .grid-4,
      .excellence-grid,
      .stats-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .grid-3,
      .sectors-grid {
        grid-template-columns: 1fr
      }

      .testimonial-grid {
        grid-template-columns: 1fr
      }

      .footer-grid {
        grid-template-columns: 1fr
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--line)
      }

      .nav-links.open {
        display: flex
      }

      .menu-toggle {
        display: block
      }
    }

    @media (max-width: 560px) {

      .grid-4,
      .excellence-grid,
      .stats-grid {
        grid-template-columns: 1fr
      }

      section {
        padding: 60px 0
      }

      .hero {
        min-height: 70vh
      }
    }

    /* DISCLAIMER MODAL */
    .disclaimer-overlay {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(11, 37, 69, .55);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      display: grid;
      place-items: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .45s ease, visibility .45s ease;
    }

    .disclaimer-overlay.show {
      opacity: 1;
      visibility: visible
    }

    .disclaimer-modal {
      background: #fff;
      border-radius: 10px;
      max-width: 760px;
      width: 100%;
      padding: 40px 44px;
      box-shadow: 0 30px 80px rgba(11, 37, 69, .35);
      border-top: 4px solid var(--gold);
      transform: translateY(30px) scale(.96);
      opacity: 0;
      transition: transform .55s cubic-bezier(.2, .9, .3, 1.2), opacity .45s ease;
      max-height: 90vh;
      overflow-y: auto;
    }

    .disclaimer-overlay.show .disclaimer-modal {
      transform: translateY(0) scale(1);
      opacity: 1
    }

    .disclaimer-modal h2 {
      font-size: 1.6rem;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .disclaimer-modal h2::before {
      content: '';
      width: 6px;
      height: 28px;
      background: var(--gold);
      border-radius: 3px;
    }

    .disclaimer-modal p {
      color: #374151;
      font-size: .97rem;
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .disclaimer-modal ul {
      margin: 0 0 24px 22px;
      color: #374151;
      font-size: .97rem;
      line-height: 1.75;
    }

    .disclaimer-modal ul li {
      margin-bottom: 6px
    }

    .disclaimer-actions {
      display: flex;
      justify-content: flex-end;
      margin-top: 8px
    }

    .btn-agree {
      background: var(--navy);
      color: #fff;
      padding: 13px 28px;
      border: none;
      border-radius: 6px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: .95rem;
      letter-spacing: .4px;
      cursor: pointer;
      transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
      box-shadow: 0 6px 18px rgba(11, 37, 69, .25);
    }

    .btn-agree:hover {
      background: var(--navy-2);
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(11, 37, 69, .35);
    }

    .btn-agree:active {
      transform: translateY(0)
    }

    body.modal-open {
      overflow: hidden
    }

    @media (max-width:560px) {
      .disclaimer-modal {
        padding: 28px 22px
      }

      .disclaimer-modal h2 {
        font-size: 1.3rem
      }
    }

    /* ============== PREMIUM POLISH LAYER ============== */

    /* Scroll progress bar */
    .scroll-progress {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      width: 0;
      background: linear-gradient(90deg, var(--gold) 0%, #3b82f6 50%, var(--gold) 100%);
      z-index: 200;
      transition: width .08s linear;
      pointer-events: none;
      box-shadow: 0 0 14px rgba(29,78,216, .65);
    }

    /* Header glass on scroll */
    header {
      transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease, padding .35s ease, border-color .35s ease;
    }
    header.scrolled {
      background: rgba(255, 255, 255, .82);
      backdrop-filter: blur(16px) saturate(140%);
      -webkit-backdrop-filter: blur(16px) saturate(140%);
      box-shadow: 0 10px 28px rgba(11, 37, 69, .08);
      border-bottom-color: rgba(11, 37, 69, .06);
    }
    header.scrolled .nav { padding: 12px 0 }

    /* Hero h1 letter split reveal */
    .hero-h1 .letter {
      display: inline-block;
      opacity: 0;
      transform: translateY(60px) rotateX(-90deg);
      animation: letterReveal .9s cubic-bezier(.2, .9, .3, 1.1) forwards;
      transform-origin: 50% 100% 0;
      backface-visibility: hidden;
      will-change: transform, opacity;
    }
    @keyframes letterReveal {
      0%   { opacity: 0; transform: translateY(60px) rotateX(-90deg) }
      60%  { opacity: 1 }
      100% { opacity: 1; transform: translateY(0) rotateX(0deg) }
    }

    /* Magnetic button base transition */
    .btn-hero-solid,
    .btn-hero-ghost,
    .form-submit,
    .btn-agree,
    .btn-ghost,
    .btn {
      transition: transform .35s cubic-bezier(.2, .9, .3, 1.2),
                  background .25s ease, color .25s ease,
                  border-color .25s ease, box-shadow .25s ease;
    }

    /* Section heading underline grow on view */
    .accent-bar {
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform .9s cubic-bezier(.2, .9, .3, 1) .1s;
    }
    .accent-bar.in-view { transform: scaleX(1) }

    /* Page loader */
    .page-loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: #fff;
      display: grid;
      place-items: center;
      transition: opacity .7s ease, visibility .7s ease;
    }
    .page-loader.done { opacity: 0; visibility: hidden }
    .loader-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    .loader-logo-wrap {
      position: relative;
      width: 96px;
      height: 96px;
      display: grid;
      place-items: center;
    }
    .loader-logo-wrap img {
      width: 60px;
      height: 60px;
      object-fit: contain;
      animation: loaderPulse 1.6s ease-in-out infinite;
    }
    .loader-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 2px solid transparent;
      border-top-color: var(--gold);
      border-right-color: var(--gold);
      animation: loaderSpin 1.2s linear infinite;
    }
    @keyframes loaderSpin {
      to { transform: rotate(360deg) }
    }
    @keyframes loaderPulse {
      0%, 100% { transform: scale(1); opacity: .9 }
      50% { transform: scale(1.08); opacity: 1 }
    }
    .loader-bar {
      width: 180px;
      height: 2px;
      background: var(--line);
      border-radius: 100px;
      overflow: hidden;
    }
    .loader-bar-fill {
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, var(--gold), #3b82f6, var(--gold));
      animation: loaderFill 1.4s cubic-bezier(.4, 0, .2, 1) forwards;
      border-radius: 100px;
    }
    @keyframes loaderFill {
      0%   { width: 0 }
      100% { width: 100% }
    }
    .loader-label {
      font-size: .72rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 500;
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transition: opacity .8s cubic-bezier(.2,.9,.3,1), translate .8s cubic-bezier(.2,.9,.3,1);
      translate: 0 28px;
      will-change: opacity, translate;
    }
    .reveal.reveal-in {
      opacity: 1;
      translate: 0 0;
    }

    /* Reduced motion respect */
    @media (prefers-reduced-motion: reduce) {
      .hero-h1 .letter { animation: none; opacity: 1; transform: none }
      .scroll-progress { transition: none }
      .cyber-card::after { animation: none; opacity: 0 }
      .page-loader { display: none }
      .reveal { translate: 0 0; transition: opacity .4s ease }
    }
