/* .corecorp-plan-cards{
    width: 100%;
    --cc-pc-cols-mobile: 1;
    --cc-pc-cols-tablet: 2;
    --cc-pc-cols-desktop: 3;
    --cc-pc-gap: 24px;
    --cc-pc-radius: 12px;
    --cc-pc-card-bg: #f7f5f2;
    --cc-pc-accent: #0061ff;
  }
  
  .corecorp-plan-cards__sr{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
  }
  
  .corecorp-plan-cards__billing{
    display:flex;
    gap: 12px;
    align-items:center;
    padding: 0 24px 16px 24px;
    margin: 0;
    border: 0;
  }
  
  .corecorp-plan-cards__radio{
    display:flex;
    align-items:center;
    gap: 10px;
    cursor:pointer;
    user-select:none;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,0.04);
  }
  
  .corecorp-plan-cards__radio-input{
    cursor:pointer;
  }
  
  .corecorp-plan-cards__radio-label{
    font-family: "Atlas Grotesk", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color:#1e1919;
  }
  
  .corecorp-plan-cards__grid{
    display:grid;
    gap: var(--cc-pc-gap);
    grid-template-columns: repeat(var(--cc-pc-cols-mobile), minmax(0, 1fr));
  }
  
  @media (min-width: 768px){
    .corecorp-plan-cards__grid{
      grid-template-columns: repeat(var(--cc-pc-cols-tablet), minmax(0, 1fr));
    }
  }
  @media (min-width: 1024px){
    .corecorp-plan-cards__grid{
      grid-template-columns: repeat(var(--cc-pc-cols-desktop), minmax(0, 1fr));
    }
  }
  
  .corecorp-plan-card{
    height:100%;
    display:flex;
  }
  .corecorp-plan-card__inner{
    width:100%;
    display:flex;
    flex-direction:column;
    border-radius: var(--cc-pc-radius);
    background: var(--cc-pc-card-bg);
    padding: 24px;
    gap: 16px;
  }
  
  .corecorp-plan-card.is-featured .corecorp-plan-card__inner{
    outline: 2px solid rgba(0,0,0,0.08);
  }
  
  .corecorp-plan-card__audience{
    font-family: "Atlas Grotesk", sans-serif;
    font-size: 14px;
    line-height: 120%;
    color: #524a3ed1;
  }
  
  .corecorp-plan-card__name{
    margin:0;
    font-family: "Atlas Grotesk", sans-serif;
    font-weight: 600;
    line-height: 120%;
    font-size: 28px;
    color:#1e1919;
  }
  
  .corecorp-plan-card__price{
    font-family: "Atlas Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    color:#1e1919;
  }
  
  .corecorp-plan-card__promo{
    font-family: "Atlas Grotesk", sans-serif;
    font-size: 14px;
    line-height: 150%;
    color:#524a3ed1;
  }
  
  .corecorp-plan-card__primary-link{
    display:inline-flex;
    width:100%;
    justify-content:space-between;
    align-items:center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--cc-pc-accent);
    border: 1px solid var(--cc-pc-accent);
    color: #fff;
    text-decoration:none;
  }
  
  .corecorp-plan-card__primary-text{
    font-family: "Atlas Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
  }
  
  .corecorp-plan-card__primary-icon svg{
    width: 20px;
    height: 20px;
  }
  
  .corecorp-plan-card__secondary-link{
    display:inline-flex;
    align-items:center;
    gap: 6px;
    text-decoration: underline;
    color:#1e1919;
  }
  
  .corecorp-plan-card__secondary-text{
    font-family: "Atlas Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
  }
  
  .corecorp-plan-card__secondary-icon{
    transition: transform .25s cubic-bezier(0.4,0,0.6,1);
  }
  .corecorp-plan-card__secondary-link:hover .corecorp-plan-card__secondary-icon{
    transform: translateX(4px);
  }
  
  .corecorp-plan-card__features{
    padding-top: 8px;
  }
  
  .corecorp-plan-card__feature-list{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap: 10px;
  }
  
  .corecorp-plan-card__feature{
    display:grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items:flex-start;
  }
  
  .corecorp-plan-card__feature-icon svg{
    width: 18px;
    height: 18px;
  }
  
  .corecorp-plan-card__feature-text{
    font-family: "Atlas Grotesk", sans-serif;
    font-size: 14px;
    line-height: 150%;
    color:#1e1919;
  }
  
  .corecorp-plan-card__feature-strong{
    font-weight: 600;
    margin-right: 4px;
  }
  
  /* new */

  .corecorp-plan-cards {
    display: flex;
    flex-direction: column;
  }
  
  .corecorp-plan-cards > * {
    flex-grow: 1;
    width: 100%;
  }
  
  .corecorp-plan-cards__billing {
    display: flex;
    flex-wrap: wrap;
  
    border: 0;
    margin: 0;
    margin-bottom: -16px; /* 2 × 8px */
  
    padding-left: 24px;  /* 3 × 8px */
    padding-right: 24px; /* 3 × 8px */
    padding-bottom: 16px; /* 2 × 8px */
  }
  
  @media (min-width: 1280px) {
    .corecorp-plan-cards__billing {
      padding-bottom: 32px; /* 4 × 8px */
    }
  }
  
  .corecorp-plan-cards__sr:not(:focus):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
  }
  
  .corecorp-plan-cards__sr {
    /* text helpers */
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    overflow-wrap: break-word;
  
    /* spacing reset */
    padding: 0;
    margin: 0;
  
    /* typography */
    font-family: "Atlas Grotesk", sans-serif;
  
    /* visuals */
    background-color: transparent;
  }

  .corecorp-plan-cards__radio-container{
    margin-bottom: 16px; /* 2 × 8px */
    margin-right: 16px;  /* 2 × 8px */

    display: flex;
    align-items: center;
  }
  
  .corecorp-plan-cards__radio-wrapper {
    position: relative;
    display: flex;
    width: auto;
  
    /* spacing (1.5 × 8px) */
    padding: 12px;
  }
  
  @media (min-width: 1280px) {
    .corecorp-plan-cards__radio-wrapper {
      /* spacing (0.5 × 8px) */
      padding: 4px;
    }
  }
  
  .corecorp-plan-cards__radio {
    /* text helpers */
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    overflow-wrap: break-word;
  
    /* layout */
    width: auto;
  
    /* spacing reset */
    padding: 0;
    margin: 0;
  
    /* typography */
    font-family: "Atlas Grotesk", sans-serif;
    font-size: 16px;
    line-height: 24px;
  
    /* visuals */
    background-color: transparent;
    color: #1e1919;
  }
  
  /* label spacing */
  .corecorp-plan-cards__radio{
    padding-left: 28px;
  }
  
  .corecorp-plan-cards__radio-input {
    appearance: none;
    -webkit-appearance: none;
  
    background-color: initial;
    border: initial;
    border-image: initial;
    border-radius: initial;
  
    cursor: pointer;
  
    position: absolute;
    top: 0;
    left: 0;
  
    width: 100%;
    height: 100%;
  
    margin: 0;
    padding: 0;
  }
  
  .corecorp-plan-cards__radio-input::before,
