/* ==========================================================================
   Instant Free Credit Malaysia — styles.css
   Editorial casino-bonus comparison design system
   ========================================================================== */

:root {
  --bg-main: #16090D;
  --burgundy: #321016;
  --wine: #50151B;
  --card-bg: #271116;
  --red: #D92A21;
  --flame-orange: #FF5A18;
  --warm-orange: #FF8431;
  --gold: #FFC56E;
  --cream: #FFD3A0;
  --white: #FFFFFF;
  --muted: #D7B9B3;
  --border: rgba(255, 116, 62, 0.25);
  --blue: #3BD6FF;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --max-width: 1280px;
  --header-h: 76px;
  --sidebar-w: 264px;

  --shadow-glow: 0 0 40px rgba(217, 42, 33, 0.25);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-heading: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cream);
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1em; }

.gradient-text {
  background: linear-gradient(90deg, var(--cream), var(--warm-orange) 55%, var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flame-orange);
  background: rgba(217, 42, 33, 0.12);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head p {
  font-size: 1.05rem;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s var(--ease);
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

/* ---------- Focus visibility ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  min-height: 48px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--flame-orange), var(--red));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(217, 42, 33, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(255, 90, 24, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  border-color: var(--warm-orange);
  background: rgba(255, 116, 62, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 18px;
  min-height: 40px;
  font-size: 0.8rem;
}

.link-inline {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* ==========================================================================
   Top bar
   ========================================================================== */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
  padding-inline: 24px;
  background: rgba(50, 16, 22, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.topbar.is-scrolled {
  background: rgba(22, 9, 13, 0.92);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.logo {
  display: flex;
  align-items: center;
  flex: none;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 197, 110, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  white-space: nowrap;
}

.topbar-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none;
  background: var(--flame-orange);
  box-shadow: 0 0 8px var(--flame-orange);
}

.topbar-spacer {
  flex: 1;
}

.topbar-cta {
  flex: none;
}

.topbar-cta .btn {
  padding: 12px 20px;
  font-size: 0.8rem;
}

.nav-toggle {
  display: none;
  flex: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream);
  position: relative;
  transition: background 0.2s var(--ease);
}

.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s var(--ease);
}

.nav-toggle .bar::before { top: -6px; }
.nav-toggle .bar::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .bar::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar::after { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Sidebar
   ========================================================================== */

.sidebar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  bottom: 0;
  z-index: 480;
  width: var(--sidebar-w);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--burgundy), var(--bg-main) 85%);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  transition: transform 0.3s var(--ease);
}

.sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 14px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.sidebar-nav a svg {
  flex: none;
  width: 20px;
  height: 20px;
}

.sidebar-nav a:hover {
  color: var(--white);
  background: rgba(255, 116, 62, 0.08);
}

.sidebar-nav a.is-active {
  color: var(--white);
  background: linear-gradient(135deg, rgba(217, 42, 33, 0.35), rgba(255, 90, 24, 0.12));
  border-color: var(--border);
}

.sidebar-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 14px 26px;
  border-top: 1px solid var(--border);
}

.sidebar-age {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--red);
  padding: 5px 12px;
  border-radius: 999px;
}

.content-area {
  margin-left: var(--sidebar-w);
  padding-top: var(--header-h);
}

/* ==========================================================================
   Hero / promo cards
   ========================================================================== */

.hero {
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(217, 42, 33, 0.35), transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(255, 132, 49, 0.18), transparent 50%),
    linear-gradient(180deg, var(--burgundy), var(--bg-main) 70%);
}

.promo-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 16px;
}

.promo-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.promo-card-primary {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  background:
    radial-gradient(circle at 85% 25%, rgba(255, 90, 24, 0.3), transparent 60%),
    linear-gradient(160deg, var(--wine), var(--card-bg));
}

.promo-card-secondary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, rgba(59, 214, 255, 0.14), var(--card-bg));
  border-color: rgba(59, 214, 255, 0.3);
}

.promo-spotlight-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.promo-spotlight {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
  animation: spotlightPulse 2.6s ease-in-out 2;
}

