/* Buttons, badges, cards, icon boxes, country list, counters */

/* ---- Buttons (brand.json: bg #F68749, white text, radius 7px; hover #FF7528) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--c-primary); color: #fff;
  font-family: var(--font-heading); font-weight: 600; font-size: var(--fz-body);
  padding: 11px 28px; border-radius: var(--r-btn);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.btn:hover { background: var(--c-hover); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-cta); }
.btn svg { width: 17px; height: 17px; }

.btn--ghost {
  background: transparent; color: var(--c-text);
  border: 1px solid var(--c-line);
}
.btn--ghost:hover { background: var(--c-tint-1); color: var(--c-accent); box-shadow: none; }

.btn--dark { background: var(--c-dark); }
.btn--dark:hover { background: var(--c-dark-2); }

.btn--lg { padding: 13px 34px; font-size: var(--fz-lg); }

/* ---- Badge ---- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-accent); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: var(--fz-xs);
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-pill);
}

/* ---- Card ---- */
.card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  padding: var(--sp-5);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }

/* ---- Numbered feature boxes (original: 01-06 with icon-box mask bg) ---- */
.feature-box { position: relative; overflow: hidden; }
.feature-box__num {
  position: absolute; top: var(--sp-3); right: var(--sp-4);
  font-family: var(--font-heading); font-weight: 700;
  font-size: 2.6rem; color: var(--c-tint-2); line-height: 1;
}
.feature-box__icon {
  width: 58px; height: 58px; border-radius: var(--r-md);
  background: var(--c-tint-1); color: var(--c-accent);
  display: grid; place-items: center; margin-bottom: var(--sp-3);
}
.feature-box__icon svg { width: 28px; height: 28px; }
.feature-box h5 { margin-bottom: var(--sp-1); }

/* ---- Check list (original: e-fas-check-square rows) ---- */
.check-list { display: grid; gap: var(--sp-2); }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--c-text-2); }
.check-list svg { width: 19px; height: 19px; flex: none; margin-top: 4px; color: var(--c-primary); }

/* ---- Country list (4-column list with real flag images) ---- */
.country-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.country-cols ul { display: grid; gap: 10px; list-style: none; padding-left: 0; margin: 0; }
.country-cols li { color: var(--c-text-2); display: flex; align-items: center; gap: 10px; }
.flag {
  width: 22px; height: 16px; flex: none; border-radius: 3px;
  object-fit: cover; box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
@media (max-width: 880px) { .country-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .country-cols { grid-template-columns: 1fr; } }

/* ---- Counters (original: wdt-content-counter) ---- */
.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); text-align: center; }
.counter__value {
  font-family: var(--font-heading); font-weight: 700; font-size: var(--fz-h2);
  color: var(--c-primary); line-height: 1.1;
}
.counter__label { font-family: var(--font-heading); font-weight: 500; color: var(--c-text); margin-top: 4px; }
.section--dark .counter__label { color: var(--c-on-dark); }
@media (max-width: 880px) { .counters { grid-template-columns: repeat(2, 1fr); } }

/* ---- Channel logo tiles strip ---- */
.logo-tiles { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--sp-3); }
.logo-tile {
  min-width: 0;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md);
  aspect-ratio: 16 / 10; display: grid; place-items: center;
  padding: var(--sp-3); text-align: center; overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.logo-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); }
.logo-tile img { max-height: 46px; max-width: 100%; width: auto; object-fit: contain; }
@media (max-width: 1024px) { .logo-tiles { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .logo-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .logo-tiles { grid-template-columns: repeat(2, 1fr); gap: var(--sp-2); } }

/* ---- Trust / USP strip ---- */
.usp-strip { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); justify-content: center; }
.usp-strip li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--c-text); }
.usp-strip svg { width: 18px; height: 18px; color: var(--c-success); }