.corecorp-plan-cards__radio-input:checked::after {
  content: "";
  display: inline-block;
  position: absolute;
  box-sizing: border-box;
  outline: none;

  border-radius: 50%;
  transform: translateY(-50%);

  /* spacing: 3 × 8px */
  top: 24px;
}

.corecorp-plan-cards__radio-input::before {
  width: 20px;
  height: 20px;

  /* spacing: 1.5 × 8px */
  left: 12px;

  border: 1px solid #1e1919;
}

@media (min-width: 1280px) {
  .corecorp-plan-cards__radio-input::before {
    /* spacing: 0.5 × 8px */
    left: 4px;
  }

  .corecorp-plan-cards__radio-input::before,
  .corecorp-plan-cards__radio-input:checked::after {
    /* spacing: 2 × 8px */
    top: 16px;
  }
}

.corecorp-plan-cards__radio-input:checked::after {
    content: "";
    display: inline-block;
    position: absolute;
    box-sizing: border-box;
    outline: none;
  
    border-radius: 50%;
    transform: translateY(-50%);
  
    /* spacing: 3 × 8px */
    top: 24px;
  
    /* inner dot */
    width: 12px;   /* 1.5 × 8px */
    height: 12px;  /* 1.5 × 8px */
    left: 16px;    /* 2 × 8px */
  
    border: 6px solid #1e1919;
  }
  
  @media (min-width: 1280px) {
    .corecorp-plan-cards__radio-input:checked::after {
      /* spacing overrides */
      top: 16px;   /* 2 × 8px */
      left: 8px;   /* 1 × 8px */
    }
  }
  