@keyframes spotlightPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 24, 0.4);
  }
  50% {
    box-shadow: 0 0 22px 6px rgba(255, 90, 24, 0.45);
  }
}

.promo-spotlight img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.promo-spotlight:hover {
  transform: translateY(-3px);
  border-color: var(--warm-orange);
}

.promo-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.promo-tag-row .promo-tag {
  margin-bottom: 0;
}

.promo-tag {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(59, 214, 255, 0.12);
  border: 1px solid rgba(59, 214, 255, 0.3);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 14px;
}

.promo-tag-alt {
  color: var(--warm-orange);
  background: rgba(255, 132, 49, 0.12);
  border-color: rgba(255, 132, 49, 0.3);
}

/* ---------- Wagering / bonus explainer cards ---------- */

.explainer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.explainer-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.explainer-card h2 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.explainer-card p {
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  background: rgba(255, 197, 110, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 0.4em;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--cream);
  text-transform: none;
  margin-bottom: 18px;
}

.hero-copy {
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.amount-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  background: linear-gradient(135deg, rgba(217, 42, 33, 0.35), rgba(255, 90, 24, 0.15));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  box-shadow: 0 0 18px rgba(255, 90, 24, 0.18);
}

.amount-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--flame-orange);
  box-shadow: 0 0 8px var(--flame-orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.85;
  max-width: 720px;
  border-left: 2px solid var(--border);
  padding-left: 12px;
  margin-top: 4px;
}

.hero-visual {
  display: block;
  position: relative;
  aspect-ratio: 700 / 1244;
  max-width: 460px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), 0 0 0 0 rgba(255, 90, 24, 0.4);
  animation: heroPulse 2.6s ease-in-out 2;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual .flame-blur {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 90, 24, 0.35), transparent 65%);
  filter: blur(30px);
  z-index: -1;
  animation: flameBlurPulse 2.6s ease-in-out 2;
}

@keyframes heroPulse {
  0%, 100% {
    box-shadow: var(--shadow-card), 0 0 0 0 rgba(255, 90, 24, 0.4);
  }
  50% {
    box-shadow: var(--shadow-card), 0 0 36px 8px rgba(255, 90, 24, 0.45);
  }
}

@keyframes flameBlurPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.pulse-cta {
  animation: ctaPulse 2.6s ease-in-out 2;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(217, 42, 33, 0.4), 0 0 0 0 rgba(255, 90, 24, 0.5);
  }
  50% {
    box-shadow: 0 8px 24px rgba(217, 42, 33, 0.4), 0 0 26px 8px rgba(255, 90, 24, 0.55);
  }
}

/* ==========================================================================
   Quick access tiles (platforms / wagering)
   ========================================================================== */

.quick-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 16px;
}

.quick-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.quick-tile:hover {
  transform: translateY(-4px);
  border-color: var(--warm-orange);
  box-shadow: var(--shadow-glow);
}

.quick-tile-text h3 {
  margin-bottom: 6px;
}

.quick-tile-text p {
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.quick-tile-art {
  flex: none;
  width: 92px;
  height: 92px;
}

.quick-tile-art svg {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Bonus types icon-tile grid
   ========================================================================== */

.icon-tile-section {
  margin-bottom: 4px;
}

.icon-tile-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.icon-tile-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.icon-tile {
  display: block;
  aspect-ratio: 1;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.icon-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.icon-tile:hover {
  transform: translateY(-3px);
  border-color: var(--warm-orange);
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   Quick comparison strip
   ========================================================================== */

.strip {
  padding: 32px 0;
  background: var(--burgundy);
  border-bottom: 1px solid var(--border);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.strip-icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 116, 62, 0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--flame-orange);
}

.strip-icon svg { width: 20px; height: 20px; }

.strip-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-heading);
  margin-bottom: 2px;
}

.strip-text span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ==========================================================================
   Cards grid generic
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--card-bg), rgba(39, 17, 22, 0.6));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--warm-orange);
  box-shadow: var(--shadow-glow);
}

