.p-grid-2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 48px;
  grid-row-gap: 48px;
}

@media (min-width: 768px) {
  .p-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
}

.p-grid-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 48px;
  grid-row-gap: 48px;
}

@media (min-width: 768px) {
  .p-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
}

@media (min-width: 992px) {
  .p-grid-3 {
    grid-template-columns: repeat(3, 1fr);

    grid-column-gap: 24px;
    grid-row-gap: 0px;
  }
}

@media (min-width: 1201px) {
  .p-grid-3 {
    margin-top: 1.5rem;
    grid-column-gap: 40px;
  }
}

.p-grid-g-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

@media (min-width: 576px) {
  .p-grid-g-4 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
}

@media (min-width: 768px) {
  .p-grid-g-4 {
    grid-column-gap: 16px;
  }
}

@media (min-width: 1201px) {
  .p-grid-g-4 {
    margin-top: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 12px;
  }
}

@media (min-width: 1401px) {
  .p-grid-g-4 {
    grid-column-gap: 32px;
  }
}

.p-grid-6 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-items: center;
}

/* @media (min-width: 576px) {
  .p-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
} */

.c-grid-g-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

@media (min-width: 576px) {
  .c-grid-g-4 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
}

@media (min-width: 768px) {
  .c-grid-g-4 {
    grid-column-gap: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1201px) {
  .c-grid-g-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1201px) {
  .c-grid-g-4 {
    margin-top: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 12px;
  }
}

@media (min-width: 1401px) {
  .c-grid-g-4 {
    grid-column-gap: 32px;
  }
}

.p-grid-gm-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

@media (min-width: 576px) {
  .p-grid-gm-4 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .p-grid-gm-4 .c__card,
  .p-grid-gm-4 .c__card-inner {
    background-color: transparent !important;
  }
}

@media (min-width: 768px) {
  .p-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}

/* @media (min-width: 992px) {
  .p-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
} */

@media (min-width: 1201px) {
  /* .p-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  } */

  .p-grid-6 {
    grid-template-columns: repeat(6, 1fr); /* 6 equal tracks */
    grid-template-rows: unset;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  /* Top row (items 1â€“3): each spans 2 columns => 3 items across */
  .p-grid-6 > .c__card:nth-child(1),
  .p-grid-6 > .t__card:nth-child(1),
  .p-grid-6 > .c__card:nth-child(2),
  .p-grid-6 > .t__card:nth-child(2),
  .p-grid-6 > .c__card:nth-child(3),
  .p-grid-6 > .t__card:nth-child(3) {
    grid-column: span 2;
  }

  /* Bottom row (items 4â€“5): each spans 3 columns => 2 items across */
  .p-grid-6 > .c__card:nth-child(4),
  .p-grid-6 > .t__card:nth-child(4),
  .p-grid-6 > .c__card:nth-child(5),
  .p-grid-6 > .t__card:nth-child(5) {
    grid-column: span 3;
  }
}

@media (min-width: 1201px) {
  .p-grid-6 > .c__card:nth-child(4),
  .p-grid-6 > .t__card:nth-child(4),
  .p-grid-6 > .c__card:nth-child(5),
  .p-grid-6 > .t__card:nth-child(5) {
    grid-column: span 3;
  }
}

/* Base arrow: orange */
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff3300'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transition: transform 0.25s ease;
}

/* Expanded state: rotate + REMOVE Bootstrap filter */
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  filter: none; /* ✅ THIS is the critical line */
}

/* Apply to all accordions (or scope with a class if you prefer) */
.accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff3300'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");

  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff3300'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-button:not(.collapsed) {
  color: unset;
  background-color: transparent;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
}

.grid-cards {
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(320px, 368px));
}
@media (min-width: 1201px) {
  .grid-cards {
    justify-content: center;
    /* grid-template-columns: repeat(auto-fit, minmax(368px, 376px)); */
    grid-template-columns: repeat(auto-fit, minmax(368px, 432px));
  }
}

.grid-cards > * {
  width: 100%;
}
.c-card,
.c-card .card-img-top {
  border-radius: 0;
}

.c-card-i-box {
  background-color: #ff3300;
  top: 0;
  right: 0;
}
.c-card-i-box:hover {
  cursor: pointer;
  background-color: #cc2900;
}
.c-card-i-box > i {
  color: #fff;
  font-size: 24px;
}