.corecorp-plan-cards__radio-input:checked{
background-image: none !important;
}

.corecorp-plan-cards__radio-input:focus {
box-shadow: none;
outline: none;
}
.corecorp-plan-cards__radio-input:focus {
    box-shadow: none;
    outline: none;
}

.corecorp-plan-cards__radio-input:focus-visible {
    box-shadow: 0 0 0 3px #428bff;
    outline: none;
}

.corecorp-plan-cards__grid {
    /* base grid */
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  
    /* spacing */
    gap: 24px;
    row-gap: 24px;
  
    padding-left: 24px;  /* 3 × 8px */
    padding-right: 24px; /* 3 × 8px */
  
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  }
  
  @media (min-width: 768px) {
    .corecorp-plan-cards__grid {
      grid-template-columns: repeat(24, 1fr);
    }
  }

  .corecorp-plan-card {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* default (mobile) */
    grid-column: span 12;
  }
  
  @media (min-width: 768px) {
    .corecorp-plan-card {
      grid-column: span 12;
    }
  }
  
  @media (min-width: 1024px) {
    .corecorp-plan-card {
      grid-column: span 8;
    }
  }
  
  @media (min-width: 1280px) {
    .corecorp-plan-card {
      grid-column: span 8;
    }
  }
  
  .corecorp-plan-card-container {
    display: flex;
    width: 100%;
    justify-content: center;
    height: 100%;
  }

  .corecorp-plan-card-wrapper {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* layout */
    display: flex;
    flex-direction: column;
    width: 100%;
  
    /* visuals */
    background-color: #fff;
    border-radius: 12px;
  
    /* scroll */
    scroll-margin-top: 72px;
  }
  
  .corecorp-plan-card__inner {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* layout */
    display: flex;
    flex-direction: column;
    height: 100%;
  
    /* spacing (3 × 8px) */
    padding: 24px;
    padding-top: 24px;
  
    /* visuals */
    background-color: #faf9f7;
    color: #1e1919;
    border-radius: 12px;
  }
  
  @media (min-width: 768px) {
    .corecorp-plan-card__inner {
      /* spacing (6 × 8px) */
      padding: 48px;
      padding-top: 24px;
    }
  }
  
  .corecorp-plan-card__top {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* layout */
    display: grid;
    grid-auto-flow: row;
    grid-template-rows: max-content;
  
    justify-content: stretch;
    align-items: center;
  
    /* spacing */
    row-gap: 16px; /* 2 × 8px */
  
    /* reset */
    padding: 0;
    margin: 0;
    margin-bottom: 16px;
  }
  .corecorp-plan-card__audience {
    /* inline styles */
    width: 100%;
    white-space: normal;
  
    /* text helpers */
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    overflow-wrap: anywhere;
  
    /* spacing */
    padding: 0;
    padding-right: 8px; /* 1 × 8px */
    margin: 0;
  
    /* typography */
    font-family: "Atlas Grotesk", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
  
    /* visuals */
    background-color: transparent;
    color: #524a3ed1;
  }
  
  .corecorp-plan-card__name {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* text helpers */
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    overflow-wrap: anywhere;
  
    /* spacing reset */
    padding: 0;
    margin: 0;
  
    /* typography */
    font-family: "Atlas Grotesk", sans-serif;
    font-size: 27px;
    font-weight: 500;
    line-height: 120%;
  
    /* visuals */
    background-color: transparent;
  }
  
  .corecorp-plan-card__price-value {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* text helpers */
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    overflow-wrap: anywhere;
  
    /* spacing reset */
    padding: 0;
    margin: 0;
  
    /* typography */
    font-family: "Atlas Grotesk", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
  
    /* visuals */
    background-color: transparent;
    color: #1e1919;
  }
  
  .corecorp-plan-card__primary{
    margin-top: 32px;
  }

  .corecorp-plan-card__primary-link {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* button base */
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
  
    transition-duration: 0.10s;
    transition-property: background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  
    /* layout */
    display: inline-block;
    width: 100%;
  
    /* spacing */
    padding-top: 16px;    /* 2 × 8px */
    padding-bottom: 16px; /* 2 × 8px */
    padding-left: 24px;   /* 3 × 8px */
    padding-right: 24px;  /* 3 × 8px */
  
    /* visuals */
    background-color: #0061fe;
    color: #f7f5f2;
  
    border-style: solid;
    border-width: 2px;
    border-color: #0061fe;
    border-radius: 16px; /* 2 × 8px */
  }
  
  .corecorp-plan-card__secondary-link-wrapper {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* layout */
    display: inline-grid;
    grid-auto-flow: column;
    grid-template-columns: auto;
  
    justify-content: space-between;
    align-items: center;
  
    width: 100%;
    height: 100%;
  
    position: relative;
  
    /* spacing */
    column-gap: 24px; /* 3 × 8px */
  
    /* reset */
    padding: 0;
    margin: 0;
  
    /* text */
    text-decoration: none;
  }
  
  .corecorp-plan-card__primary-link:hover{
    background-color: #0057e5;
  }

  .corecorp-plan-card__primary-text {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* text helpers */
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    overflow-wrap: anywhere;
  
    /* spacing reset */
    padding: 0;
    margin: 0;
  
    /* typography */
    font-family: "Atlas Grotesk", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
  
    /* visuals */
    background-color: transparent;
    color: inherit;
    text-decoration: none !important;
    text-underline-position: none !important;
  }
  
  .corecorp-plan-card__primary-icon, .corecorp-plan-card__secondary-icon{
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* layout */
    display: block;
  
    /* icon base */
    height: 0;
    margin-top: -24px;
  
    /* motion */
    transition-property: transform;
    transition-duration: 0.30s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  
    /* icon offset (0.5 × 8px) */
    --cc-button-icon-transform: translateX(4px);
  }
  .corecorp-plan-card__secondary-icon-wrapper{
    /* box */
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;

  /* layout */
  display: inline-block;

  /* size */
  width: 24px;
  height: 24px;
  }

  .corecorp-plan-card__primary-icon-wrapper{
      /* box */
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;

  /* layout */
  display: inline-block;

  /* size */
  width: 24px;
  height: 24px;
  }

  .corecorp-plan-card__primary-link:hover .corecorp-plan-card__primary-icon, .corecorp-plan-card__secondary-link:hover .corecorp-plan-card__secondary-icon{
    transform: var(--cc-button-icon-transform);
  }
  .corecorp-plan-card__features {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* layout */
    flex: 1;
  
    /* spacing (4 × 8px) */
    padding-top: 32px;
  }
  
  .corecorp-plan-card__features-wrapper {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* layout */
    display: grid;
    grid-auto-flow: row;
    grid-template-rows: max-content;
  
    justify-content: stretch;
    align-items: center;
  
    /* spacing (2 × 8px) */
    row-gap: 16px;
  
    /* reset */
    padding: 0;
    margin: 0;
  }
  
  .corecorp-plan-card__feature-list {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* layout */
    display: grid;
    grid-auto-flow: row;
    grid-template-rows: max-content;
  
    justify-content: stretch;
    align-items: center;
  
    /* spacing (2 × 8px) */
    row-gap: 16px;
  
    /* reset */
    padding: 0;
    margin: 0;
  }

  .corecorp-plan-card__feature {
    /* inline style */
    list-style: none;
  
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* layout */
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: auto;
  
    justify-content: flex-start;
    align-items: flex-start;
  
    /* spacing (1 × 8px) */
    column-gap: 8px;
  
    /* reset */
    padding: 0;
    margin: 0;
  
    /* text */
    color: inherit;
  }
  
  .corecorp-plan-card__feature-icon {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* layout */
    display: inline-block;
  
    /* size */
    width: 24px;
    height: 24px;
  
    /* visual offset */
    margin-top: -1px;
  }
  
  .corecorp-plan-card__feature-text {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* text helpers */
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    overflow-wrap: anywhere;
    text-wrap: pretty;
  
    /* spacing reset */
    padding: 0;
    margin: 0;
  
    /* typography */
    font-family: "Atlas Grotesk", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  
    /* visuals */
    background-color: transparent;
    color: #1e1919;
  }
  
  .corecorp-plan-card__secondary {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* layout */
    min-height: 24px;
  
    /* spacing (3 × 8px) */
    margin-top: 24px;
  }
  
  .corecorp-plan-card__secondary-link {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* button base */
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
  
    transition-duration: 0.10s, 0.10s;
    transition-property: background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  
    /* layout */
    display: inline-block;
    width: fit-content;
  
    /* spacing reset */
    padding: 0;
  
    /* visuals */
    border-style: none;
    background-color: transparent;
    color: #1e1919;
  }
  
  .corecorp-plan-card__secondary-link-wrapper {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* layout */
    display: inline-grid;
    grid-auto-flow: column;
    grid-template-columns: auto;
  
    justify-content: flex-start;
    align-items: center;
  
    width: 100%;
    height: 100%;
  
    position: relative;
  
    /* spacing */
    column-gap: 4px; /* 0.5 × 8px */
  
    /* reset */
    padding: 0;
    margin: 0;
  
    /* text */
    text-decoration: underline;
  }

  .corecorp-plan-card__primary-link-wrapper {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* layout */
    display: inline-grid;
    grid-auto-flow: column;
    grid-template-columns: auto;
  
    justify-content: flex-start;
    align-items: center;
  
    width: 100%;
    height: 100%;
  
    position: relative;
  
    /* spacing */
    column-gap: 4px; /* 0.5 × 8px */
  
    /* reset */
    padding: 0;
    margin: 0;
  
  }
  
  /* underline styling for direct children */
  .corecorp-plan-card__secondary-link-wrapper > * {
    text-decoration-color: #524a3ed1;
    text-decoration-thickness: 1px;
    text-underline-position: under;
  }
  
  .corecorp-plan-card__secondary-text {
    /* box */
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  
    /* text helpers */
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    overflow-wrap: anywhere;
  
    /* spacing reset */
    padding: 0;
    margin: 0;
  
    /* typography */
    font-family: "Atlas Grotesk", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
  
    /* visuals */
    background-color: transparent;
    color: inherit;
  }
  
  .corecorp-plan-card__secondary-link-wrapper{

  }

  .corecorp-plan-card__feature-strong, .corecorp-plan-card__feature b{
    font-weight: 500;
  }

  /* latajacy kontener */
  .corecorp-plan-card__feature {
    display: grid;
    grid-template-columns: 20px 1fr;
    column-gap: 10px;
    align-items: start;
  }
  
  .corecorp-plan-card__feature-text {
    position: relative;
  }
  
  .corecorp-plan-card__feature-tooltip {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    position: relative;
    cursor: help;
    outline: none;
  }
  
  .corecorp-plan-card__feature-tooltip-icon svg,
  .corecorp-plan-card__feature-tooltip-icon i {
    width: 16px;
    height: 16px;
  }
  
  .corecorp-plan-card__feature-tooltip-bubble {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(4px);
    max-width: 260px;
    width: max-content;
    padding: 10px 12px;
    border-radius: 10px;
    background: #1e1919;
    color: #fff;
    font-size: 12px;
    line-height: 1.35;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
  }
  
  .corecorp-plan-card__feature-tooltip-bubble::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #1e1919;
  }
  
  /* hover + focus (działa też na klawiaturze) */
  .corecorp-plan-card__feature-tooltip:hover .corecorp-plan-card__feature-tooltip-bubble,
  .corecorp-plan-card__feature-tooltip:focus .corecorp-plan-card__feature-tooltip-bubble,
  .corecorp-plan-card__feature-tooltip:focus-within .corecorp-plan-card__feature-tooltip-bubble {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  