.info-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(217, 42, 33, 0.4), rgba(255, 197, 110, 0.15));
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-weight: 800;
}

.info-card .card-icon svg { width: 26px; height: 26px; }

.info-card h3 { color: var(--cream); margin-bottom: 8px; }

.info-card p:last-child { margin-bottom: 0; }

.info-card .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mini-badge {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
}

.card-cta {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  width: 100%;
  transition: transform 0.2s var(--ease);
}

.card-cta-shine {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.card-cta img {
  display: block;
  width: 100%;
  height: auto;
}

.card-cta-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.65) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: ctaFlash 3.2s ease-in-out 2;
  pointer-events: none;
}

.card-cta:hover {
  transform: translateY(-2px);
}

@keyframes ctaFlash {
  0%, 15% {
    left: -60%;
  }
  55%, 100% {
    left: 130%;
  }
}

/* ---------- Intro / notice ---------- */

.intro-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.platform-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.platform-chip-list li {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 116, 62, 0.1);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
}

.notice-panel {
  background: linear-gradient(135deg, rgba(217, 42, 33, 0.18), rgba(255, 132, 49, 0.08));
  border: 1px solid var(--border);
  border-left: 4px solid var(--flame-orange);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  font-size: 0.95rem;
  color: var(--cream);
}

.notice-panel strong { color: var(--white); }

.intro-figure {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ---------- Process steps ---------- */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
  margin: 40px 0;
}

.process-step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  position: relative;
}

.process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flame-orange), var(--red));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.process-step p { font-size: 0.9rem; margin: 0; }
.process-step h4 { margin-bottom: 6px; font-size: 0.95rem; }

.example-card {
  background: linear-gradient(180deg, rgba(59, 214, 255, 0.08), transparent);
  border: 1px solid rgba(59, 214, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 26px;
  margin-top: 24px;
}

.example-card h4 {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.example-card .fine-print {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ==========================================================================
   Platform comparison
   ========================================================================== */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  min-height: 40px;
  transition: all 0.2s var(--ease);
}

.filter-btn:hover {
  color: var(--white);
  border-color: var(--warm-orange);
}

.filter-btn[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--flame-orange), var(--red));
  color: var(--white);
  border-color: transparent;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platform-card {
  background: linear-gradient(180deg, var(--card-bg), rgba(22, 9, 13, 0.8));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border-color: var(--warm-orange);
}

.platform-card.is-hidden {
  display: none;
}

.platform-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.platform-rank {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--wine);
  -webkit-text-stroke: 1px var(--warm-orange);
}

.platform-name {
  font-size: 1.2rem;
  margin-bottom: 2px;
  color: var(--white);
}

.status-badge {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--gold);
  background: rgba(255, 197, 110, 0.08);
  white-space: nowrap;
}

.platform-offer {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  background: linear-gradient(90deg, var(--cream), var(--flame-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.platform-details {
  margin: 14px 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.platform-details dt {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--flame-orange);
  margin-top: 10px;
}

.platform-details dt:first-child { margin-top: 0; }

.platform-details dd {
  margin: 2px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.platform-verify {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin: 14px 0;
  border: 1px dashed var(--border);
}

.platform-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.platform-bottom {
  margin-top: auto;
}

.platform-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}

.platform-terms-link {
  text-align: center;
  font-size: 0.85rem;
  padding: 8px;
}

.platform-disclaimer {
  font-size: 0.72rem;
  opacity: 0.7;
  margin-top: 10px;
  margin-bottom: 0;
}

.list-note {
  margin-top: 40px;
}

/* ==========================================================================
   Tables
   ========================================================================== */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin: 24px 0;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  font-size: 0.92rem;
}

caption {
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cream);
  padding: 16px 18px 8px;
  font-size: 0.95rem;
}

thead th {
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--wine);
  padding: 14px 18px;
}