.o-div {
  background-color: #ff3300;
  padding: 0.5rem 1rem;
  color: #fff;
  border-radius: 8px;
  width: fit-content;
}

.w__card {
  /* padding: 2rem 1.5rem; */
  background-color: #fff;
  max-width: 448px;
}

@media (min-width: 992px) {
  .w__card {
    max-width: 100%;
  }
}

.p-grid-g-6 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

@media (min-width: 576px) {
  .p-grid-g-6 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
}

@media (min-width: 992px) {
  .p-grid-g-6 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
}

.w__card-i-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: #ff3300;
  width: fit-content;
  height: 96px;
  width: 96px;
  border-top-left-radius: 100%;
}

.w__card-i {
  font-size: 36px;
  color: #fff;
  padding: 2rem;
}
*/

/* .w__card-i-container {
  width: 128px;
  height: 128px;
  background-color: #ff3300;
  border-top-left-radius: 100%;
  display: grid;
  place-items: center;
}

.w__card-i {
  font-size: 40px;
  color: #fff;
  padding-left: 16px;
  padding-top: 16px;
}

/* .w__card {
  padding-bottom: 40px;
  padding-right: 104px;
}

.w__card-i-container {
  position: absolute;
  right: 0;
  bottom: 0;

  width: 128px;
  height: 128px;
  background-color: #ff3300;
  border-top-left-radius: 100%;

  display: grid;
  place-items: center;
}


.w__card-i {
  font-size: 40px;
  color: #fff;
  transform: translate(8px, 8px);
} */

.c-grid-g-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

@media (min-width: 576px) {
  .c-grid-g-4 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
}

@media (min-width: 768px) {
  .c-grid-g-4 {
    grid-column-gap: 16px;
  }
}

@media (min-width: 1201px) {
  .c-grid-g-4 {
    margin-top: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 12px;
  }
}

@media (min-width: 1401px) {
  .c-grid-g-4 {
    grid-column-gap: 32px;
  }
}

.c-card-wrapper {
  border: 1px solid rgb(64, 64, 64);
  border-radius: 40px;
  /* margin-bottom: 5rem !important; */
  background-color: #ebebeb;
  max-width: 480px;
}

@media (min-width: 768px) {
  .c-card-wrapper {
    max-width: unset;
  }
}

.fa-ul > li {
  display: flex;
  align-items: center !important;
}

.fa-ul > li i {
  flex-shrink: 0;
  margin-top: 4px;
}

.accordion-grid {
  display: grid;
  grid-template-columns: 1fr; /* 1 column on small screens */
  gap: 2rem; /* equal spacing everywhere */
}

