
    /* ======= Függőleges tabok (bal) – prémium verzió ======= */
    .vtabs {
      display: grid;
      grid-template-columns: 320px 1.1fr 1fr;
      gap: 0;
      background: var(--white);
      border-radius: var(--r-xl);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      min-height: 560px;
      position: relative;
      isolation: isolate;
    }

    /* --- Bal: tabok --- */
    .vtabs__menu {
      position: relative;
      background:
        radial-gradient(circle at 10% 0%, rgba(74,142,166,0.18) 0%, transparent 50%),
        linear-gradient(180deg, var(--navy) 0%, #0f2231 100%);
      padding: 20px 14px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .vtabs__menu::before {
      content: '';
      position: absolute;
      top: -160px; right: -120px;
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(107,179,204,0.15) 0%, transparent 70%);
      pointer-events: none;
      border-radius: 50%;
    }
    .vtabs__menu::after {
      content: '';
      position: absolute;
      bottom: -120px; left: -80px;
      width: 220px; height: 220px;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 50%;
      pointer-events: none;
    }
    .vtabs__menu-title {
      font-family: 'Poppins', sans-serif;
      font-size: 10px; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.16em;
      color: var(--brand-light);
      padding: 10px 18px 14px;
      position: relative; z-index: 1;
    }
    .vtabs__btn {
      position: relative;
      display: flex; align-items: center; gap: 14px;
      width: 100%;
      padding: 14px 18px;
      background: none; border: none;
      text-align: left; cursor: pointer;
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px; font-weight: 600;
      color: rgba(255,255,255,0.72);
      border-radius: 12px;
      transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
      z-index: 1;
    }
    .vtabs__btn-icon {
      flex-shrink: 0;
      width: 36px; height: 36px; border-radius: 10px;
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,0.08);
      color: var(--brand-light);
      font-size: 14px;
      transition: background 0.25s ease, color 0.25s ease, transform 0.3s ease;
    }
    .vtabs__btn-label {
      flex: 1;
      line-height: 1.25;
      min-width: 0;
    }
    .vtabs__btn-arrow {
      opacity: 0;
      font-size: 11px;
      color: rgba(255,255,255,0.55);
      transform: translateX(-4px);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .vtabs__btn:hover {
      color: #fff;
      background: rgba(255,255,255,0.05);
    }
    .vtabs__btn:hover .vtabs__btn-icon {
      background: rgba(107,179,204,0.18);
      color: #fff;
    }
    .vtabs__btn:hover .vtabs__btn-arrow {
      opacity: 1;
      transform: translateX(0);
    }
    .vtabs__btn.is-active {
      color: #fff;
      background: linear-gradient(90deg, rgba(74,142,166,0.35) 0%, rgba(74,142,166,0.08) 100%);
      box-shadow: inset 3px 0 0 var(--brand-light);
    }
    .vtabs__btn.is-active .vtabs__btn-icon {
      background: var(--brand-light);
      color: var(--navy);
      transform: scale(1.02);
    }
    .vtabs__btn.is-active .vtabs__btn-arrow { opacity: 1; transform: translateX(0); color: var(--brand-light); }
    
    /* --- Közép: kép --- */
    .vtabs__img {
      position: relative;
      overflow: hidden;
      background: var(--bg-warm);
    }
    .vtabs__img-block {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transform: scale(1.04);
      transition: opacity 0.5s ease, transform 0.7s ease, visibility 0s linear 0.5s;
    }
    .vtabs__img-block.is-active {
      opacity: 1;
      visibility: visible;
      transform: scale(1);
      transition: opacity 0.5s ease, transform 0.7s ease, visibility 0s;
    }
    .vtabs__img-block img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
    }
    .vtabs__img-block::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(30,58,80,0.45) 100%);
      pointer-events: none;
    }
    .vtabs__img-badge {
      position: absolute;
      top: 18px; left: 18px;
      z-index: 2;
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.92);
      color: var(--navy);
      font-family: 'Poppins', sans-serif;
      font-size: 11px; font-weight: 800;
      letter-spacing: 0.06em; text-transform: uppercase;
      backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
      box-shadow: var(--shadow-sm);
    }
    .vtabs__img-badge i { color: var(--brand); font-size: 11px; }

    /* --- Jobb: panel --- */
    .vtabs__panel-wrap {
      position: relative;
      background:
        radial-gradient(circle at 100% 0%, var(--brand-pale) 0%, transparent 50%),
        var(--white);
    }
    .vtabs__panel {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 12px;
      padding: 40px 40px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
    }
    .vtabs__panel.is-active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transition: opacity 0.5s ease 0.05s, transform 0.5s ease 0.05s, visibility 0s;
    }
    .vtabs__panel .sub {
      display: inline-flex; align-items: center;
      align-self: flex-start;
      gap: 8px;
      padding: 5px 14px;
      border-radius: 999px;
      background: var(--brand-pale);
      font-size: 11px; font-weight: 800;
      color: var(--brand);
      text-transform: uppercase; letter-spacing: 0.14em;
    }
    .vtabs__panel .sub::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--brand);
    }
    .vtabs__panel h2 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(22px, 2.1vw, 30px); font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.02em; line-height: 1.15;
      margin: 0;
    }
    .vtabs__panel p {
      font-size: 14px; line-height: 1.85; color: var(--text-mid);
      margin: 0;
    }
    .vtabs__panel-meta {
      display: flex; flex-wrap: wrap; gap: 10px;
      margin-top: 4px;
    }
    .vtabs__panel-meta span {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 6px 12px;
      border-radius: 999px;
      background: var(--bg-warm);
      color: var(--text-mid);
      font-size: 12px; font-weight: 600;
    }
    .vtabs__panel-meta i { color: var(--brand); font-size: 11px; }
    .vtabs__panel-cta {
      display: flex; flex-wrap: wrap; gap: 10px;
      margin-top: 8px;
    }
    .vtabs__link {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 10px 14px;
      font-size: 12px; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--brand);
      border-radius: 10px;
      transition: color 0.2s ease, background 0.2s ease;
    }
    .vtabs__link:hover { color: var(--brand-dark); background: var(--brand-pale); }

    /* ======= Reszponzivitás ======= */
    @media (max-width: 1200px) {
      .vtabs { grid-template-columns: 280px 1fr 1fr; min-height: 520px; }
      .vtabs__panel { padding: 32px 32px; }
    }

    /* --- Tablet: menü marad bal oldalt, kép+panel egymás alá --- */
    @media (max-width: 1024px) {
      .vtabs {
        grid-template-columns: 240px 1fr;
        min-height: auto;
        border-radius: var(--r-lg);
      }
      .vtabs__menu { grid-row: 1 / span 2; }
      .vtabs__img { min-height: 280px; }
      .vtabs__panel-wrap {
        position: relative;
        min-height: 260px;
      }
      .vtabs__panel { padding: 28px 28px; }
    }

    /* --- Mobil: akkordion – minden tab egymás alatt, lenyitható --- */
    @media (max-width: 780px) {
      .vtabs {
        grid-template-columns: 1fr;
        border-radius: var(--r-lg);
        box-shadow: var(--shadow-md);
        min-height: 0;
      }
      /* A középső kép és a külön panel-tároló rejtve – a tartalom a gombok alá kerül */
      .vtabs__img,
      .vtabs__panel-wrap { display: none; }

      .vtabs__menu {
        flex-direction: column;
        padding: 14px 14px 18px;
        gap: 8px;
      }
      .vtabs__menu::before,
      .vtabs__menu::after { display: none; }
      .vtabs__menu-title {
        margin: 2px 4px 8px;
        font-size: 11px;
        letter-spacing: 0.14em;
      }

      .vtabs__btn {
        width: 100%;
        padding: 14px 14px;
        border-radius: 12px;
        gap: 12px;
        font-size: 14px;
      }
      .vtabs__btn-icon { width: 34px; height: 34px; font-size: 13px; }
      .vtabs__btn-label { flex: 1 1 auto; }
      .vtabs__btn-arrow {
        display: inline-flex;
        opacity: 1;
        transform: rotate(90deg);
        transition: transform 0.3s ease;
        font-size: 11px;
        color: rgba(255,255,255,0.7);
      }
      .vtabs__btn.is-active .vtabs__btn-arrow {
        transform: rotate(-90deg);
        color: #fff;
      }
      .vtabs__btn.is-active {
        box-shadow: none;
        background: linear-gradient(90deg, var(--brand) 0%, var(--brand-dark) 100%);
        border-radius: 12px 12px 0 0;
      }

      /* Akkordion tartalom – JS-ből kerül be a gomb alá */
      .vtabs__acc {
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        background: var(--white);
        border-radius: 0 0 12px 12px;
        margin-top: -8px;
        transition: max-height 0.4s ease, opacity 0.25s ease, margin-top 0.3s ease;
      }
      .vtabs__acc.is-open {
        max-height: 1600px;
        opacity: 1;
        margin-top: 0;
        box-shadow: 0 10px 24px -18px rgba(0,0,0,0.4);
      }
      .vtabs__acc-img {
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden;
      }
      .vtabs__acc-img img {
        width: 100%; height: 100%;
        object-fit: cover;
        display: block;
      }
      .vtabs__acc-img::after {
        content: "";
        position: absolute; left: 0; right: 0; bottom: 0; height: 40%;
        background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.45) 100%);
        pointer-events: none;
      }
      .vtabs__acc-panel {
        padding: 22px 20px 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .vtabs__acc-panel .sub {
        align-self: flex-start;
        display: inline-block;
        padding: 5px 12px;
        background: linear-gradient(90deg, rgba(25,126,165,0.10) 0%, rgba(25,126,165,0.04) 100%);
        color: var(--brand);
        border-radius: 999px;
        font-weight: 700;
        font-size: 10.5px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
      }
      .vtabs__acc-panel h2 {
        margin: 0;
        font-family: 'League Spartan', sans-serif;
        font-weight: 800;
        color: var(--navy);
        font-size: 21px;
        line-height: 1.15;
      }
      .vtabs__acc-panel p {
        margin: 0;
        color: rgba(25,50,74,0.82);
        font-size: 14px;
        line-height: 1.7;
      }
      .vtabs__acc-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
      .vtabs__acc-meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 12px;
        background: rgba(25,126,165,0.08);
        color: var(--brand-dark);
        border-radius: 999px;
        font-size: 11.5px;
        font-weight: 600;
      }
      .vtabs__acc-meta i { color: var(--brand); }
      .vtabs__acc-cta {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 4px;
      }
      .vtabs__acc-cta .tpl-btn {
        width: 100%;
        justify-content: center;
      }
      .vtabs__acc-cta .vtabs__link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 0;
        color: var(--brand);
        font-weight: 700;
        font-size: 13px;
        text-decoration: none;
      }
    }

    /* --- Kis mobil --- */
    @media (max-width: 480px) {
      .vtabs__btn { font-size: 13.5px; padding: 13px 12px; }
      .vtabs__btn-icon { width: 32px; height: 32px; font-size: 12px; }
      .vtabs__acc-img { height: 190px; }
      .vtabs__acc-panel { padding: 20px 16px 22px; }
      .vtabs__acc-panel h2 { font-size: 19px; }
      .vtabs__acc-panel p { font-size: 13.5px; }
      .vtabs__acc-meta span { padding: 5px 10px; font-size: 11px; }
    }
  