tbody td {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

tbody td:first-child {
  color: var(--cream);
  font-weight: 600;
}

/* ==========================================================================
   Wagering
   ========================================================================== */

.wagering-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.calc-panel {
  background: linear-gradient(160deg, var(--wine), var(--card-bg));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 8px;
}

.field input {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1rem;
  padding: 13px 16px;
  min-height: 48px;
}

.field input:focus {
  border-color: var(--flame-orange);
  outline: none;
}

.calc-result {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.calc-result-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.calc-result-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
}

.calc-formula {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 10px;
}

.warning-box {
  display: flex;
  gap: 12px;
  background: rgba(217, 42, 33, 0.12);
  border: 1px solid rgba(217, 42, 33, 0.4);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 0.88rem;
}

.warning-box svg {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--red);
  margin-top: 2px;
}

.subsection-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 28px;
}

.subsection-panel h3 { color: var(--blue); }

/* ==========================================================================
   Timeline (how to claim)
   ========================================================================== */

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.timeline-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  position: relative;
}

.timeline-item .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--flame-orange), var(--red));
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.timeline-item h3 { margin-bottom: 6px; }
.timeline-item p { font-size: 0.88rem; margin: 0; }

.timeline-cta {
  text-align: center;
  margin-top: 36px;
}

/* ==========================================================================
   Payment / strategy
   ========================================================================== */

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ==========================================================================
   Safety
   ========================================================================== */

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.scam-checklist {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.scam-checklist h3 { color: var(--red); margin-bottom: 16px; }

.scam-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.scam-checklist li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  align-items: flex-start;
}

.scam-checklist li::before {
  content: "!";
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(217, 42, 33, 0.25);
  color: var(--red);
  font-weight: 800;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  padding: 20px 4px;
  min-height: 48px;
}

.accordion-trigger .icon-plus {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.accordion-trigger .icon-plus::before,
.accordion-trigger .icon-plus::after {
  content: "";
  position: absolute;
  background: var(--flame-orange);
}

.accordion-trigger .icon-plus::before { width: 10px; height: 2px; }
.accordion-trigger .icon-plus::after { width: 2px; height: 10px; }

.accordion-trigger[aria-expanded="true"] .icon-plus {
  transform: rotate(45deg);
  border-color: var(--flame-orange);
}

.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease);
}

.accordion-panel[data-open="true"] {
  max-height: 600px;
}

.accordion-panel .panel-inner {
  padding: 0 4px 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .accordion-panel { transition: none; }
}

/* ==========================================================================
   About
   ========================================================================== */

.about-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

.author-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.author-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--flame-orange), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
}

.author-card h3 { margin-bottom: 4px; }

.author-role {
  font-size: 0.82rem;
  color: var(--flame-orange);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.author-card p {
  font-size: 0.88rem;
  text-align: left;
}

.mission-list li,
.expertise-list li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mission-list li::before,
.expertise-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--flame-orange);
}

/* ==========================================================================
   Responsible gaming
   ========================================================================== */

.responsible-gaming {
  background: linear-gradient(160deg, var(--wine), var(--bg-main));
}

.rg-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  background: var(--red);
  padding: 8px 18px;
  border-radius: 999px;
  margin-top: 24px;
}

.rg-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.rg-columns h3 {
  color: var(--gold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.rg-columns li {
  font-size: 0.9rem;
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}

.rg-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm-orange);
}

.support-resources {
  margin-top: 30px;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ==========================================================================
   Legal accordions
   ========================================================================== */

.legal-grid {
  display: grid;
  gap: 14px;
}

.legal-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.legal-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 20px 22px;
  min-height: 48px;
  text-align: left;
}

.legal-updated {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  margin-right: auto;
  margin-left: 14px;
  text-transform: none;
}

.legal-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease);
}

.legal-panel[data-open="true"] {
  max-height: 2400px;
}

.legal-panel .panel-inner {
  padding: 0 22px 26px;
  font-size: 0.9rem;
}

.legal-panel h4 {
  color: var(--cream);
  font-size: 0.92rem;
  margin: 16px 0 6px;
}

.legal-panel h4:first-child { margin-top: 0; }

.legal-panel ul {
  margin: 8px 0;
}