/* Two columns from md (768px) */
@media (min-width: 768px) {
  .accordion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* new */

.custom-table {
  border-collapse: collapse; /* keep Bootstrap table behavior */
}

.custom-table th,
.custom-table td {
  padding: 1rem;
  border-left: 6px solid #fff;
  border-right: 6px solid #fff;
  background-clip: padding-box; /* keeps background neat */
}

/* Remove extra space on outer edges */
.custom-table th:first-child,
.custom-table td:first-child {
  border-left: none;
}

.custom-table th:last-child,
.custom-table td:last-child {
  border-right: none;
}

/* Keep your header styling consistent */
.custom-table thead th {
  background-color: #212529; /* Bootstrap dark */
  color: #fff;
}

.custom-table tbody td {
  text-align: center;
  color: #ff3300 !important;
  font-weight: 700;
}

.custom-table--2 tbody td {
  color: unset !important;
}

.custom-table tbody td span {
  font-weight: 400;
}

.custom-accordion .accordion-item {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Header button */
.custom-accordion .accordion-button {
  background: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: none;
}

/* Remove default Bootstrap arrow styling look */
.custom-accordion .accordion-button:not(.collapsed) {
  background: #f8f9fa;
  color: #000;
}

/* Nice custom arrow rotation */
.custom-accordion .accordion-button::after {
  transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* Body styling */
.custom-accordion .accordion-body {
  background: #fff;
  padding: 0.75rem 1.25rem 1rem;
}

/* Feature rows */
.custom-accordion .accordion-body div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid #f1f1f1;
  font-size: 0.95rem;
}

/* Remove last divider */
.custom-accordion .accordion-body div:last-child {
  border-bottom: none;
}

/* Checkmark styling */
.custom-accordion .accordion-body div:has(span),
.custom-accordion .accordion-body div {
  color: #333;
}

/* Emphasise ✓ */
.custom-accordion .accordion-body div::after {
  font-weight: 600;
}

/* Optional: highlight available features */
.custom-accordion .accordion-body div:contains("✓") {
  color: #198754; /* Bootstrap success green */
}

/* Muted "(Limited)" text */
.custom-accordion .text-muted {
  font-size: 0.85rem;
}

/* Improve overall spacing */
.custom-accordion {
  margin-top: 10px;
}

.credit-cards {
  margin-top: 10px;
}

.credit-card {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

/* Header */
.credit-header {
  background: #212529;
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
}

/* Body */
.credit-body {
  padding: 0.75rem 1.2rem;
}

.credit-body div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f1f1f1;
  font-size: 0.95rem;
}

.credit-body div:last-child {
  border-bottom: none;
}

/* Labels */
.credit-body span:first-child {
  color: #6c757d;
}

/* Values */
.credit-body span:last-child {
  font-weight: 600;
}

.custom-table {
  --bs-table-striped-bg: #f8f9fa; /* solid light grey */
  --bs-table-bg: #ffffff; /* solid white base */
  --bs-border-width: 0;
}

/* Base section spacing */
.section {
  padding-top: 3rem; /* 48px */
  padding-bottom: 3rem;

  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* Larger screens */
@media (min-width: 992px) {
  .section {
    padding-top: 4rem; /* 64px */
    padding-bottom: 4rem;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Optional: larger sections */
.section-lg {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .section-lg {
    padding-top: 5rem; /* 80px */
    padding-bottom: 5rem;
  }
}

/* Optional: tighter sections */
.section-sm {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* .section {
  outline: 1px dashed rgba(255, 0, 0, 0.5);
} */

/* Soccer icon container */
.soccer-icon {
  position: relative;
  display: inline-block;
  width: 1.45em;
  height: 1.8em;
  min-width: 1.45em;
  flex-shrink: 0;
}

/* Person icon */
.soccer-icon .icon-person {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.4em;
  line-height: 1;
}

/* Ball icon */
.soccer-icon .icon-ball {
  position: absolute;
  font-size: 0.34em;
  bottom: 0.25em;
  right: 0.3em;
}

.feature-list > li {
  display: flex;
  align-items: flex-start !important;
}

.feature-list > li > div:first-child {
  display: flex;
  align-items: flex-start;
  margin-top: 2px; /* adjust 1–3px if needed */
}

.feature-list i {
  line-height: 1;
  margin-top: 0 !important;
}

.feature-list strong {
  display: block;
  line-height: 1.2;
}

.cta__btn {
  display: inline-block;
  /* min-width: 276px;
  max-width: 280px; */

  min-width: 232px;
  max-width: 240px;
  width: 100%;

  padding: 0.5rem 1rem;

  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;

  border: 2px solid #ff3300;
  transition: all 0.2s ease;
  text-decoration: none;
  font-weight: 600;
}

.cta__btn--wide {
  min-width: 288px;
  max-width: 288px;
}

/* @media (min-width: 992px) and (max-width: 1200px) {
  .cta__btn--wide-x {
    min-width: 304px;
    max-width: 304px;
  }
} */

@media (max-width: 1200px) {
  .cta__btn--wide-x {
    min-width: 304px;
    max-width: 304px;
  }
}

/* Primary (filled) */
.cta__btn--primary {
  background-color: #ff3300;
  color: #fff;
}

/* Secondary (outline) */
.cta__btn--outline {
  background-color: transparent;
  color: #000;
}

/* Hover */
.cta__btn:hover {
  background-color: #cc2900;
  border-color: #cc2900;
  color: #fff;
}

@media (min-width: 768px) {
  .w-md-auto {
    width: auto !important;
  }
}

.feature-icons .icon-wrap {
  width: 2.4em; /* 👈 ensures equal spacing */
  margin-right: 0.6rem; /* replaces me-3 cleanly */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
}

.feature-icons .icon-wrap i,
.feature-icons .icon-wrap .fa-stack {
  line-height: 1;
}

.p-grid-gm-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

@media (min-width: 768px) {
  .p-grid-gm-4 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
}
