/* ══════════════════════════════════════════════════════════════
         Company Profile Video Section
      ══════════════════════════════════════════════════════════════ */

    .cp-section {
      background: var(--light-cream);
      position: relative;
      overflow: hidden;
    }

    .cp-bg-decor {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .cp-bg-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.18;
    }

    .cp-bg-glow--left {
      background: none;
      top: -200px;
      left: -200px;
    }

    .cp-bg-glow--right {
      background: var(--orange);
      bottom: -200px;
      right: -200px;
      opacity: 0.1;
    }

    .cp-bg-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }

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

    .cp-heading h2 {
      color: var(--navy) !important;
      line-height: 1.22;
    }

    .cp-heading p {
      color: var(--muted) !important;
    }

    .cp-player-wrap {
      position: relative;
      max-width: 920px;
      margin: 0 auto;
    }

    .cp-corner {
      position: absolute;
      width: 22px;
      height: 22px;
      z-index: 2;
      pointer-events: none;
    }

    .cp-corner--tl {
      top: -8px;
      left: -8px;
      border-top: 2px solid var(--orange);
      border-left: 2px solid var(--orange);
    }

    .cp-corner--tr {
      top: -8px;
      right: -8px;
      border-top: 2px solid var(--orange);
      border-right: 2px solid var(--orange);
    }

    .cp-corner--bl {
      bottom: -8px;
      left: -8px;
      border-bottom: 2px solid var(--orange);
      border-left: 2px solid var(--orange);
    }

    .cp-corner--br {
      bottom: -8px;
      right: -8px;
      border-bottom: 2px solid var(--orange);
      border-right: 2px solid var(--orange);
    }

    .cp-player {
      position: relative;
      aspect-ratio: 16 / 9;
      border-radius: 10px;
      overflow: hidden;
      background: #000;
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 40px 100px rgba(0, 0, 0, 0.55),
        0 0 0 8px rgba(6, 27, 58, 0.6);
    }

    .cp-poster {
      position: absolute;
      inset: 0;
      cursor: pointer;
      display: block;
      outline: none;
    }

    .cp-poster-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition:
        transform 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 400ms ease;
      will-change: transform;
    }

    .cp-poster:hover .cp-poster-img,
    .cp-poster:focus-visible .cp-poster-img {
      transform: scale(1.04);
      filter: brightness(0.82);
    }

    .cp-poster-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg,
          rgba(6, 27, 58, 0.88) 0%,
          rgba(6, 27, 58, 0.36) 45%,
          rgba(6, 27, 58, 0.12) 100%);
      transition: background 350ms ease;
    }

    .cp-poster:hover .cp-poster-overlay,
    .cp-poster:focus-visible .cp-poster-overlay {
      background: linear-gradient(0deg,
          rgba(6, 27, 58, 0.92) 0%,
          rgba(6, 27, 58, 0.52) 45%,
          rgba(6, 27, 58, 0.22) 100%);
    }

    .cp-placeholder-badge {
      position: absolute;
      top: 18px;
      right: 18px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(245, 130, 32, 0.9);
      color: var(--white);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.04em;
      backdrop-filter: blur(8px);
      text-transform: uppercase;
      pointer-events: none;
    }

    .cp-placeholder-badge svg {
      width: 14px;
      height: 14px;
      flex: 0 0 auto;
    }

    .cp-play-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .cp-poster:hover .cp-play-ring,
    .cp-poster:focus-visible .cp-play-ring {
      transform: translate(-50%, -50%) scale(1.1);
    }

    .cp-play-ring-pulse {
      position: absolute;
      width: 96px;
      height: 96px;
      border-radius: 50%;
      background: rgba(245, 130, 32, 0.22);
      animation: cpPulse 2.4s ease-in-out infinite;
    }

    @keyframes cpPulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 0.7;
      }

      50% {
        transform: scale(1.38);
        opacity: 0;
      }
    }

    .cp-poster:hover .cp-play-ring-pulse {
      animation-play-state: paused;
    }

    .cp-play-btn {
      position: relative;
      display: grid;
      place-items: center;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      z-index: 1;
    }

    .cp-play-btn svg {
      width: 80px;
      height: 80px;
      filter: drop-shadow(0 8px 28px rgba(245, 130, 32, 0.5));
      transition: filter 300ms ease;
    }

    .cp-poster:hover .cp-play-btn svg {
      filter: drop-shadow(0 12px 36px rgba(245, 130, 32, 0.75));
    }

    .cp-poster-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0 28px 22px;
      pointer-events: none;
    }

    .cp-poster-caption-inner {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .cp-poster-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: rgba(255, 255, 255, 0.9);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 12px;
      font-weight: 500;
      backdrop-filter: blur(8px);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .cp-poster-tag svg {
      width: 13px;
      height: 13px;
      color: var(--orange);
    }

    .cp-poster-caption p {
      margin: 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 13px;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .cp-frame {
      position: absolute;
      inset: 0;
    }

    .cp-frame iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
      background: #000;
    }

    .cp-metrics {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      max-width: 920px;
      margin: 24px auto 0;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      background: rgba(3, 38, 90, 0.04);
    }

    .cp-metric {
      position: relative;
      padding: 24px 20px;
      text-align: center;
      transition: background 220ms ease;
    }

    .cp-metric:hover {
      background: rgba(255, 255, 255, 0.45);
    }

    .cp-metric--divider::before {
      content: "";
      position: absolute;
      left: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: rgba(3, 38, 90, 0.1);
    }

    .cp-metric-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: var(--radius);
      background: rgba(245, 130, 32, 0.12);
      color: var(--orange);
      margin: 0 auto 10px;
    }

    .cp-metric-icon svg {
      width: 18px;
      height: 18px;
    }

    .cp-metric strong {
      display: block;
      color: var(--navy);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 26px;
      font-weight: 700;
      line-height: 1.1;
    }

    .cp-metric span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
    }

    /* ── Section: Gudang / Warehouse (Ultra Premium Map Layout) ── */
    .warehouse-map-showcase-area {
      position: relative;
      width: 100%;
      max-width: 1100px;
      margin: 28px auto 0;
      padding: 0 15px;
    }

    /* Aura / Luminous Glow Effect */
    .warehouse-map-showcase-area::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 85%;
      height: 85%;
      background: radial-gradient(circle at center, rgba(3, 38, 90, 0.08) 0%, rgba(245, 130, 32, 0.04) 50%, transparent 70%);
      transform: translate(-50%, -50%);
      z-index: 0;
      filter: blur(40px);
      animation: pulse-aura 6s ease-in-out infinite alternate;
    }

    @keyframes pulse-aura {
      0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.95);
      }

      100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
      }
    }

    /* Premium Glassmorphic Frame */
    .warehouse-map-wrapper {
      position: relative;
      z-index: 1;
      width: 100%;
      background: linear-gradient(145deg, #F9F7F3, #F3EBDD);
      border-radius: 28px;
      padding: 12px;
      box-shadow:
        0 24px 54px rgba(3, 38, 90, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 2px 10px rgba(255, 255, 255, 0.5);
      border: 1px solid rgba(6, 27, 58, 0.06);
      backdrop-filter: blur(10px);
    }

    /* Inner map container */
    .warehouse-map-container {
      position: relative;
      width: 100%;
      border-radius: 24px;
      overflow: hidden;
      background: rgba(3, 38, 90, 0.02);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: inset 0 4px 20px rgba(3, 38, 90, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.8);
    }

    /* Subtle Decorative Accents (Tech Corners) */
    .warehouse-map-container::before,
    .warehouse-map-container::after {
      content: "";
      position: absolute;
      width: 48px;
      height: 48px;
      border: 2px solid var(--orange);
      z-index: 2;
      opacity: 0.3;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      pointer-events: none;
    }

    .warehouse-map-container::before {
      top: 24px;
      left: 24px;
      border-right: none;
      border-bottom: none;
      border-top-left-radius: 12px;
    }

    .warehouse-map-container::after {
      bottom: 24px;
      right: 24px;
      border-left: none;
      border-top: none;
      border-bottom-right-radius: 12px;
    }

    /* Hover effects for accents */
    .warehouse-map-wrapper:hover .warehouse-map-container::before {
      top: 16px;
      left: 16px;
      opacity: 0.8;
    }

    .warehouse-map-wrapper:hover .warehouse-map-container::after {
      bottom: 16px;
      right: 16px;
      opacity: 0.8;
    }

    .warehouse-map-bg {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      z-index: 1;
    }

    .warehouse-map-wrapper:hover .warehouse-map-bg {
      transform: scale(1.02);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .warehouse-map-showcase-area {
        margin-top: 20px;
        padding: 0 10px;
      }

      .warehouse-map-wrapper {
        padding: 12px;
        border-radius: 24px;
      }

      .warehouse-map-container {
        border-radius: 16px;
      }

      .warehouse-map-container::before,
      .warehouse-map-container::after {
        display: none;
        /* Hide accents on mobile for a cleaner look */
      }
    }





    /* ══════════════════════════════════════════════
         GALLERY FILTER & ENHANCED GRID
      ══════════════════════════════════════════════ */

    .gallery-filter-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin: 36px 0 40px;
      padding: 20px 24px;
      background: var(--light-gray);
      border-radius: 12px;
      border: 1px solid var(--line);
    }

    .gallery-filter-label {
      font-family: "Poppins", Arial, sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy);
      margin-right: 4px;
      flex-shrink: 0;
    }

    .gallery-filter-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 18px;
      border-radius: 999px;
      border: 1.5px solid var(--line);
      background: var(--white);
      color: var(--navy);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition:
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
      white-space: nowrap;
      user-select: none;
    }

    .gallery-filter-btn:hover {
      border-color: var(--orange);
      color: var(--orange-dark);
      background: #fff8f1;
    }

    .gallery-filter-btn.is-active {
      background: var(--orange);
      border-color: var(--orange);
      color: var(--white);
      box-shadow: 0 6px 18px rgba(245, 130, 32, 0.3);
    }

    .gallery-filter-btn .filter-count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 20px;
      height: 20px;
      padding: 0 5px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      background: rgba(6, 27, 58, 0.1);
      color: inherit;
      transition: background 180ms ease;
    }

    .gallery-filter-btn.is-active .filter-count {
      background: rgba(255, 255, 255, 0.25);
      color: var(--white);
    }

    .gallery-stats {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .gallery-result-count {
      font-size: 14px;
      color: var(--navy);
      font-weight: 500;
    }

    .gallery-result-count strong {
      color: var(--navy);
      font-weight: 700;
    }

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

    .gallery-item {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: var(--light-gray);
      cursor: pointer;
      box-shadow: var(--shadow-soft);
      transition:
        box-shadow 260ms ease,
        transform 260ms ease,
        opacity 320ms ease;
    }

    .gallery-item:hover {
      box-shadow: var(--shadow);
      transform: translateY(-4px);
    }

    .gallery-item.is-hidden {
      display: none;
    }

    .gallery-item.is-entering {
      animation: galleryFadeIn 340ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    @keyframes galleryFadeIn {
      from {
        opacity: 0;
        transform: scale(0.94) translateY(10px);
      }

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

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 500ms ease;
    }

    .gallery-item:hover img {
      transform: scale(1.06);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          transparent 40%,
          rgba(6, 27, 58, 0.88) 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 18px 16px 16px;
      opacity: 0;
      transition: opacity 260ms ease;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay h4 {
      margin: 0;
      color: var(--white);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.35;
    }

    .gallery-overlay .gallery-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 8px;
      padding: 3px 10px;
      border-radius: 999px;
      background: var(--orange);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      font-family: "Poppins", Arial, sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      width: fit-content;
    }

    .gallery-empty {
      grid-column: 1 / -1;
      text-align: center;
      padding: 60px 20px;
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      color: var(--navy);
    }

    .gallery-empty.is-visible {
      display: flex;
    }

    .gallery-empty svg {
      opacity: 0.35;
    }

    .gallery-empty p {
      margin: 0;
      font-size: 14px;
    }

    /* ══════════════════════════════════════════════════════════════
         VISI MISI — visual enhancement (di atas base style.css)
      ══════════════════════════════════════════════════════════════ */
    .vm-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      margin-top: 40px;
    }

    .vm-card {
      position: relative;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 36px 32px;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transition:
        transform 240ms ease,
        box-shadow 240ms ease,
        border-color 240ms ease;
    }

    .vm-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--navy));
      border-radius: 16px 16px 0 0;
      opacity: 0;
      transition: opacity 240ms ease;
    }

    .vm-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: rgba(245, 130, 32, 0.25);
    }

    .vm-card:hover::before {
      opacity: 1;
    }

    .vm-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: rgba(245, 130, 32, 0.1);
      border: 1px solid rgba(245, 130, 32, 0.2);
      color: var(--orange);
      margin-bottom: 20px;
    }

    .vm-icon [data-lucide],
    .vm-icon svg {
      width: 24px;
      height: 24px;
    }

    .vm-card h3 {
      font-size: 19px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 14px;
    }

    .vm-card>p {
      color: var(--navy);
      font-size: 14.5px;
      line-height: 1.75;
      margin: 0;
    }

    .vm-card ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .vm-card ul li {
      position: relative;
      padding-left: 20px;
      color: var(--navy);
      font-size: 14.5px;
      line-height: 1.65;
    }

    .vm-card ul li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 9px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--orange);
    }

    @media (max-width: 768px) {
      .vm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .vm-card {
        padding: 28px 24px;
      }
    }

    /* ══════════════════════════════════════════════════════════════
         CLIENT LOGOS — visual enhancement
      ══════════════════════════════════════════════════════════════ */
    .client-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    .client-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px 28px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 12px;
      box-shadow: var(--shadow-soft);
      min-width: 130px;
      max-width: 180px;
      transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
    }

    .client-logo:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
      border-color: rgba(245, 130, 32, 0.25);
    }

    .client-logo img {
      width: auto;
      height: 44px;
      object-fit: contain;
      filter: grayscale(40%);
      opacity: 0.8;
      transition:
        filter 220ms ease,
        opacity 220ms ease;
    }

    .client-logo:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* ══════════════════════════════════════════════════════════════
         lp-footer — disamakan dengan gudang.html
      ══════════════════════════════════════════════════════════════ */
    .lp-footer {


      padding: 64px 0 0;
      font-size: 14px;
      line-height: 1.7;
    }

    .lp-footer-wrap {
      width: calc(100% - 40px);
      max-width: var(--container);
      margin: 0 auto;
    }

    .lp-footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
      gap: 48px 36px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(3, 38, 90, 0.1);
    }

    .lp-footer-heading {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 16px;
    }

    .lp-footer-col p:not(.lp-footer-heading),
    .lp-footer-col address {
      font-style: normal;
      color: var(--navy);
      margin: 0;
    }

    .lp-footer-social {
      display: flex;
      gap: 12px;
      margin-top: 16px;
      align-items: center;
      flex-wrap: wrap;
    }

    .lp-footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(3, 38, 90, 0.08);
      /* light navy for contrast */
      color: var(--navy);
      transition:
        background 180ms ease,
        color 180ms ease;
      flex-shrink: 0;
    }

    .lp-footer-social a:hover {
      background: var(--orange);
      color: var(--white);
    }

    .lp-footer-social svg {
      display: block;
    }

    .lp-footer-wa-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 14px;
      background: #25d366;
      color: var(--white) !important;
      font-weight: 600;
      font-size: 13px;
      padding: 8px 14px;
      border-radius: 24px;
      transition: filter 160ms ease;
    }

    .lp-footer-wa-link:hover {
      filter: brightness(1.1);
    }

    .lp-footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .lp-footer-col ul li a {
      color: var(--navy);
      transition: color 160ms ease;
      display: inline-flex;
      align-items: baseline;
      gap: 6px;
    }

    .lp-footer-col ul li a:hover {
      color: var(--orange);
    }

    .lp-footer-bottom {
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      font-size: 13px;
      color: var(--navy);
    }

    .lp-footer-bottom a {
      color: rgba(255, 255, 255, 0.45);
      transition: color 160ms ease;
    }

    .lp-footer-bottom a:hover {
      color: var(--orange);
    }

    @media (max-width: 900px) {
      .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
      }
    }

    @media (max-width: 480px) {
      .lp-footer {
        padding: 48px 0 0;
      }

      .lp-footer-wrap {
        width: calc(100% - 28px);
      }

      .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .lp-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 18px 0;
      }
    }

    /* ══════════════════════════════════════════════
         RESPONSIVE
      ══════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .gd-map-layout {
        grid-template-columns: 1fr;
      }

      .gd-map {
        height: 380px;
      }

      .gd-map-detail-content {
        flex-direction: row;
      }

      .gd-detail-img {
        width: 190px;
        height: auto;
        align-self: stretch;
        flex-shrink: 0;
      }

      .gd-detail-body {
        overflow-y: auto;
        flex: 1;
      }

      .gd-map-detail-placeholder {
        flex-direction: row;
        padding: 24px;
        justify-content: flex-start;
        text-align: left;
      }
    }

    @media (max-width: 900px) {
      .cp-player-wrap {
        max-width: 100%;
      }

      .cp-play-btn svg {
        width: 68px;
        height: 68px;
      }

      .cp-play-ring-pulse {
        width: 84px;
        height: 84px;
      }

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

      .gallery-filter-bar {
        padding: 16px 18px;
      }
    }

    @media (max-width: 768px) {
      .gd-stats-bar {
        grid-template-columns: repeat(2, 1fr);
      }

      .gd-network-heading {
        flex-direction: column;
        align-items: flex-start;
      }

      .gd-filter-wrap {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
      }

      .gd-map {
        height: 300px;
      }

      .gd-map-detail {
        flex-direction: column;
        max-height: none;
      }

      .gd-map-detail-content {
        flex-direction: column;
      }

      .gd-detail-img {
        width: 100%;
        height: 160px;
      }

      .gd-detail-body {
        overflow-y: visible;
        flex: none;
      }

      .gd-map-legend {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 14px;
        bottom: 8px;
        left: 8px;
        right: 8px;
      }
    }

    @media (max-width: 680px) {
      .cp-metrics {
        grid-template-columns: repeat(2, 1fr);
      }

      .cp-metric--divider:nth-child(3)::before {
        display: none;
      }

      .cp-metric:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .cp-metric:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }
    }

    @media (max-width: 600px) {
      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .gallery-filter-bar {
        padding: 14px 16px;
        gap: 8px;
      }

      .gallery-filter-btn {
        padding: 7px 14px;
        font-size: 12px;
      }

      .gallery-filter-label {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .cp-play-btn svg {
        width: 56px;
        height: 56px;
      }

      .cp-play-ring-pulse {
        width: 68px;
        height: 68px;
      }

      .cp-poster-caption {
        padding: 0 16px 16px;
      }

      .cp-poster-caption p {
        display: none;
      }

      .cp-placeholder-badge {
        top: 12px;
        right: 12px;
        font-size: 11px;
        padding: 5px 10px;
      }

      .cp-metric strong {
        font-size: 22px;
      }

      .cp-corner {
        width: 16px;
        height: 16px;
      }

      .gd-network-section {
        padding: 56px 0 64px;
      }

      .gd-stat strong {
        font-size: 24px;
      }

      .gd-filter-btn {
        font-size: 12px;
        padding: 6px 11px;
      }
    }

    /* ══════════════════════════════════════════════════════════════
         TEAM SECTION — Premium Redesign
       ══════════════════════════════════════════════════════════════ */
    .team-section-prem {
      background: var(--light-cream);
      position: relative;
      overflow: hidden;
    }

    .team-section-prem::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 56px 56px;
      pointer-events: none;
      z-index: 0;
    }

    .team-section-prem::after {
      content: "";
      position: absolute;
      top: -160px;
      left: -160px;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 130, 32, 0.10) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .team-section-prem>.container {
      position: relative;
      z-index: 1;
    }

    .team-section-prem .section-label {
      color: var(--orange) !important;
    }

    .team-section-prem .section-heading h2 {
      color: var(--navy) !important;
    }

    .team-section-prem .section-heading p {
      color: var(--muted) !important;
    }

    /* Team Grid Premium */
    .team-grid-prem {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      margin-top: 52px;
    }

    .team-card-prem {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      aspect-ratio: 3 / 4;
      cursor: default;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition:
        transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .team-card-prem:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
    }

    .team-card-prem img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }

    .team-card-prem:hover img {
      transform: scale(1.07);
    }

    .team-card-prem-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
          rgba(6, 27, 58, 0.75) 0%,
          rgba(6, 27, 58, 0.38) 45%,
          transparent 80%);
      transition: background 380ms ease;
    }

    .team-card-prem:hover .team-card-prem-overlay {
      background: linear-gradient(to top,
          rgba(6, 27, 58, 0.82) 0%,
          rgba(6, 27, 58, 0.48) 50%,
          transparent 85%);
    }

    .team-card-prem-body {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0 22px 22px;
      z-index: 2;
    }

    .team-card-prem-divider {
      width: 32px;
      height: 2px;
      background: var(--orange);
      border-radius: 2px;
      margin-bottom: 10px;
      transition: width 380ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .team-card-prem:hover .team-card-prem-divider {
      width: 52px;
    }

    .team-card-prem-body h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      margin: 0 0 5px;
      letter-spacing: -0.01em;
      line-height: 1.3;
      font-family: "Poppins", Arial, sans-serif;
    }

    .team-card-prem-role {
      font-size: 12.5px;
      font-weight: 500;
      color: rgba(245, 130, 32, 0.9);
      font-family: "Poppins", Arial, sans-serif;
      letter-spacing: 0.03em;
    }

    /* Number badge top-left */
    .team-card-prem-num {
      position: absolute;
      top: 16px;
      left: 16px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(245, 130, 32, 0.15);
      border: 1px solid rgba(245, 130, 32, 0.4);
      color: var(--orange);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      backdrop-filter: blur(6px);
    }

    @media (max-width: 1024px) {
      .team-grid-prem {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 44px;
      }
    }

    @media (max-width: 600px) {
      .team-grid-prem {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-top: 36px;
      }

      .team-card-prem-body {
        padding: 0 14px 16px;
      }

      .team-card-prem-body h3 {
        font-size: 14px;
      }

      .team-card-prem-role {
        font-size: 11px;
      }
    }

    @media (max-width: 400px) {
      .team-grid-prem {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 32px;
      }

      .team-card-prem {
        aspect-ratio: 4 / 3;
      }
    }

    /* ══════════════════════════════════════════════════════════════
         PARTNER KAMI — Section
       ══════════════════════════════════════════════════════════════ */
    .partner-section {
      background: var(--white);
      padding: 88px 0 96px;
    }

    .partner-section .section-heading {
      margin-bottom: 52px;
    }

    /* 2x2 grid */
    .partner-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .partner-card {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      display: block;
      text-decoration: none !important;
      box-shadow: 0 12px 40px rgba(6, 27, 58, 0.18);
      transition:
        transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .partner-card:hover {
      transform: translateY(-6px) scale(1.012);
      box-shadow: 0 24px 64px rgba(6, 27, 58, 0.28);
    }

    .partner-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }

    .partner-card:hover .partner-card-img {
      transform: scale(1.07);
    }

    /* Gradient overlay — covers bottom 60% */
    .partner-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
          rgba(6, 27, 58, 0.94) 0%,
          rgba(6, 27, 58, 0.52) 40%,
          rgba(6, 27, 58, 0.08) 72%,
          transparent 100%);
      transition: background 380ms ease;
    }

    .partner-card:hover .partner-card-overlay {
      background: linear-gradient(to top,
          rgba(6, 27, 58, 0.97) 0%,
          rgba(6, 27, 58, 0.65) 45%,
          rgba(6, 27, 58, 0.16) 76%,
          transparent 100%);
    }

    /* Content at bottom */
    .partner-card-body {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 28px 28px 26px;
      z-index: 2;
    }

    .partner-card-body h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      margin: 0 0 7px;
      line-height: 1.25;
      font-family: "Poppins", Arial, sans-serif;
      letter-spacing: -0.01em;
    }

    .partner-card-body p {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.75);
      margin: 0 0 18px;
      line-height: 1.6;
      max-width: 380px;
    }

    .partner-card-cta {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: "Poppins", Arial, sans-serif;
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--orange);
      text-decoration: none !important;
      transition: gap 280ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .partner-card:hover .partner-card-cta {
      gap: 11px;
    }

    .partner-card-cta svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      stroke: var(--orange);
    }

    /* Orange accent bar top-left corner */
    .partner-card-accent {
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--orange);
      transition: width 400ms cubic-bezier(0.22, 1, 0.36, 1);
      border-top-left-radius: 14px;
      z-index: 3;
    }

    .partner-card:hover .partner-card-accent {
      width: 100%;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .partner-section {
        padding: 64px 0 72px;
      }

      .partner-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .partner-card {
        aspect-ratio: 4 / 3;
      }

      .partner-card-body {
        padding: 20px 20px 20px;
      }

      .partner-card-body h3 {
        font-size: 18px;
      }

      .partner-card-body p {
        font-size: 13px;
      }
    }

    @media (max-width: 480px) {
      .partner-card {
        aspect-ratio: 3 / 2;
      }

      .partner-card-body h3 {
        font-size: 16px;
      }

      .partner-card-body p {
        margin-bottom: 12px;
        font-size: 12.5px;
      }
    }