  /* ===== CSS VARIABLES ===== */
  :root {
    --red: #BA1732;
    --red-light: #D4294A;
    --red-pale: #3A0A12;
    --dark: #000000;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --mid: #333333;
    --light: #F0EDEB;
    --white: #FFFFFF;
    --radius: 4px;
  }
 
 
  /* ===== GRID WRAPPER ===== */
  .pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
 
  /* row 2: 3 cards centred */
  .pricing-grid .row-2 {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
 
  /* ===== CARD ===== */
  .pkg-card {
    background: var(--dark-2);
    border: 1px solid var(--mid);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
 
  .pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(186, 23, 50, 0.18);
  }
 
  /* NAMING SPONSOR – premium highlight */
  .pkg-card.naming {
    border-color: var(--red);
    background: linear-gradient(160deg, #1A0508 0%, #111111 60%);
  }
 
  /* ===== TIER BAND ===== */
  .tier-band {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--dark-3);
    border-bottom: 1px solid var(--mid);
  }
 
  .naming .tier-band {
    background: linear-gradient(90deg, #2A0008 0%, #1A0508 100%);
    border-bottom-color: var(--red);
  }
 
  .tier-number {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--light);
    text-transform: uppercase;
  }
 
  .tier-sep {
    width: 1px;
    height: 14px;
    background: var(--mid);
  }
 
  .naming .tier-sep { background: var(--red); opacity: .4; }
 
  .tier-name {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--light);
  }
 
  .naming .tier-name { color: var(--white); }
 
  .badge-exclusive {
    margin-left: auto;
    background: var(--red);
    color: var(--white);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
  }
 
  /* ===== CARD BODY ===== */
  .card-body {
    padding: 28px 28px 0;
  }
 
  /* ===== TAGLINE ===== */
  .tagline {
    /* font-family: 'DM Serif Display', serif; */
    font-style: italic;
    font-size: 16px;
    color: #A09C94;
    margin-bottom: 20px;
    line-height: 1.4;
  }
 
  /* ===== PRICE ===== */
  .price-block {
    margin-bottom: 28px;
  }
 
  .price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    line-height: 1;
    color: var(--white);
    letter-spacing: 1px;
  }
 
  .naming .price-amount { color: var(--white); }
 
  .price-unit {
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    color: #888;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: 1px;
  }
 
  .price-slots {
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light);
    font-weight: 500;
  }
 
  .price-slots span {
    display: inline-block;
    background: rgba(186,23,50,.12);
    border: 1px solid rgba(186,23,50,.35);
    padding: 2px 10px;
    border-radius: 2px;
  }
 
  /* ===== DIVIDER ===== */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, var(--red) 0%, transparent 100%);
    margin-bottom: 24px;
    opacity: .3;
  }
 
  .naming .divider { opacity: .7; }
 
  /* ===== BENEFITS LIST ===== */
  .benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0!important;
  }
 
  .benefits li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 16px;
    line-height: 1.5;
    color: #C8C4BB;
  }
 
  .benefits li .icon {
    flex-shrink: 0;
    margin-top: 3px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  /* checkmark SVG */
  .benefits li .icon svg {
    width: 24px;
    height: 24px;
  }
 
  .naming .benefits li .icon svg circle { fill: rgba(186,23,50,.18); }
  .naming .benefits li .icon svg path { stroke: var(--red-light); }
 
  .benefits li .icon svg circle { fill: rgba(240,237,230,.08); }
  .benefits li .icon svg path { stroke: #A0A0A0; }
 
  /* ===== CARD FOOTER ===== */
  .card-footer {
    padding: 24px 28px 28px;
    margin-top: auto;
  }
 
  .cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    border: none;
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
  }
 
  .naming .cta-btn {
    background: var(--red);
    color: var(--white);
  }
 
  .naming .cta-btn:hover {
    background: var(--red-light);
    box-shadow: 0 8px 30px rgba(186,23,50,.45);
  }
 
  .cta-btn.secondary {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--mid);
  }
 
  .cta-btn.secondary:hover {
    border-color: var(--red);
    color: var(--red-light);
  }
 
  /* ===== DECORATIVE CORNER ===== */
  .corner-deco {
    position: absolute;
    top: 0; right: 0;
    width: 60px; height: 60px;
    pointer-events: none;
    overflow: hidden;
  }
 
  .corner-deco::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(186,23,50,.07);
  }
 
 
  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .pricing-grid {
      grid-template-columns: 1fr;
    }
    .pricing-grid .row-2 {
      grid-template-columns: 1fr;
    }
  }
 
  @media (max-width: 640px) {
â    .card-body { padding: 22px 20px 0; }
    .card-footer { padding: 20px 20px 22px; }
    .tier-band {
        padding: 12px 20px;
        display: flex;
        text-align: center;
        flex-direction: column;
        align-items: center;
        align-content: center;
    }
    .tier-sep { display: none; }
    .badge-exclusive {
        margin-left: 0;
    }
    .price-amount { font-size: 42px; }
  }
 
  /* ===== ENTRY ANIMATION ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  .pkg-card {
    opacity: 0;
    animation: fadeUp 0.55s ease forwards;
  }
 
  .pricing-grid > .pkg-card:nth-child(1) { animation-delay: 0.1s; }
  .pricing-grid > .pkg-card:nth-child(2) { animation-delay: 0.2s; }
  .row-2 .pkg-card:nth-child(1) { animation-delay: 0.3s; }
  .row-2 .pkg-card:nth-child(2) { animation-delay: 0.4s; }
  .row-2 .pkg-card:nth-child(3) { animation-delay: 0.5s; }

/* contact */
div#contact {
    padding: 24px;
    color: var(--white);
    background: var(--red);
}
.wpcf7-submit {
    background-color: var(--global-palette-btn-bg-hover)!important;
}
#pachet-ales-display{
    text-align: center;
    width: 100%;
    display: block;
}

.kb-count-up{
    border: solid 2px #ffffff70;
    padding: 8px;
    border-radius: 9px;
}