.legal-panel li {
  padding: 4px 0 4px 16px;
  position: relative;
  font-size: 0.88rem;
}

.legal-panel li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: var(--flame-orange);
}

/* ==========================================================================
   Conclusion
   ========================================================================== */

.conclusion {
  background: radial-gradient(circle at 50% 0%, rgba(217, 42, 33, 0.25), transparent 60%), var(--bg-main);
  text-align: center;
}

.conclusion .container { max-width: 900px; }

.conclusion-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  text-align: left;
  max-width: 640px;
  margin: 0 auto 32px;
}

.conclusion-checklist li {
  font-size: 0.92rem;
  padding-left: 22px;
  position: relative;
}

.conclusion-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--flame-orange);
  font-weight: 800;
}

.conclusion-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.update-note {
  font-size: 0.82rem;
  opacity: 0.75;
  max-width: 520px;
  margin: 0 auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--burgundy);
  padding: 60px 0 100px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.88rem;
  max-width: 340px;
}

.footer-col h3 {
  color: var(--cream);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--warm-orange);
}

.footer-age {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  background: var(--red);
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.footer-disclaimer {
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  opacity: 0.85;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-main);
}

.breadcrumb ol {
  display: flex;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--warm-orange);
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--warm-orange); }
.breadcrumb [aria-current="page"] { color: var(--gold); }

/* ==========================================================================
   Cookie banner
   ========================================================================== */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 900;
  max-width: 560px;
  margin-inline: auto;
  background: rgba(22, 9, 13, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: translateY(140%);
  transition: transform 0.35s var(--ease);
}

.cookie-banner[data-visible="true"] {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .btn { flex: 1; }

/* ==========================================================================
   Scroll to top
   ========================================================================== */

.scroll-top-btn {
  position: fixed;
  right: 20px;
  bottom: 96px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flame-orange), var(--red));
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(217, 42, 33, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 400;
}

.scroll-top-btn[data-visible="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 450;
  padding: 12px 16px;
  background: rgba(22, 9, 13, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Visually hidden utility
   ========================================================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Responsive breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .card-grid,
  .strategy-grid,
  .platform-grid,
  .safety-grid { grid-template-columns: repeat(2, 1fr); }

  .process-steps,
  .timeline { grid-template-columns: repeat(2, 1fr); }

  .strip-grid { grid-template-columns: repeat(3, 1fr); }

  .promo-card-primary,
  .quick-tiles,
  .explainer-row { grid-template-columns: 1fr; }

  .icon-tile-grid { grid-template-columns: repeat(3, 1fr); }

  .intro-columns,
  .about-layout { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .rg-columns { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .topbar-status,
  .topbar-cta { display: none; }

  .nav-toggle { display: inline-flex; }

  .sidebar {
    width: min(84vw, 300px);
    transform: translateX(-100%);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.5);
  }

  .sidebar.is-open {
    transform: translateX(0);
  }

  .sidebar-nav a {
    font-size: 1rem;
  }

  .content-area {
    margin-left: 0;
  }

  .mobile-sticky-cta { display: block; }

  body { padding-bottom: 74px; }

  .scroll-top-btn { bottom: 84px; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  .strip-grid { grid-template-columns: repeat(2, 1fr); }

  .card-grid,
  .strategy-grid,
  .platform-grid,
  .safety-grid,
  .process-steps,
  .timeline { grid-template-columns: 1fr; }

  .calc-grid { grid-template-columns: 1fr; }

  .scam-checklist ul { grid-template-columns: 1fr; }

  .conclusion-checklist { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero-actions .btn,
  .conclusion-actions .btn { width: 100%; }

  .hero-actions,
  .conclusion-actions { flex-direction: column; }

  .promo-card { padding: 24px; }

  .icon-tile-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding-inline: 18px; }

  h1 { font-size: 2rem; }

  .platform-card-top { flex-direction: column; gap: 10px; }

  .strip-grid { grid-template-columns: 1fr; }

  .logo-img { height: 32px; }

  .icon-tile-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
