    :root {
      --bg0: #061a24;
      --bg1: #062534;
      --bg2: #083b4b;
      --card: #0b2a37cc;
      --card2: #0b2530cc;
      --stroke: #ffffff14;
      --stroke2: #36d4d018;
      --text: #eaf6ff;
      --muted: #b7d3e0;
      --muted2: #92b8c9;
      --accent: #2ad7d2;
      --accent2: #2aa7ff;
      --white: #ffffff;
      --shadow: 0 18px 60px rgba(0, 0, 0, .35);
      --radius: 18px;
      --radius2: 24px;
      --max: 1220px;
      --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    }
    * {
      box-sizing: border-box
    }
    html,
    body {
      height: 100%
    }
    body {
      margin: 0;
      font-family: var(--sans);
      color: var(--text);
      background:
        radial-gradient(900px 600px at 74% 15%, rgba(42, 215, 210, .22), transparent 60%),
        radial-gradient(700px 520px at 15% 20%, rgba(42, 167, 255, .14), transparent 55%),
        linear-gradient(180deg, #f4fbff 0 84px, var(--bg0) 84px 100%);
    }
    a {
      color: inherit;
      text-decoration: none
    }
    .wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 22px
    }
    /* Top bar */
    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(244, 251, 255, .92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0, 0, 0, .05);
    }
    .topbar-inner {
      height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }
    .brand {
      display: flex;
      align-items: center;
      /*  gap: 12px;
      min-width: 220px;*/
    }
    /* .logo {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--accent2), var(--accent));
      box-shadow: 0 10px 26px rgba(42, 215, 210, .18);
    } */
    .brand-logo {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .brand-logo img {
      height: 50px;
      /* Desktop size */
      width: auto;
      transition: height 0.3s ease;
      /*
      height: 44px;
      width: auto;
      max-width: 160px;
      display: block;
      object-fit: contain;
      */
    }
    /* Tablet */
    @media (max-width: 1020px) {
      .brand-logo img {
        height: 40px;
      }
    }
    /* Mobile */
    @media (max-width: 720px) {
      .brand-logo img {
        height: 49px;
      }
    }
    /* Very small screens */
    @media (max-width: 480px) {
      .brand-logo img {
        height: 42px;
      }
    }
    @media (max-width: 768px) {
      .brand-logo img {
        height: 49px;
        /* Increased mobile size */
      }
    }
    .brand-title {
      line-height: 1.05
    }
    .brand-title b {
      display: block;
      color: #0b1b25;
      font-size: 18px
    }
    .brand-title span {
      display: block;
      color: #4a6474;
      font-size: 12px;
      font-weight: 600
    }
    .nav {
      display: flex;
      align-items: center;
      gap: 18px;
      color: #1f3541;
      font-weight: 450
    }
    .nav a {
      opacity: .78
    }
    .nav a:hover {
      opacity: 1
    }
    .actions {
      display: flex;
      align-items: center;
      gap: 10px
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(0, 0, 0, .10);
      background: #fff;
      color: #10212b;
      font-weight: 550;
    }
    .btn.primary {
      border: 1px solid rgba(42, 215, 210, .35);
      background: linear-gradient(135deg, var(--accent2), var(--accent));
      color: #03212a;
      box-shadow: 0 12px 30px rgba(42, 215, 210, .18);
    }
    .btn.ghost {
      background: rgba(255, 255, 255, .7);
    }
    /* HERO */
    .hero {
      padding: 44px 0 56px;
      background:
        radial-gradient(1100px 720px at 72% 34%, rgba(42, 215, 210, .18), transparent 60%),
        radial-gradient(800px 560px at 15% 30%, rgba(42, 167, 255, .12), transparent 58%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
      border-bottom: 1px solid rgba(255, 255, 255, .06);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 34px;
      align-items: stretch;
    }
    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .10);
      color: var(--muted);
      font-weight: 700;
      width: fit-content;
    }
    .dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(42, 215, 210, .14)
    }
    h1 {
      margin: 16px 0 12px;
      font-size: 64px;
      line-height: .95;
      letter-spacing: -.02em;
    }
    .lead {
      color: var(--muted);
      font-size: 16.5px;
      line-height: 1.6;
      max-width: 560px;
    }
    .hero-points {
      margin: 18px 0 20px;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px
    }
    .hero-points li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--text);
      opacity: .92;
      font-weight: 650;
    }
    .check {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(42, 215, 210, .12);
      border: 1px solid rgba(42, 215, 210, .28);
      color: var(--accent);
      flex: 0 0 auto;
      margin-top: 1px;
    }
    .hero-cta {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 10px
    }
    .subnote {
      margin-top: 10px;
      color: rgba(183, 211, 224, .9);
      font-size: 12.5px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .subnote .miniDot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(42, 215, 210, .85)
    }
    /* Right preview card */
    .preview {
      border-radius: var(--radius2);
      background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
      border: 1px solid rgba(255, 255, 255, .10);
      box-shadow: var(--shadow);
      padding: 18px;
      position: relative;
      overflow: hidden;
    }
    .preview::before {
      content: "";
      position: absolute;
      inset: -40px -50px auto auto;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle at 30% 30%, rgba(42, 215, 210, .45), transparent 65%);
      filter: blur(6px);
      opacity: .35;
      pointer-events: none;
    }
    .preview-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
      position: relative;
      z-index: 2;
    }
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(0, 0, 0, .14);
      border: 1px solid rgba(255, 255, 255, .10);
      color: rgba(234, 246, 255, .92);
      font-weight: 750;
      font-size: 12px;
    }
    .pill b {
      color: var(--accent);
      font-weight: 850
    }
    .preview-actions {
      display: flex;
      gap: 10px
    }
    .btn.small {
      height: 38px;
      padding: 0 14px;
      font-size: 13px
    }
    .btn.small.dark {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      color: rgba(234, 246, 255, .92);
    }
    .btn.small.dark:hover {
      background: rgba(255, 255, 255, .11)
    }
    .preview-body {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
      position: relative;
      z-index: 2;
      align-items: stretch;
      min-height: 340px;
    }
    .illustration {
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(42, 215, 210, .10), rgba(42, 167, 255, .06));
      border: 1px solid rgba(255, 255, 255, .08);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .illus-layer {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      transform: translateY(10px) scale(.985);
      transition: opacity .75s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
    }
    .illus-layer.active {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    .meta {
      display: grid;
      gap: 10px;
    }
    .metaCard {
      border-radius: 16px;
      background: rgba(0, 0, 0, .14);
      border: 1px solid rgba(255, 255, 255, .10);
      padding: 12px 12px;
    }
    .metaCard h4 {
      margin: 0 0 4px;
      font-size: 13px;
      color: rgba(183, 211, 224, .95);
      font-weight: 800
    }
    .metaCard p {
      margin: 0;
      font-size: 13px;
      line-height: 1.45;
      color: rgba(234, 246, 255, .92);
      font-weight: 650
    }
    /* Module chips */
    .chips {
      margin-top: 12px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      position: relative;
      z-index: 2;
    }
    .chip {
      cursor: pointer;
      user-select: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .10);
      color: rgba(234, 246, 255, .92);
      font-weight: 800;
      font-size: 12.5px;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .chip:hover {
      transform: translateY(-1px);
      background: rgba(255, 255, 255, .08)
    }
    .chip .mini {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: rgba(42, 215, 210, .55);
      box-shadow: 0 0 0 4px rgba(42, 215, 210, .14)
    }
    .chip.active {
      background: rgba(42, 215, 210, .12);
      border-color: rgba(42, 215, 210, .30);
    }
    .chip.active .mini {
      background: var(--accent)
    }
    .autonote {
      margin-top: 10px;
      color: rgba(183, 211, 224, .85);
      font-size: 12px;
      font-family: var(--mono);
      opacity: .9;
    }
    /* Sections */
    section {
      padding: 64px 0
    }
    .section-title {
      color: #0a1b24;
      font-size: 34px;
      letter-spacing: -.02em;
      margin: 0 0 10px
    }
    .section-lead {
      color: #4c6676;
      margin: 0 0 26px;
      max-width: 760px;
      line-height: 1.65
    }
    .light {
      background: linear-gradient(180deg, #f4fbff, #eef7fb);
      color: #0a1b24;
    }
    .grid3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px
    }
    .card {
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, .06);
      box-shadow: 0 12px 34px rgba(16, 33, 43, .08);
      padding: 18px;
    }
    .card h3 {
      margin: 0 0 8px;
      font-size: 16px
    }
    .card p {
      margin: 0;
      color: #536e7d;
      line-height: 1.55
    }
    .tag {
      display: inline-flex;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(42, 215, 210, .14);
      color: #07565b;
      font-weight: 800;
      font-size: 12px;
      border: 1px solid rgba(42, 215, 210, .22);
      margin-bottom: 10px
    }
    .twoCol {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 18px;
      align-items: start
    }
    .dark {
      background: linear-gradient(180deg, var(--bg0), var(--bg1));
      color: var(--text);
      border-top: 1px solid rgba(255, 255, 255, .06);
      border-bottom: 1px solid rgba(255, 255, 255, .06);
    }
    .dark .section-title {
      color: var(--text)
    }
    .dark .section-lead {
      color: var(--muted)
    }
    .dark .card {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .10);
      box-shadow: var(--shadow);
    }
    .dark .card p {
      color: rgba(183, 211, 224, .92)
    }
    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 16px
    }
    .fieldRow {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px
    }
    label {
      display: block;
      font-size: 12px;
      font-weight: 800;
      margin: 10px 0 6px;
      color: rgba(16, 33, 43, .70)
    }
    .dark label {
      color: rgba(183, 211, 224, .85)
    }
    input,
    select,
    textarea {
      width: 100%;
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid rgba(0, 0, 0, .10);
      background: #fff;
      font: inherit;
      outline: none;
    }
    .dark input,
    .dark select,
    .dark textarea {
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(0, 0, 0, .16);
      color: var(--text);
    }
    textarea {
      min-height: 120px;
      resize: vertical
    }
    .formActions {
      display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 16px;
    }
    .officeItem {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 12px;
      border-radius: 16px;
      background: rgba(0, 0, 0, .14);
      border: 1px solid rgba(255, 255, 255, .10)
    }
    .badge {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(42, 215, 210, .15);
      border: 1px solid rgba(42, 215, 210, .25);
      font-weight: 900
    }
    .officeItem b {
      display: block
    }
    .officeItem small {
      color: rgba(183, 211, 224, .86);
      display: block;
      margin-top: 2px;
      line-height: 1.35
    }
    .officeCall {
      margin-left: auto;
      align-self: center;
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      font-weight: 850
    }
    .socialRow {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 10px;

    }
    .soc {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(255, 255, 255, .08);
      color: rgba(234, 246, 255, .92);
      font-weight: 900;
    }
    footer {
      padding: 18px 0 26px;
      background: #061a24;
      color: rgba(183, 211, 224, .92);
      border-top: 1px solid rgba(255, 255, 255, .06);
      font-size: 12.5px;
    }
    /* Responsive */
    @media (max-width: 1020px) {
      h1 {
        font-size: 52px
      }
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 18px
      }
      .preview-body {
        grid-template-columns: 1fr;
        min-height: 380px
      }
      .meta {
        grid-template-columns: 1fr;
      }
      .twoCol {
        grid-template-columns: 1fr
      }
      .contact-grid {
        grid-template-columns: 1fr
      }
    }
    @media (max-width: 720px) {
      h1 {
        font-size: 40px
      }
      .nav {
        display: none
      }
      .brand {
        min-width: auto
      }
      .grid3 {
        grid-template-columns: 1fr
      }
      .fieldRow {
        grid-template-columns: 1fr
      }
      .chips {
        gap: 8px
      }
      .chip {
        padding: 9px 11px
      }
      .preview-body {
        min-height: unset
      }
      .illustration {
        min-height: 220px
      }
    }
    /* Reduce motion */
    @media (prefers-reduced-motion: reduce) {
      .illus-layer,
      .chip {
        transition: none !important
      }
    }
    /* Prevent initial load jank */
    body.preload * {
      transition: none !important;
      animation: none !important;
    }
    /* Smoother module crossfades */
    .illusLayer {
      transition: opacity .75s cubic-bezier(.2, .9, .2, 1), transform .75s cubic-bezier(.2, .9, .2, 1);
    }
    .preview .card {
      transition: opacity .5s ease, transform .5s ease;
    }
    .preview.swapOut .card {
      opacity: .0;
      transform: translateY(8px) scale(.995);
    }
    .heroLeft.swapOut {
      opacity: .0;
      transform: translateY(6px);
    }
    .heroLeft {
      transition: opacity .5s ease, transform .5s ease;
    }
    /* ---- Solutions: header layout ---- */
    .solHead {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .solBadges {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      padding-bottom: 6px;
    }
    /* ---- NEW: Solutions switchboard (non-card) ---- */
    .modFilters {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin: 8px 0 18px;
    }
    .filt {
      cursor: pointer;
      user-select: none;
      border-radius: 999px;
      padding: 10px 14px;
      border: 1px solid rgba(16, 33, 43, .12);
      background: rgba(255, 255, 255, .85);
      font-weight: 800;
      color: #1b2d38;
      box-shadow: 0 10px 20px rgba(16, 33, 43, .06);
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .filt:hover {
      transform: translateY(-1px);
      background: #fff
    }
    .filt.active {
      border-color: rgba(42, 215, 210, .35);
      background: linear-gradient(135deg, rgba(42, 167, 255, .18), rgba(42, 215, 210, .18));
    }
    .switchboard {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      align-items: stretch;
    }
    .tile {
      text-align: left;
      border-radius: 22px;
      padding: 14px;
      border: 1px solid rgba(16, 33, 43, .10);
      background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .78));
      box-shadow: 0 16px 34px rgba(16, 33, 43, .08);
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-height: 132px;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .tile:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 46px rgba(16, 33, 43, .12);
      border-color: rgba(42, 215, 210, .28)
    }
    .tile.is-live {
      border-color: rgba(42, 215, 210, .34);
      box-shadow: 0 18px 52px rgba(42, 215, 210, .10), 0 16px 34px rgba(16, 33, 43, .08);
    }
    .tileTop {
      display: flex;
      align-items: flex-start;
      gap: 12px
    }
    .tileIcon {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(42, 215, 210, .14);
      border: 1px solid rgba(42, 215, 210, .22);
      font-weight: 900;
    }
    .tileMeta {
      flex: 1
    }
    .tileName {
      font-weight: 900;
      font-size: 16px;
      color: #0b1b25
    }
    .tileDesc {
      margin-top: 4px;
      color: #4e6b7b;
      font-weight: 650;
      font-size: 13px;
      line-height: 1.35
    }
    .tileBadge {
      margin-left: auto;
      padding: 8px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      border: 1px solid rgba(16, 33, 43, .10);
      background: rgba(16, 33, 43, .04);
      color: #1b2d38;
      white-space: nowrap;
    }
    .tileBadge.live {
      background: rgba(42, 215, 210, .16);
      border-color: rgba(42, 215, 210, .26);
      color: #07565b
    }
    .tileBadge.build {
      background: rgba(42, 167, 255, .12);
      border-color: rgba(42, 167, 255, .22);
      color: #083a57
    }
    .tileBottom {
      display: flex;
      align-items: center;
      justify-content: space-between
    }
    .tileHint {
      color: #4e6b7b;
      font-weight: 800;
      font-size: 12.5px
    }
    .tileCta {
      width: 36px;
      height: 36px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(16, 33, 43, .10);
      background: rgba(255, 255, 255, .85);
      font-weight: 900;
    }
    .tile.is-live .tileCta {
      background: linear-gradient(135deg, rgba(42, 167, 255, .20), rgba(42, 215, 210, .20));
      border-color: rgba(42, 215, 210, .22)
    }
    .tile:focus {
      outline: 3px solid rgba(42, 215, 210, .22);
      outline-offset: 3px
    }
    /* Modal */
    .pkModal {
      position: fixed;
      inset: 0;
      display: none;
      z-index: 90;
    }
    .pkModal.show {
      display: block
    }
    .pkModalBack {
      position: absolute;
      inset: 0;
      background: rgba(2, 10, 14, .55);
      backdrop-filter: blur(8px);
    }
    .pkModalCard {
      position: relative;
      max-width: 520px;
      margin: 10vh auto 0;
      border-radius: 22px;
      background: #fff;
      color: #0b1b25;
      border: 1px solid rgba(0, 0, 0, .08);
      box-shadow: 0 22px 70px rgba(0, 0, 0, .35);
      padding: 16px;
    }
    .pkModalTop {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
    }
    .pkModalTitle {
      font-weight: 950;
      font-size: 18px;
      margin-bottom: 4px;
    }
    .pkModalSub {
      color: #4e6b7b;
      font-weight: 650;
      line-height: 1.4
    }
    .pkModalX {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      border: 1px solid rgba(0, 0, 0, .10);
      background: rgba(0, 0, 0, .04);
      cursor: pointer;
      font-weight: 900;
    }
    .pkModalBody {
      margin-top: 10px
    }
    .pkModalList {
      margin: 0;
      padding-left: 18px;
      color: #1f3541;
      line-height: 1.55;
      font-weight: 650
    }
    .pkModalActions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 14px
    }
    /* ---- Platform DNA: mixed layout (pillars + stack diagram) ---- */
    .platformMix {
      background: radial-gradient(900px 420px at 20% 0%, rgba(42, 215, 210, .10), transparent 60%),
        radial-gradient(900px 420px at 90% 20%, rgba(42, 167, 255, .10), transparent 60%),
        linear-gradient(180deg, #f6fbff 0%, #eef7ff 100%);
    }
    .platHead {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .platBadges {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      padding-bottom: 10px;
    }
    .platGrid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 18px;
      align-items: stretch;
      margin-top: 10px;
    }
    .pillars {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .pillar {
      padding: 16px 16px 14px;
      border-left: 4px solid rgba(42, 215, 210, .35);
      background: rgba(255, 255, 255, .72);
      border-radius: 18px;
      border: 1px solid rgba(16, 33, 43, .08);
      box-shadow: 0 14px 34px rgba(16, 33, 43, .08);
    }
    .pillar:nth-child(2) {
      border-left-color: rgba(42, 167, 255, .35)
    }
    .pillar:nth-child(3) {
      border-left-color: rgba(16, 33, 43, .22)
    }
    .pTop {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px
    }
    .pIcon {
      width: 34px;
      height: 34px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(42, 215, 210, .14);
      border: 1px solid rgba(42, 215, 210, .22);
      font-weight: 900;
    }
    .pillar:nth-child(2) .pIcon {
      background: rgba(42, 167, 255, .14);
      border-color: rgba(42, 167, 255, .22)
    }
    .pillar:nth-child(3) .pIcon {
      background: rgba(16, 33, 43, .08);
      border-color: rgba(16, 33, 43, .14)
    }
    .pTitle {
      font-weight: 950;
      color: #0a1b24
    }
    .pList {
      margin: 0;
      padding-left: 18px;
      color: #3a5666;
      line-height: 1.7;
      font-weight: 650
    }
    .pList li {
      margin: 4px 0
    }
    .stackWrap {
      display: flex;
    }
    .stackBg {
      width: 100%;
      border-radius: 22px;
      background:
        radial-gradient(640px 280px at 20% 0%, rgba(42, 215, 210, .18), transparent 60%),
        radial-gradient(620px 300px at 95% 25%, rgba(42, 167, 255, .18), transparent 60%),
        linear-gradient(180deg, rgba(6, 26, 36, .92), rgba(6, 37, 52, .94));
      border: 1px solid rgba(255, 255, 255, .10);
      box-shadow: 0 24px 70px rgba(6, 26, 36, .35);
      padding: 18px;
      color: rgba(234, 246, 255, .92);
      position: relative;
      overflow: hidden;
    }
    .stackChipRow {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px
    }
    .stackChip {
      font-size: 12px;
      font-weight: 850;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      color: rgba(234, 246, 255, .92);
    }
    .stack {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 6px 0 14px;
    }
    .layer {
      border-radius: 18px;
      padding: 12px 14px;
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(255, 255, 255, .06);
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }
    .layer span {
      font-weight: 950
    }
    .layer small {
      opacity: .88;
      font-weight: 650
    }
    .l1 {
      background: linear-gradient(135deg, rgba(42, 215, 210, .16), rgba(255, 255, 255, .06));
    }
    .l2 {
      background: linear-gradient(135deg, rgba(42, 167, 255, .16), rgba(255, 255, 255, .06));
    }
    .l3 {
      background: linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .05));
    }
    .l4 {
      background: linear-gradient(135deg, rgba(16, 33, 43, .18), rgba(255, 255, 255, .05));
    }
    .stackFoot {
      display: flex;
      flex-direction: column;
      gap: 10px
    }
    .miniNote {
      opacity: .92;
      line-height: 1.6;
      font-weight: 650
    }
    /* ---- Roadmap: timeline (NOT cards grid) ---- */
    .roadmapLight {
      background: radial-gradient(900px 420px at 20% 0%, rgba(42, 167, 255, .10), transparent 60%),
        radial-gradient(900px 420px at 90% 20%, rgba(42, 215, 210, .10), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    }
    .roadHead {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .roadBadges {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      padding-bottom: 10px;
    }
    .timeline {
      position: relative;
      margin-top: 10px;
      min-height: 420px;
      border-radius: 26px;
      background: rgba(255, 255, 255, .70);
      border: 1px solid rgba(16, 33, 43, .08);
      box-shadow: 0 20px 60px rgba(16, 33, 43, .10);
      overflow: hidden;
      padding: 18px;
    }
    .tlLine {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 140px;
      top: 46px;
      opacity: .95
    }
    .tlStep {
      position: absolute;
      width: min(360px, 34vw);
    }
    .tlDot {
      width: 44px;
      height: 44px;
      border-radius: 18px;
      background: rgba(42, 215, 210, .18);
      border: 1px solid rgba(42, 215, 210, .28);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 950;
      color: #0a1b24;
      box-shadow: 0 14px 28px rgba(16, 33, 43, .10);
      margin-bottom: 10px;
    }
    .s2 .tlDot {
      background: rgba(42, 167, 255, .18);
      border-color: rgba(42, 167, 255, .28)
    }
    .s3 .tlDot {
      background: rgba(16, 33, 43, .08);
      border-color: rgba(16, 33, 43, .16)
    }
    .tlDot span {
      transform: translateY(-.5px)
    }
    .tlCard {
      border-radius: 20px;
      background: rgba(255, 255, 255, .92);
      border: 1px solid rgba(16, 33, 43, .08);
      padding: 14px 14px 12px;
      box-shadow: 0 16px 34px rgba(16, 33, 43, .10);
    }
    .tlTitle {
      font-weight: 950;
      color: #0a1b24;
      margin-bottom: 8px
    }
    .tlText {
      color: #3a5666;
      line-height: 1.65;
      font-weight: 650
    }
    .tlActions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 12px
    }
    .tlStep.s1 {
      left: 24px;
      top: 140px
    }
    .tlStep.s2 {
      left: calc(50% - 180px);
      top: 90px
    }
    .tlStep.s3 {
      right: 24px;
      top: 125px
    }
    .roadNote {
      margin-top: 14px
    }
    .roadMini {
      display: inline-block;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(16, 33, 43, .08);
      background: rgba(255, 255, 255, .72);
      box-shadow: 0 10px 22px rgba(16, 33, 43, .08);
      color: #23404f;
      font-weight: 500;
    }
    /* ---- Contact: fix dropdown readability on dark theme ---- */
    #contact.dark select {
      color: rgba(234, 246, 255, .92);
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .12);
    }
    #contact.dark select option {
      background: #f6fbff;
      color: #0a1b24;
    }
    #contact.dark select:focus {
      outline: 2px solid rgba(42, 215, 210, .35);
      outline-offset: 2px;
    }
    /* ---- Responsive fixes (solutions + platform + roadmap) ---- */
    @media (max-width: 1020px) {
      .switchboard {
        grid-template-columns: repeat(2, 1fr)
      }
      .platGrid {
        grid-template-columns: 1fr
      }
      .tlStep {
        position: relative;
        width: 100%;
        left: auto !important;
        right: auto !important;
        top: auto !important;
      }
      .timeline {
        min-height: unset;
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding-top: 18px
      }
      .tlLine {
        display: none
      }
    }
    @media (max-width: 640px) {
      .switchboard {
        grid-template-columns: 1fr
      }
    }
    /* === Google reCAPTCHA v3 — LEFT aligned (icon only) === */
    .grecaptcha-badge {
      left: 16px !important;
      right: auto !important;
      bottom: 16px !important;
      width: 70px !important;
      height: 70px !important;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 12px 28px rgba(15, 23, 42, .18);
    }
    /* Force iframe to icon-only size */
    .grecaptcha-badge iframe {
      width: 70px !important;
      height: 70px !important;
    }
    /* Mobile safe spacing */
    @media (max-width:640px) {
      .grecaptcha-badge {
        left: 10px !important;
        bottom: 10px !important;
      }
    }
    /* Floating CTA */
    .float-cta {
      position: fixed;
      right: 22px;
      bottom: 22px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      z-index: 80;
    }
    .fab {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
      color: #fff;
      box-shadow: 0 14px 34px rgba(0, 0, 0, .25);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .fab svg {
      width: 22px;
      height: 22px;
    }
    .fab:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 46px rgba(0, 0, 0, .35);
    }
    .fab-whatsapp {
      background: linear-gradient(135deg, #25D366, #128C7E);
    }
    .fab-call {
      background: linear-gradient(135deg, #2aa7ff, #2ad7d2);
    }
    .fab-top {
      background: #2ad7d2;
     /* background: linear-gradient(135deg, #0b1b25, #083b4b);*/
    }
    /* Mobile spacing */
    @media (max-width: 640px) {
      .float-cta {
        right: 14px;
        bottom: 14px;
      }
    }
    .float-cta .fab {
      opacity: 1;
      transition: transform .2s ease, box-shadow .2s ease, opacity .3s ease;
    }
    #fabTop {
      opacity: 0;
      pointer-events: none;
    }
    #waModal .pkModalCard {
      max-height: 85vh;
      overflow-y: auto;
    }
    #waModal form {
      margin-top: 8px;
    }
    #waModal .formActions {
      margin-top: 16px;
    }
    /* Hamburger Button */
    .hamburger {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, .08);
      background: #fff;
      font-size: 22px;
      font-weight: 700;
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }
    /* Mobile Menu */
    .mobile-menu {
      display: none;
      position: absolute;
      top: 84px;
      left: 0;
      width: 100%;
      background: #ffffff;
      border-bottom: 1px solid rgba(0, 0, 0, .06);
      box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
      padding: 16px 22px;
      flex-direction: column;
      gap: 14px;
      z-index: 60;
    }
    .mobile-menu a {
      font-weight: 700;
      color: #0b1b25;
    }
    .mobile-menu.show {
      display: flex;
    }
    /* Responsive Rules */
    @media (max-width: 720px) {
      .nav,
      .actions {
        display: none;
      }
      .hamburger {
        display: flex;
      }
    }
    /* =========================================
   TYPOGRAPHY NORMALIZATION LAYER (ADD LAST)
========================================= */
/* ---- Font Scale Tokens ---- */
:root {
  --fs-hero: 64px;
  --fs-h1: 40px;
  --fs-h2: 32px;
  --fs-h3: 18px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-micro: 12px;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
}
/* ---- Global Reset ---- */
body {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
}
/* =========================================
   HEADINGS
========================================= */
h1 {
  font-weight: var(--fw-bold);
  font-size: clamp(40px, 6vw, var(--fs-hero));
}
.section-title {
  font-weight: var(--fw-semibold);
  font-size: clamp(26px, 3vw, var(--fs-h2));
}
.card h3,
.tileName,
.pkModalTitle {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-h3);
}
/* =========================================
   BODY + TEXT FIXES
========================================= */
.lead,
.section-lead {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
}
.hero-points li,
.metaCard p,
.tileDesc,
.pkModalSub,
.pkModalList,
.pList,
.tlText,
.miniNote {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
.subnote,
.stackChip,
.tileHint,
.autonote,
footer {
  font-size: var(--fs-micro);
  font-weight: var(--fw-medium);
}
/* =========================================
   UI ELEMENTS
========================================= */
.nav,
.btn,
.pill,
.chip,
.tag,
.filt,
.tileBadge,
.layer span,
.pTitle,
.tlTitle,
.tlDot,
.officeCall,
.badge,
.soc {
  font-weight: var(--fw-semibold);
}
/* Strong emphasis elements */
.pill b,
.layer span,
.tlTitle {
  font-weight: var(--fw-bold);
}
/* Labels */
label {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-micro);
}
/* =========================================
   REMOVE EXTREME WEIGHTS (SAFETY OVERRIDE)
========================================= */
*[style*="font-weight: 450"],
*[style*="font-weight: 650"],
*[style*="font-weight: 750"],
*[style*="font-weight: 800"],
*[style*="font-weight: 850"],
*[style*="font-weight: 900"],
*[style*="font-weight: 950"] {
  font-weight: var(--fw-semibold) !important;
}
/* =========================================
   FORCE TYPOGRAPHY CONSISTENCY (FINAL LOCK)
========================================= */
/* Remove all ultra-bold legacy weights */
.metaCard h4,
.chip,
.tag,
.tileName,
.tileBadge,
.pTitle,
.layer span,
.tlTitle,
.tlDot,
.badge,
.officeCall,
.stackChip,
.soc,
.pkModalTitle {
  font-weight: var(--fw-bold) !important;
}
/* Medium emphasis */
.hero-points li,
.metaCard p,
.tileDesc,
.pkModalSub,
.pkModalList,
.pList,
.tlText,
.miniNote {
  font-weight: var(--fw-medium) !important;
}
/* Navigation + buttons */
.nav,
.btn,
.filt {
  font-weight: var(--fw-semibold) !important;
}
/* =========================================
   reCAPTCHA Compliance Note (Universal)
========================================= */
.recaptcha-note {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 100%;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.recaptcha-note .shield {
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}
/* Dark section version */
.dark .recaptcha-note {
  color: rgba(234, 246, 255, 0.75);
}
.dark .recaptcha-note a {
  color: var(--accent);
}
/* Light / Modal version */
.pkModalCard .recaptcha-note,
.light .recaptcha-note,
.card .recaptcha-note {
  color: rgba(10, 27, 36, 0.65);
}
.pkModalCard .recaptcha-note a,
.light .recaptcha-note a,
.card .recaptcha-note a {
 /* color: #0b3b56; */
}
/* Links */
.recaptcha-note a {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.recaptcha-note a:hover {
  opacity: 0.8;
}
/* Responsive */
@media (max-width: 640px) {
  .recaptcha-note {
    font-size: 11.5px;
    line-height: 1.5;
  }
}
/* ===============================
   Contact Section – Smaller Typography
=============================== */
/* Section heading */
#contact .card h3 {
  font-size: 17px;
}
/* Office title (UAE Office, US Office...) */
.officeItem b {
  font-size: 14px;
}
/* Address text */
.officeItem small {
  font-size: 13px;
}
/* Phone number */
.officeCall {
  font-size: 10.5px;
}
/* Social icons text */
.soc {
  font-size: 13px;
}
/* Email line */
#contact .card > div:last-child {
  font-size: 13.5px;
}

.officeCall a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.officeCall a:hover {
  color: var(--accent);
}

/* ===============================
   OFFICE CARD RESPONSIVE
================================ */

/* Header layout */
.officeHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.officeTitle {
  margin: 0;
  font-size: 18px;
}

/* Grid spacing */
.officeGrid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

/* Office item layout */
.officeItem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
}

/* Office text wrapper */
.officeInfo {
  flex: 1;
}

/* Email */
.officeEmail {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
}

.officeEmail a {
  color: var(--accent);
  text-decoration: none;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {

  /* Stack header */
  .officeHeader {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Center social icons */
  .socialRow {
    justify-content: center;
  }

  /* Stack office items vertically */
  .officeItem {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  /* Full width call button */
  .officeCall {
    width: 100%;
    text-align: center;
  }

  .officeCall a {
    display: block;
    width: 100%;
  }

  /* Slightly reduce padding */
  .officeItem {
    padding: 12px;
  }
}
