:root {
      --ink: #101827;
      --muted: #5d6677;
      --line: #e2e6ee;
      --paper: #ffffff;
      --soft: #f5f7fb;
      --navy: #101a4f;
      --navy-2: #1f2d7a;
      --gold: #bd8b2c;
      --gold-2: #f0c46d;
      --teal: #177e89;
      --green: #206a5d;
      --shadow: 0 22px 60px rgba(17, 24, 39, .13);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.55;
    }

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

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, .94);
      border-bottom: 1px solid rgba(226, 230, 238, .9);
      backdrop-filter: blur(14px);
    }

    .nav {
      width: min(1180px, calc(100% - 32px));
      min-height: 100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

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

    .brand-mark {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--navy);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0;
      flex: 0 0 auto;
      background: #fffaf0;
    }

    .brand-text {
      display: grid;
      gap: 1px;
      min-width: 0;
    }

    .brand-text strong {
      font-size: 15px;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand-text span {
      color: var(--muted);
      font-size: 12px;
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      color: #30394c;
      font-size: 14px;
    }

    .nav-links a {
      padding: 8px 0;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      padding: 11px 16px;
      font-weight: 700;
      font-size: 14px;
      line-height: 1;
      cursor: pointer;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }

    .btn svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: var(--gold);
      color: #111827;
      border-color: var(--gold);
    }

    .btn-secondary {
      background: #ffffff;
      color: var(--navy);
      border-color: rgba(16, 26, 79, .18);
    }

    .btn-social {
      width: 44px;
      padding: 0;
      background: #ffffff;
      color: var(--navy);
      border-color: rgba(16, 26, 79, .18);
    }

    .hero {
      min-height: min(640px, calc(88vh - 58px));
      display: grid;
      align-items: center;
      background-image:
        linear-gradient(90deg, rgba(8, 13, 38, .93) 0%, rgba(8, 13, 38, .78) 43%, rgba(8, 13, 38, .34) 100%),
        url("https://pamsdubai.com/wp-content/uploads/2026/07/Screenshot-2026-07-13-at-2.59.15-PM.png");
      background-size: cover;
      background-position: center;
      color: white;
      border-bottom: 1px solid rgba(16, 24, 39, .12);
    }

    .hero-inner {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 58px 0 46px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: var(--gold-2);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--gold-2);
    }

    .hero h1 {
      max-width: 760px;
      margin: 0;
      font-size: clamp(42px, 7vw, 78px);
      line-height: .96;
      letter-spacing: 0;
    }

    .hero .lead {
      max-width: 650px;
      margin: 24px 0 0;
      color: rgba(255, 255, 255, .9);
      font-size: clamp(18px, 2.4vw, 25px);
      line-height: 1.35;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 42px;
    }

    .hero-metric {
      min-width: 150px;
      border-left: 3px solid var(--gold-2);
      border-radius: 4px;
      padding: 10px 18px;
      background: rgba(255, 255, 255, .08);
    }

    .hero-metric strong {
      display: block;
      font-size: 28px;
      line-height: 1.1;
    }

    .hero-metric span {
      display: block;
      margin-top: 6px;
      color: rgba(255, 255, 255, .78);
      font-size: 13px;
    }

    section {
      padding: 84px 0;
    }

    .section-soft {
      background: var(--soft);
    }

    .wrap {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-kicker {
      margin: 0 0 9px;
      color: var(--gold);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    h2 {
      margin: 0;
      color: var(--navy);
      font-size: clamp(30px, 4.6vw, 52px);
      line-height: 1.05;
      letter-spacing: 0;
    }

    h3 {
      margin: 0;
      color: var(--navy);
      font-size: 20px;
      line-height: 1.2;
    }

    p {
      margin: 0;
    }

    .section-head p {
      margin-top: 15px;
      color: var(--muted);
      font-size: 18px;
    }

    .grid {
      display: grid;
      gap: 18px;
    }

    .stats-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .stat-card,
    .feature,
    .audience-card,
    .city-card,
    .district-row {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .stat-card:hover,
    .audience-card:hover,
    .city-card:not(.total):hover,
    .district-row:hover,
    .building-row:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 34px rgba(16, 24, 39, .1);
      border-color: rgba(16, 26, 79, .28);
    }

    .city-card.total:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 34px rgba(16, 24, 39, .22);
    }

    .stat-card {
      min-height: 190px;
      padding: 26px;
      display: grid;
      align-content: space-between;
      box-shadow: 0 12px 36px rgba(16, 24, 39, .06);
    }

    .stat-card strong {
      color: var(--navy);
      font-size: clamp(42px, 6vw, 64px);
      line-height: 1;
    }

    .stat-card span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-weight: 700;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
      gap: 34px;
      align-items: start;
    }

    .split > div {
      display: flex;
      flex-direction: column;
    }


    .feature-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-rows: repeat(2, 1fr);
      margin-top: 28px;
      align-items: stretch;
      flex: 1;
    }

    .feature {
      padding: 22px;
      height: 100%;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .feature:hover {
      transform: translateY(-5px);
      border-color: rgba(16, 26, 79, .28);
      box-shadow: 0 16px 34px rgba(16, 24, 39, .1);
    }

    .feature .icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      color: var(--paper);
      background: var(--navy);
      border-radius: var(--radius);
      transition: background .22s ease;
    }

    .feature:hover .icon {
      background: var(--gold);
      color: var(--navy);
    }

    .feature svg {
      width: 22px;
      height: 22px;
    }

    .feature p,
    .audience-card p,
    .city-card p {
      margin-top: 10px;
      color: var(--muted);
    }

    .media-frame {
    position: sticky;
    top: 90px;      /* zaroori */
    align-self: start;

    overflow: hidden;
    height: fit-content;

    border: 1px solid rgba(16,24,39,.12);
    border-radius: var(--radius);
    background: #0f1538;
    box-shadow: var(--shadow);
    }

    .media-frame img {
      width: 100%;
      height: auto;
      min-height: 260px;
      object-fit: contain;
      object-position: left center;
      background: #0f1538;
    }

    .dark-band {
      background: #111735;
      color: white;
    }

    .dark-band h2,
    .dark-band h3 {
      color: white;
    }

    .dark-band .section-head p,
    .dark-band p {
      color: rgba(255, 255, 255, .75);
    }

    .audience-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .audience-card {
      padding: 22px;
      background: rgba(255, 255, 255, .06);
      border-color: rgba(255, 255, 255, .16);
    }

    .audience-card:hover {
      background: rgba(255, 255, 255, .11);
      border-color: rgba(240, 196, 109, .5);
      box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
    }

    .audience-card .icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      color: var(--navy);
      background: var(--gold-2);
      border-radius: var(--radius);
    }

    .audience-card .icon svg {
      width: 22px;
      height: 22px;
    }

    .audience-card h3 {
      min-height: 48px;
    }

    .coverage-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      margin-bottom: 18px;
    }

    .city-card {
      padding: 24px;
    }

    button.city-card {
      display: block;
      width: 100%;
      text-align: left;
      font: inherit;
      cursor: pointer;
      transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
    }

    button.city-card:hover {
      transform: translateY(-2px);
      border-color: var(--navy);
    }

    button.city-card:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px rgba(189, 139, 44, 0.45);
      border-color: var(--gold);
    }

    button.city-card[aria-selected="true"] {
      color: white;
      background: var(--gold);
      border-color: var(--gold);
    }

    button.city-card[aria-selected="true"] strong,
    button.city-card[aria-selected="true"] h3,
    button.city-card[aria-selected="true"] span {
      color: white;
    }

    .city-card strong {
      display: block;
      color: var(--navy);
      font-size: 40px;
      line-height: 1;
    }

    .city-card span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .city-card.total {
      color: white;
      background: var(--navy);
      border-color: var(--navy);
    }

    .city-card.total strong,
    .city-card.total h3,
    .city-card.total span,
    .city-card.total p {
      color: white;
    }

    .coverage-scroll {
      position: relative;
    }

    .scroll-progress {
      height: 4px;
      border-radius: 999px;
      background: var(--line);
      overflow: hidden;
      margin-bottom: 22px;
    }

    .scroll-progress i {
      display: block;
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--gold), var(--teal));
      border-radius: inherit;
      transition: width .1s linear;
    }

    .tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0 0 20px;
    }

    .tab {
      min-height: 42px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 10px 16px;
      background: var(--paper);
      color: var(--ink);
      font: inherit;
      font-weight: 800;
      cursor: pointer;
      transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
    }

    .tab:hover {
      transform: translateY(-1px);
      border-color: var(--navy);
    }

    .tab[aria-selected="true"] {
      background: var(--navy);
      border-color: var(--navy);
      color: white;
    }

    .inventory-panel {
      transition: opacity .25s ease;
    }

    .inventory-panel.is-changing {
      opacity: .35;
    }

    .inventory-panel {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
    }

    .panel-summary {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      background: var(--paper);
      align-self: start;
      margin-bottom: 40px;
    }

    .panel-summary .big {
      display: block;
      margin-top: 8px;
      color: var(--navy);
      font-size: 52px;
      font-weight: 800;
      line-height: 1;
    }

    .area-tabs {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 4px 2px 12px;
      scroll-snap-type: x proximity;
      -webkit-overflow-scrolling: touch;
    }

    .area-tabs::-webkit-scrollbar {
      height: 6px;
    }

    .area-tabs::-webkit-scrollbar-thumb {
      background: var(--line);
      border-radius: 999px;
    }

    .area-tab {
      flex: 0 0 auto;
      scroll-snap-align: start;
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 40px;
      padding: 8px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--paper);
      color: var(--ink);
      font: inherit;
      font-weight: 800;
      font-size: 14px;
      white-space: nowrap;
      cursor: pointer;
      transition: background .22s ease, color .22s ease, border-color .22s ease, transform .2s ease;
    }

    .area-tab:hover {
      transform: translateY(-1px);
      border-color: var(--navy);
    }

    .area-tab strong {
      color: var(--teal);
      font-weight: 800;
    }

    .area-tab[aria-selected="true"] {
      background: var(--navy);
      border-color: var(--navy);
      color: white;
    }

    .area-tab[aria-selected="true"] strong {
      color: white;
    }

    .inventory-content {
      display: grid;
      gap: 18px;
    }

    .list-head {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: end;
      margin-bottom: -4px;
    }

    .list-head p {
      color: var(--muted);
      font-size: 14px;
      text-align: right;
    }

    .building-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 12px;
    }

    .building-row {
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .building-row strong {
      min-width: 0;
      color: var(--navy);
      font-size: 16px;
      line-height: 1.25;
      overflow-wrap: anywhere;
    }

    .building-count {
      align-self: start;
      white-space: nowrap;
      color: var(--green);
      font-size: 14px;
      font-weight: 800;
    }

    .bar {
      grid-column: 1 / -1;
      height: 6px;
      overflow: hidden;
      background: #edf0f5;
      border-radius: 999px;
    }

    .bar i {
      display: block;
      height: 100%;
      width: var(--w);
      background: var(--teal);
      border-radius: inherit;
    }

    .cta {
      padding: 86px 0;
      color: white;
      background:
        linear-gradient(90deg, rgba(17, 23, 53, .94), rgba(17, 23, 53, .82)),
        url("https://pamsdubai.com/wp-content/uploads/2026/07/cityscapes-dubai-wallpaper-preview.jpg");
      background-size: cover;
      background-position: center;
    }

    .cta-box {
      max-width: 820px;
    }

    .cta h2 {
      color: white;
    }

    .cta p {
      margin-top: 16px;
      color: rgba(255, 255, 255, .78);
      font-size: 19px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .footer {
      padding: 26px 0;
      color: var(--muted);
      background: #fff;
      border-top: 1px solid var(--line);
      font-size: 14px;
    }

    .footer .wrap {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .split,
      .inventory-panel {
        grid-template-columns: 1fr;
      }

      .split .media-frame {
        height: auto;
        position: static;
        top: auto;
      }

      .split .media-frame img {
        height: auto;
        aspect-ratio: 16 / 9;
      }

      .panel-summary {
        position: static;
        top: auto;
      }

      .inventory-panel > div:first-child {
        position: static;
        top: auto;
      }

      .split {
        gap: 26px;
      }

      .split figure {
        order: -1;
      }

      .building-list {
        grid-template-columns: 1fr;
      }

      .stats-grid,
      .coverage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 860px) {
      section {
        padding: 64px 0;
      }

      .panel-summary {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 8px 16px;
      }

      .panel-summary h3 {
        width: 100%;
      }

      .panel-summary p {
        width: 100%;
      }
    }

    @media (max-width: 680px) {
      .nav {
        width: min(100% - 24px, 1180px);
        min-height: 62px;
      }

      .brand-text span {
        display: none;
      }

      .nav-actions .btn-secondary {
        display: none;
      }

      .hero {
        min-height: auto;
        background-position: 58% center;
      }

      .hero-inner {
        width: min(100% - 24px, 1180px);
        padding: 44px 0 28px;
      }

      .hero h1 {
        font-size: clamp(38px, 13vw, 58px);
      }

      .hero .lead {
        font-size: 17px;
      }

      .hero-metrics {
        gap: 10px;
      }

      .hero-metric {
        flex: 1 1 0;
        min-width: 0;
        padding: 4px 9px 5px;
      }

      .hero-metric strong {
        font-size: 24px;
      }

      .hero-metric span {
        font-size: 12px;
      }

      .btn-follow {
        display: none;
      }

      section {
        padding: 58px 0;
      }

      .wrap {
        width: min(100% - 24px, 1180px);
      }

      .stats-grid,
      .feature-grid,
      .audience-grid,
      .coverage-grid {
        grid-template-columns: 1fr;
      }

      .stat-card {
        min-height: 152px;
      }

      .district-row {
        grid-template-columns: 1fr auto;
      }

      .list-head {
        align-items: start;
        display: grid;
      }

      .list-head p {
        text-align: left;
      }

      .footer .wrap {
        display: grid;
      }
      .brand-mark {
          height: 100px;
          width: 100px;
      }
    }