    :root {
      --gold:       #00ffd1;
      --gold-light: #00ffd1;
      --noir:       #0e0e0e;
      --ink:        #1a1a1a;
      --mist:       #f5f3ef;
      --smoke:      #e8e4dc;
      --white:      #000;
      --text-mid:   #555248;
      --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
	  --transition:  0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* ── Section Wrapper ───────────────────────────────────── */
    .dual-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 100px 40px 120px;
    }

    /* ── Section Header ────────────────────────────────────── */
    .dual-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 64px;
    }

    .dual-header__eyebrow {
      font-size: 10px;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
      font-weight: 500;
    }

    .dual-header__title {
      font-size: clamp(2rem, 4vw, 3.25rem);
      font-weight: 400;
      line-height: 1.12;
      color: var(--noir);
      max-width: 560px;
    }

    .dual-header__title em {
      font-style: italic;
      color: var(--gold);
    }

    .dual-header__rule {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, var(--gold), transparent);
      margin-bottom: 14px;
      max-width: 200px;
    }

    /* ── Cards Grid ────────────────────────────────────────── */
    .dual-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }

    @media (max-width: 900px) {
      .dual-grid { grid-template-columns: repeat(2, 1fr); }


    .dual-grid > .dual-card {
      border: 1px dashed var(--smoke);
    }
      
    }
    @media (max-width: 540px) {
      .dual-grid { grid-template-columns: 1fr; }
      .dual-header { flex-direction: column; align-items: flex-start; }
      .dual-section { padding: 60px 24px 80px; }

     .dual-grid > .dual-card {
      border: 1px dashed var(--smoke);
    }
      
    }

    /* ── Individual Card ───────────────────────────────────── */
    .dual-card {
      position: relative;
      background: var(--white);
      cursor: pointer;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      min-height: 250px;
      transition: transform 0.45s var(--ease-expo), box-shadow 0.45s var(--ease-expo);
      outline: none;
    }

    .dual-card:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
    }

    /* Accent bar at top */
    .dual-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s var(--ease-expo);
      z-index: 2;
    }

    .dual-card:hover::before { transform: scaleX(1); }

    /* Hover overlay shimmer */
    .dual-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 60%, rgba(184,154,90,0.06) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .dual-card:hover::after { opacity: 1; }

    .dual-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
      z-index: 1;
    }

    /* ── Card Inner Layout ─────────────────────────────────── */
    .card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0.08;
      transition: opacity 0.4s ease, transform 0.6s var(--ease-expo);
    }

    .dual-card:hover .card-bg {
      opacity: 0.14;
      transform: scale(1.04);
    }

    .card-number {
      position: absolute;
      top: 28px;
      right: 28px;
      font-size: 72px;
      font-weight: 400;
      color: var(--smoke);
      line-height: 1;
      transition: color 0.4s ease;
      user-select: none;
    }

    .dual-card:hover .card-number { color: rgba(184,154,90,0.15); }

    .card-body {
      position: relative;
      padding: 32px 28px 36px;
      z-index: 1;
      text-align:center;
      height:100%;
    }

    .card-icon {
      width: 36px;
      height: 36px;
      margin-bottom: 20px;
      opacity: 0.75;
      transition: opacity 0.3s ease, transform 0.4s var(--ease-expo);
    }

    .dual-card:hover .card-icon {
      opacity: 1;
      transform: scale(1.1);
    }

    .card-stat {
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 600;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 10px;
      font-size:50px;
    }

    .card-stat span {
      color: var(--gold);
    }

    .card-desc {
      font-size: 14px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #fff;
      font-weight: 400;
      line-height: 1.5;
      margin-bottom: 28px;
    }

    .card-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      transition: gap 0.3s var(--ease-expo);
    position: absolute;
    bottom: 20px;
    left: 45px;
    }

    .dual-card:hover .card-cta { gap: 14px; }

    .card-cta svg {
      width: 14px;
      height: 14px;
      transition: transform 0.3s var(--ease-expo);
    }

    .dual-card:hover .card-cta svg { transform: translateX(4px); }

    /* ── Divider between cards ─────────────────────────────── */
    .dual-grid > .dual-card + .dual-card {
      border-left: 1px dashed var(--smoke);
    }

    /* ── Popup Overlay ─────────────────────────────────────── */
    .popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(14, 14, 14, 0.7);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .popup-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }

    /* ── Popup Panel ───────────────────────────────────────── */
    .popup-panel {
      position: relative;
      background: var(--white);
      max-width: 680px;
      width: 100%;
      max-height: 88vh;
      overflow-y: auto;
      overscroll-behavior: contain;
      transform: translateY(32px) scale(0.97);
      transition: transform 0.45s var(--ease-expo);
      scrollbar-width: thin;
      scrollbar-color: var(--smoke) transparent;
    }

    .popup-overlay.is-open .popup-panel {
      transform: translateY(0) scale(1);
    }

    /* Gold accent stripe */
    .popup-panel::before {
      content: '';
      display: block;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    }

    /* ── Popup Header ──────────────────────────────────────── */
    .popup-head {
      padding: 44px 120px 32px 52px;
      border-bottom: 1px solid var(--smoke);
    }

    @media (max-width: 540px) {
      .popup-head { padding: 32px 28px 24px; }
    }

    .popup-eyebrow {
      font-size: 16px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 16px;
    }

    .popup-stat {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 600;
      color: #fff;
      line-height: 1.05;
      margin-bottom: 8px;
    }

    .popup-stat span { color: var(--gold); }

    .popup-label {
      font-size: 13px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-mid);
    }

    /* ── Popup Body ────────────────────────────────────────── */
    .popup-body {
      padding: 40px 52px 52px;
    }

    #popupBody > ul {font-size:18px;}

    @media (max-width: 540px) {
      .popup-body { padding: 28px 28px 40px; }
    }

    .popup-body p {
      font-size: 18px;
      line-height: 1.8;
      color: #fff;
      margin-bottom: 20px;
    }

    .popup-body p:last-of-type { margin-bottom: 0; }

    .popup-highlights {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin: 32px 0;
    }

    @media (max-width: 480px) {
      .popup-highlights { grid-template-columns: 1fr; }
    }

    .popup-highlight-item {
      background: var(--mist);
      padding: 20px 22px;
      border-left: 3px solid var(--gold);
    }

    .popup-highlight-item strong {
      display: block;
      font-size: 1.4rem;
      color: var(--noir);
      margin-bottom: 4px;
    }

    .popup-highlight-item small {
      font-size: 11px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--text-mid);
    }

    .popup-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 32px;
      padding: 14px 28px;
      background: var(--noir);
      color: var(--white);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.3s ease;
    }

    .popup-link:hover { background: var(--gold); }

    /* ── Close Button ──────────────────────────────────────── */
    .popup-close {
      position: absolute;
      top: 50px;
      right: 50px;
      width: 36px;
      height: 36px;
      border:1px dashed #fff;
      font-size:15px;
      padding:.9em 1.9em;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .popup-close:hover {
      background: #00ffd1;
      border-color: #00ffd1;
    
    }

    .popup-close:hover svg { stroke: var(--white); }

    .popup-close svg {
      width: 16px;
      height: 16px;
      stroke: #fff;
      stroke-width: 1.5;
      transition: stroke 0.2s ease;
    }

    /* ── Decorative bottom rule ────────────────────────────── */
    .dual-footer {
      margin-top: 64px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .dual-footer::before, .dual-footer::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--smoke);
    }

    .dual-footer__logo {
      font-size: 13px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      white-space: nowrap;
    }







    /* ─── Section Wrapper ─── */
    .organisation-section {
      max-width: 1340px;
      margin: 0 auto;
      padding: 50px 40px 50px;
    }

    /* ─── Section Header ─── */
    .section-header { margin-bottom: 56px; }

    .section-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 32px;
      height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      line-height: 1.2;
      color: var(--text-dark);
      max-width: 680px;
    }

    .section-body {
      margin-top: 20px;
      font-size: 14px;
      line-height: 1.8;
      color: var(--text-mid);
      max-width: 640px;
    }

    /* ─── Cards Grid ─── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
    }

    /* ─── Individual Card ─── */
    .division-card {
      position: relative;
      display: block;
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
      aspect-ratio: 1 / 1;
      background: var(--black);
      border: none;
      padding: 0;
      border-radius:20px;
    }

    .card-image {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center top;
      transform: scale(1.04);
      transition: transform var(--transition);
    }

    .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.30) 45%,
        rgba(0,0,0,0.05) 100%
      );
      transition: background var(--transition);
    }

    .division-card:hover .card-overlay {
      background: linear-gradient(
        to top,
        rgba(11,7,2,0.82) 0%,
        rgba(40,25,5,0.45) 45%,
        rgba(20,12,2,0.15) 100%
      );
    }

    .division-card:hover .card-image { transform: scale(1.00); }

    /* ─── Card Content ─── */
    .card-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px 26px 30px;
    }

    .card-number {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.18em;
      color: var(--gold-light);
      opacity: 0.75;
      margin-bottom: 10px;
      display: block;
      transform: translateY(6px);
      transition: transform var(--transition), opacity var(--transition);
    }

    .card-title {
      font-size: clamp(1.25rem, 1.8vw, 1.6rem);
      font-weight: 600 !important;
      line-height: 1.22;
      color: #fff !important;
      letter-spacing: 0.01em;
      margin-bottom: 18px;
      font-size:28px;
    }

    .card-title em { font-style: italic; color: var(--gold-light); }

    .card-arrow {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity var(--transition), transform var(--transition);
    }

    .arrow-line {
      display: inline-block;
      width: 28px;
      height: 1px;
      background: var(--gold-light);
      transition: width var(--transition);
    }

    .arrow-tip {
      display: inline-block;
      width: 7px;
      height: 7px;
      border-right: 1.5px solid var(--gold-light);
      border-top: 1.5px solid var(--gold-light);
      transform: rotate(45deg);
      margin-left: -5px;
      flex-shrink: 0;
    }

    .division-card:hover .card-number  { opacity: 1; transform: translateY(0); }
    .division-card:hover .card-arrow   { opacity: 1; transform: translateY(0); }
    .division-card:hover .arrow-line   { width: 44px; }

    .division-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

    .division-tag {
      position: absolute;
      top: 22px;
      left: 26px;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      border: 1px solid rgba(255,255,255,0.18);
      padding: 5px 9px;
      backdrop-filter: blur(4px);
      background: rgba(0,0,0,0.12);
      transition: color var(--transition), border-color var(--transition);
    }

    .division-card:hover .division-tag { color: var(--gold-light); border-color: var(--gold); }

    /* ─── Images ─── */
    .img-knowledge    { background-image: url('https://28digital.eu/fileadmin/2026/sia/knowledge.jpg'); }
    .img-market        { background-image: url('https://28digital.eu/fileadmin/2026/sia/market.jpg'); }
    .img-investments       { background-image: url('https://28digital.eu/fileadmin/2026/sia/investments.jpg'); }

    /* ─── Responsive ─── */
    @media (max-width: 760px) {
      .cards-grid { grid-template-columns: 1fr; gap: 2px; }
      .division-card { aspect-ratio: 1 / 1; }
      .card-arrow { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 560px) {
      .organisation-section { padding: 48px 20px 64px; }
    }

    /* ════════════════════════════════
       POPUP / MODAL
    ════════════════════════════════ */
    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(10, 8, 5, 0.72);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .modal-backdrop.is-open {
      opacity: 1;
      pointer-events: all;
    }

    .modal {
      background: var(--white);
      max-width: 680px;
      width: 100%;
      max-height: 88vh;
      overflow-y: auto;
      position: relative;
      transform: translateY(28px) scale(0.97);
      transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      scrollbar-width: thin;
      scrollbar-color: var(--gold-light) transparent;
    }

    .modal-backdrop.is-open .modal {
      transform: translateY(0) scale(1);
    }

    /* Coloured top accent bar */
    .modal-accent {
      height: 4px;
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    }

    .modal-hero {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      background-size: cover;
      background-position: center;
    }

    .modal-body {
      padding: 40px 44px 48px;
    }

    .modal-tag {
      font-size: 16px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
      display: block;
      padding:0 100px 0 0;
    }

    .modal-title {
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      font-weight: 600 !important;
      line-height: 1.15;
      color: var(--text-dark);
      margin-bottom: 24px;
      text-transform:uppercase;
      margin: 20px 0 30px 0 !important;
    }

    .modal-title em { font-style: italic; color: var(--gold); }

    .modal-divider {
      width: 40px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 24px;
    }

    .modal-text {
      font-size: 18px;
      line-height: 1.85;
      color: #fff;
      margin-bottom: 20px;
    }

    .modal-text + .modal-text { margin-top: 0; }

    .modal-stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin: 32px 0;
      padding: 28px 0;
      border-top: 1px solid #e8e3dc;
      border-bottom: 1px solid #e8e3dc;
    }

    .modal-stat {
      text-align: center;
    }

    .modal-stat-value {
      font-size: 2rem;
      font-weight: 300;
      color: var(--text-dark);
      display: block;
      line-height: 1;
      margin-bottom: 6px;
    }

    .modal-stat-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-mid);
    }

    /* Close button */
    .modal-close {
      position: absolute;
      top: 50px;
      right: 50px;
      width: 36px;
      height: 36px;
      background: none;
      border: 1px dashed #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, border-color 0.2s ease;
      z-index: 10;
    }

    .modal-close:hover { background: var(--gold); border-color: var(--gold); }
    .modal-close:hover .close-icon { stroke: var(--white); }

    .close-icon {
      width: 14px;
      height: 14px;
      stroke: var(--text-dark);
      stroke-width: 1.8;
      fill: none;
      transition: stroke 0.2s ease;
    }

    @media (max-width: 560px) {
      .modal-body { padding: 28px 24px 36px; }
      .modal-stat-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }


    .modal, .popup-panel {
     margin-top:75px;
    }

      .popup-eyebrow {padding:0 100px 0 0;}
      
    }

    #organisation > div > button:hover {border:1px solid #00ffd1 !important;}
    
    .video-wrapper {
      position: relative;
      width: min(90vw, 960px);
      aspect-ratio: 16 / 9;
      border-radius: 4px;
      overflow: hidden;
      margin:0 auto;
    }

    video {
      width: 100%;
      height: 100%;
      object-fit: contain ;
      display: block;
      /* Hide controls even if browser tries to show them */
      pointer-events: none;
    }

    /* Invisible overlay prevents right-click context menu and accidental interaction */
    .overlay {
      position: absolute;
      inset: 0;
    }



    .grid-p {
      display: flex;
      max-width: 1100px;
      margin: 0 auto;
      justify-content:center;
      flex-wrap:wrap;
    }

    .card-p {
      width:23%;
      margin: 0 1% 20px 1%;
      border-radius: 20px;
      padding: 20px 20px 30px 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
	  border: 1px solid #00ffd1;
      text-align:center;
    }

    .card-p:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.08);
	  border:1px solid #00ffd1;
    }

    .profile-img-p {
      width: 75%;
      aspect-ratio: 1 / 1;
      border-radius: 16px;
      object-fit: cover;
      margin:0 auto;
      margin-bottom: 25px;
    }

    .name-p {
      font-size: 24px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 6px;

    }

    .description-p {
      font-size: 18px;
      color: #fff;
      line-height: 1.4;

    }
	
	.description-p span {display:block;margin-top:20px;font-style:italic;}


@media only screen and (max-width: 880px) {
        .card-p {
      width:35%;
        }
}

@media only screen and (max-width: 480px) {
        .card-p {
      width:75%;
        }
}    


