/* =========================================================
   FUNKY SPINS — CTA-FIRST DESIGN
   Dark header · White body · Gradient accents
   ========================================================= */

/* === TOKENS ============================================== */
:root {
  --header-bg:       #1a0a3e;
  --accent:          #6428FE;
  --accent-secondary:#31B0F5;
  --accent-gradient: linear-gradient(90deg, #6428FE, #4A5BFC, #1AFFF0);
  --body-bg:         #ffffff;
  --card-bg:         #f8f8ff;
  --text:            #1a0a3e;
  --text-muted:      #6b6b8a;
  --border:          #ebebf5;
  --button-text:     #ffffff;

  /* Injected from casino.json */
  --primary:     #6428FE;
  --primary-rgb: 100, 40, 254;

  --nav-h: 68px;
  --max-w: 1100px;
  --radius: 10px;
  --radius-lg: 16px;
  --tr: 0.18s ease;
  --shadow: 0 2px 12px rgba(26,10,62,0.08);
  --shadow-lg: 0 6px 32px rgba(26,10,62,0.14);
}

/* === RESET =============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
h1, h2 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
}

/* === NAV ================================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--header-bg);
}
/* clean accent border */
.site-nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  margin-right: 2rem;
}
.logo-img { height: 32px; width: auto; }
.nav-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.nav-item { position: relative; }
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  border-radius: var(--radius);
  transition: color var(--tr), background var(--tr);
  white-space: nowrap;
  position: relative;
}
.nav-item > a:hover { color: #fff; }
.nav-item > a.active { color: #fff; }
/* gradient underline on active */
.nav-item > a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 1px;
}

/* Dropdown chevron */
.nav-item.has-dropdown > a::before {
  content: '';
  order: 99;
  display: block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.5;
  margin-left: 0.25rem;
  flex-shrink: 0;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
  min-width: 170px;
  z-index: 300;
}
.dropdown-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem;
  box-shadow: var(--shadow-lg);
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 7px;
  transition: background var(--tr), color var(--tr);
}
.dropdown li a:hover { background: var(--card-bg); color: var(--text); }

/* Nav right */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  flex-shrink: 0;
}
.btn-nav-login {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  transition: border-color var(--tr), color var(--tr);
}
.btn-nav-login:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* Gradient register button */
.btn-nav-register {
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--accent-gradient);
  color: var(--button-text);
  transition: opacity var(--tr), transform var(--tr);
  box-shadow: 0 2px 12px rgba(100,40,254,0.35);
}
.btn-nav-register:hover { opacity: 0.88; transform: translateY(-1px); }

.badge-prelaunch {
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.hamburger-line { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 199;
  background: var(--header-bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 1.5rem 1.5rem;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav > ul > li > a {
  display: block;
  padding: 0.8rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.mobile-nav > ul > li > a.active { color: #fff; }
.mobile-sub a {
  display: block;
  padding: 0.4rem 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.mobile-nav-cta { margin-top: 1.25rem; }

/* === STICKY MOBILE CTA =================================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 190;
  padding: 0.75rem 1rem;
  background: var(--header-bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.sticky-cta a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.95rem;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #6428FE, #1AFFF0);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* === BUTTONS ============================================= */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  background: var(--accent-gradient);
  color: var(--button-text);
  border: none;
  cursor: pointer;
  transition: opacity var(--tr), transform var(--tr);
  box-shadow: 0 4px 20px rgba(100,40,254,0.3);
  white-space: nowrap;
}
.btn-cta:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(100,40,254,0.4); }
.btn-cta.btn-lg { padding: 1.1rem 2.75rem; font-size: 1.1rem; }
.btn-cta.btn-full { width: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  transition: border-color var(--tr), color var(--tr);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  transition: border-color var(--tr), color var(--tr);
}
.btn-outline-dark:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* === SECTION HELPERS ===================================== */
.section { padding: 3.5rem 1.5rem; }
.section-flush { padding-top: 2rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-alt { background: var(--card-bg); }
.section-dark { background: var(--header-bg); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 14px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.section-divider { height: 1px; background: var(--border); margin: 3rem 0; }

/* === HERO ================================================ */
.hero {
  background: var(--body-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3.5rem) 1.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(100,40,254,0.06) 0%, transparent 68%);
  pointer-events: none;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* License chip above title */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.8rem 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

/* Hero logo image */
.hero-logo {
  max-height: 100px;
  max-width: 340px;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

/* Big casino name (fallback when no logo) */
.hero-title {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}
.hero-title-gradient {
  background: linear-gradient(90deg, #6428FE, #4A5BFC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Tagline — short, muted */
.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 420px;
  margin: 0 auto 2rem;
}

/* Badge + rating row */
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.hero-new-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-stars {
  color: #F5A623;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.hero-rating-score {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

/* Bonus teaser line */
.hero-bonus-teaser {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

/* CTA button row */
.hero-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

/* Big primary hero button */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  min-width: 210px;
  padding: 0 2.25rem;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: opacity var(--tr), transform var(--tr), box-shadow var(--tr);
  white-space: nowrap;
}
.btn-hero-primary {
  background: linear-gradient(90deg, #6428FE, #1AFFF0);
  color: #fff;
  box-shadow: 0 8px 32px rgba(100,40,254,0.45);
}
.btn-hero-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(100,40,254,0.55);
}
.btn-hero-ghost {
  background: var(--header-bg);
  color: #fff;
  border: none;
  min-width: 160px;
}
.btn-hero-ghost:hover {
  opacity: 0.85;
}

/* Launch badge (pre-live) */
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  height: 58px;
  padding: 0 1.75rem;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1.5px solid var(--border);
}
.launch-pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  position: relative;
}
.launch-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0.3;
  animation: ring 2.2s ease-out infinite;
}
@keyframes ring { 0% { transform: scale(0.8); opacity: 0.4; } 100% { transform: scale(2.2); opacity: 0; } }
.launch-text { display: flex; flex-direction: column; align-items: flex-start; }
.launch-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.launch-date  { font-size: 0.95rem; font-weight: 800; color: var(--text); }

/* Trust chip row */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.trust-chip:last-child { border-right: none; }
.trust-chip-check { color: var(--accent); font-size: 0.65rem; font-weight: 900; }

/* === STATS STRIP ========================================= */
.stats-strip {
  background: var(--body-bg);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 1rem;
}
.stat { display: flex; flex-direction: column; gap: 0.15rem; padding: 0 2.5rem; text-align: center; }
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-lbl { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.03em; }
.stat-divider { width: 1px; height: 32px; background: var(--border); align-self: center; }

/* === ABOUT =============================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.about-cards { display: flex; flex-direction: column; gap: 0.75rem; }
.about-card {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.about-card-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--body-bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.about-card-title { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.15rem; }
.about-card-desc  { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* === PROVIDERS =========================================== */
.providers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.ticker-wrapper {
  overflow: hidden;
  margin: 0 -1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  margin-bottom: 2rem;
}
.ticker-track {
  display: flex;
  gap: 0.6rem;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-33.33%); } }
.ticker-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  background: var(--body-bg);
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.provider-tile {
  background: var(--body-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  transition: border-color var(--tr);
}
.provider-tile:hover { border-color: var(--accent); }
.provider-tile-name { font-size: 0.85rem; font-weight: 700; }
.provider-tile-tag {
  font-size: 0.62rem; font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* === PAYMENTS (homepage) ================================= */
.payment-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.payment-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: border-color var(--tr);
}
.payment-card:hover { border-color: var(--accent); }
.payment-card-icon {
  width: 56px; height: 40px;
  border-radius: 8px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  white-space: pre-line;
}
.payment-icon-swish   { background: #E3304A; }
.payment-icon-trustly { background: #0256CC; }
.payment-icon-bankid  { background: #193560; }
.payment-card-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.payment-card-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

/* === GRADIENT CTA SECTION ================================ */
.cta-section {
  padding: 5rem 1.5rem;
  background: var(--header-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(100,40,254,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(26,255,240,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section-inner {
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.cta-section p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.cta-section .launch-info {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
}

/* === LICENSE ============================================= */
.license-strip {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
}
.license-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.license-badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.license-seal {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.license-badge-number { font-size: 1.05rem; font-weight: 800; }
.license-badge-sub    { font-size: 0.78rem; color: var(--text-muted); }
.license-features {
  display: flex;
  gap: 1rem 1.75rem;
  flex-wrap: wrap;
}
.lic-feat { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--text-muted); }
.lic-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: rgba(100,40,254,0.1);
  color: var(--accent);
  font-size: 0.62rem; font-weight: 900;
  flex-shrink: 0;
}

/* === PAGE HERO (inner pages) ============================= */
.page-hero {
  padding: calc(var(--nav-h) + 2.5rem) 1.5rem 2.5rem;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}
.page-breadcrumb a { transition: color var(--tr); }
.page-breadcrumb a:hover { color: rgba(255,255,255,0.6); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }
.page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.page-hero p { font-size: 0.95rem; color: rgba(255,255,255,0.5); max-width: 540px; line-height: 1.6; }

/* === SUBPAGE LAYOUT ====================================== */
.subpage-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 3.5rem;
  align-items: start;
}
.subpage-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2rem 0 0.65rem;
}
.subpage-content h2:first-child { margin-top: 0; }
.subpage-content h3 { font-size: 1rem; font-weight: 700; margin: 1.25rem 0 0.4rem; }
.subpage-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.875rem;
}
.subpage-content ul, .subpage-content ol { margin: 0.5rem 0 1rem 1.5rem; }
.subpage-content ul { list-style: disc; }
.subpage-content ol { list-style: decimal; }
.subpage-content li { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.35rem; }
.subpage-content a { color: var(--accent); text-decoration: underline; }
.subpage-content strong { font-weight: 700; color: var(--text); }

/* Subpage sidebar */
.subpage-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sidebar-card-title {
  background: var(--header-bg);
  color: rgba(255,255,255,0.75);
  padding: 0.7rem 1.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sidebar-card-body { padding: 0.75rem 1.1rem; }
.sidebar-fact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  gap: 0.5rem;
}
.sidebar-fact-row:last-child { border-bottom: none; }
.sfr-label { font-size: 0.75rem; color: var(--text-muted); }
.sfr-value { font-size: 0.75rem; font-weight: 700; text-align: right; }
.sidebar-related { display: flex; flex-direction: column; gap: 0.15rem; padding: 0.25rem 0; }
.sidebar-related a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0.4rem;
  border-radius: 7px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: background var(--tr), color var(--tr);
}
.sidebar-related a:hover { background: var(--body-bg); color: var(--text); text-decoration: none; }
.sidebar-related a::after { content: '→'; opacity: 0.35; font-size: 0.75rem; }

/* === GAMES PAGE ========================================== */
.games-intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}
.games-intro-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.games-intro-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.games-intro-block h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
.games-intro-block p  { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

.provider-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.provider-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.375rem;
  transition: border-color var(--tr);
}
.provider-card:hover { border-color: var(--accent); }
.provider-card-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; }
.provider-card-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.provider-card-name { font-size: 0.9rem; font-weight: 700; flex: 1; }
.provider-card-type {
  font-size: 0.62rem; font-weight: 700;
  padding: 0.15rem 0.45rem; border-radius: 4px;
  background: var(--body-bg); border: 1px solid var(--border);
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em;
}
.provider-card-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

.games-note {
  display: flex; gap: 0.875rem; align-items: flex-start;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-top: 2rem;
}
.games-note-icon { font-size: 1rem; flex-shrink: 0; }
.games-note strong { color: var(--text); }

/* === PAYMENTS PAGE ======================================= */
.pay-limits-strip {
  display: flex; align-items: center;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem 1.75rem;
  gap: 0; flex-wrap: wrap; row-gap: 1rem;
}
.pay-limit { display: flex; flex-direction: column; gap: 0.2rem; padding: 0 2rem; text-align: center; }
.pay-limit:first-child { padding-left: 0; }
.pay-limit-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.pay-limit-value { font-size: 1rem; font-weight: 800; }
.pay-limit-div   { width: 1px; height: 30px; background: var(--border); align-self: center; }

.full-payment-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.full-payment-card {
  display: grid; grid-template-columns: 72px 1fr auto;
  gap: 1.25rem; align-items: start;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: border-color var(--tr);
}
.full-payment-card:hover { border-color: var(--accent); }
.full-payment-icon {
  width: 72px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 900; letter-spacing: 0.04em;
  color: #fff; text-align: center; line-height: 1.3; white-space: pre-line; flex-shrink: 0;
}
.full-payment-name { font-size: 1rem; font-weight: 800; margin-bottom: 0.35rem; }
.full-payment-desc { font-size: 0.825rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.75rem; }
.full-payment-features { display: flex; flex-direction: column; gap: 0.3rem; }
.fpm-feat { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--text-muted); }
.fpm-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(100,40,254,0.1); color: var(--accent);
  font-size: 0.6rem; font-weight: 900; flex-shrink: 0;
}
.full-payment-badge-wrap { padding-top: 0.25rem; }
.full-payment-badge {
  display: inline-block; padding: 0.25rem 0.65rem;
  border-radius: 999px; font-size: 0.7rem; font-weight: 700;
}
.badge-instant { background: rgba(49,176,245,0.1); border: 1px solid rgba(49,176,245,0.25); color: #0989C8; }
.badge-verify  { background: rgba(100,40,254,0.08); border: 1px solid rgba(100,40,254,0.2); color: var(--accent); }

.payment-info-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem;
}
.payment-info-block {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.375rem;
}
.payment-info-block h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.4rem; }
.payment-info-block p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }

/* === RESPONSIBLE ========================================= */
.spelpaus-block {
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1rem;
}
.spelpaus-accent { height: 3px; background: var(--accent-gradient); }
.spelpaus-content { padding: 1.5rem; }
.spelpaus-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 0.875rem;
}
.spelpaus-logo-area { display: flex; align-items: center; gap: 0.875rem; }
.spelpaus-icon { font-size: 1.5rem; }
.spelpaus-title { font-size: 1rem; font-weight: 800; }
.spelpaus-subtitle { font-size: 0.75rem; color: var(--text-muted); }
.spelpaus-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.btn-spelpaus {
  display: inline-flex; align-items: center;
  padding: 0.55rem 1.15rem; border-radius: var(--radius);
  background: var(--accent-gradient); color: #fff;
  font-size: 0.8rem; font-weight: 700; white-space: nowrap;
  transition: opacity var(--tr);
}
.btn-spelpaus:hover { opacity: 0.88; }

.stodlinjen-box {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  margin-bottom: 3rem; flex-wrap: wrap;
}
.stodlinjen-icon { font-size: 1.3rem; flex-shrink: 0; }
.stodlinjen-body { flex: 1; min-width: 180px; }
.stodlinjen-name { font-size: 0.9rem; font-weight: 800; }
.stodlinjen-desc { font-size: 0.8rem; color: var(--text-muted); }
.stodlinjen-number { font-size: 1.25rem; font-weight: 900; color: var(--accent); white-space: nowrap; }

.responsible-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; margin-top: 1.5rem;
}
.responsible-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.375rem;
}
.responsible-card-icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: var(--body-bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; margin-bottom: 0.75rem;
}
.responsible-card h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.35rem; }
.responsible-card p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

.license-detail-block {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin: 1.5rem 0;
}
.license-detail-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--border); gap: 1rem;
}
.license-detail-row:last-child { border-bottom: none; }
.ldr-label { font-size: 0.8rem; color: var(--text-muted); }
.ldr-value  { font-size: 0.82rem; font-weight: 700; }

.help-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.help-link-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem; display: flex; flex-direction: column; gap: 0.35rem;
}
.help-link-title { font-size: 0.875rem; font-weight: 800; }
.help-link-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; flex: 1; }
.help-link-btn {
  display: inline-flex; align-items: center;
  padding: 0.4rem 0.875rem; border-radius: 7px;
  background: var(--body-bg); border: 1px solid var(--border);
  color: var(--accent); font-size: 0.75rem; font-weight: 700;
  width: fit-content; margin-top: 0.25rem; transition: background var(--tr);
}
.help-link-btn:hover { background: var(--card-bg); }

.responsible-footer-note {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.7;
}
.responsible-footer-note a { color: var(--accent); text-decoration: underline; }

/* === PAGE CARDS (overview pages) ========================= */
.page-cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; margin-top: 2rem;
}
.page-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  transition: border-color var(--tr);
}
.page-card:hover { border-color: var(--accent); }
.page-card-icon  { font-size: 1.5rem; margin-bottom: 0.5rem; }
.page-card h3    { font-size: 0.9rem; font-weight: 700; }
.page-card p     { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.page-card-link  { font-size: 0.8rem; font-weight: 700; color: var(--accent); margin-top: 0.25rem; }
.page-card-link:hover { text-decoration: underline; }

/* === CASINO BANNER ======================================= */
.cbanner {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.35rem 1.25rem 1.1rem;
}
.cbanner-disclosure {
  max-width: var(--max-w);
  margin: 0 auto 0.4rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  padding-top: 0.4rem;
}
.cbanner-disclosure a {
  color: var(--text-muted);
  text-decoration: underline;
}
.cbanner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.cbanner-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  padding: 1.25rem 1.5rem;
}

/* Logo column */
.cbanner-logo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--header-bg);
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
}
.cbanner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cbanner-logo-text {
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  text-align: center;
}

/* Info column */
.cbanner-info {
  flex: 1;
  min-width: 0;
}
.cbanner-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.3rem;
}
.cbanner-bonus {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Rating column */
.cbanner-meta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0 1rem;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.cbanner-score {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.cbanner-stars {
  display: flex;
  gap: 1px;
  font-size: 1rem;
  line-height: 1;
}
.cbs-full  { color: #F5A623; }
.cbs-half  { color: #F5A623; opacity: 0.55; }
.cbs-empty { color: var(--border); }

/* CTA column */
.cbanner-cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 130px;
}
.cbanner-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--accent-gradient, var(--primary));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity .15s;
}
.cbanner-btn:hover { opacity: .88; color: #fff; }
.cbanner-read {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cbanner-read:hover { color: var(--text); }
.cbanner-launch-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.cbanner-launch-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green, #22c55e);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 640px) {
  .cbanner { padding: 0.75rem; }
  .cbanner-card {
    flex-wrap: wrap;
    gap: 0.85rem;
    padding: 0.85rem;
  }
  .cbanner-logo { width: 64px; height: 64px; border-radius: 8px; padding: 8px; }
  .cbanner-info { flex: 1 1 calc(100% - 80px); }
  .cbanner-title { font-size: 0.85rem; white-space: normal; }
  .cbanner-meta {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    border: none;
    border-top: 1px solid var(--border);
    padding: 0.5rem 0 0;
    width: 100%;
    justify-content: flex-start;
  }
  .cbanner-cta {
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-width: 0;
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    justify-content: space-between;
  }
  .cbanner-btn { width: auto; padding: 0.55rem 1.25rem; }
}

/* === FAQ ================================================= */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  background: var(--surface-2);
}
.faq-q {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.45rem;
}
.faq-a {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-a a { color: rgba(var(--primary-rgb), 1); font-weight: 600; }

/* === FOOTER ============================================== */
.site-footer {
  background: var(--header-bg);
  border-top: 2px solid transparent;
  background-clip: padding-box;
  padding: 3rem 1.5rem 2rem;
}
.footer-gradient-line {
  height: 2px;
  background: var(--accent-gradient);
  margin-bottom: 3rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem; font-weight: 700;
  color: #fff; margin-bottom: 0.6rem;
}
.footer-brand-desc { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.65; margin-bottom: 1.1rem; }
.footer-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.f-badge {
  display: inline-block; padding: 0.28rem 0.65rem;
  border-radius: 5px; border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.35);
}
.f-badge-link { transition: border-color var(--tr), color var(--tr); }
.f-badge-link:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }

.footer-col-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.875rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-links span { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color var(--tr); }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-link-sub { font-size: 0.72rem !important; color: rgba(255,255,255,0.25) !important; }
.footer-link-sub a { font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-link-sub a:hover { color: rgba(255,255,255,0.5); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.5rem; }
.footer-compliance { font-size: 0.72rem; color: rgba(255,255,255,0.25); line-height: 1.8; }
.footer-compliance a { color: rgba(255,255,255,0.35); transition: color var(--tr); }
.footer-compliance a:hover { color: rgba(255,255,255,0.6); }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  font-size: 0.6rem; font-weight: 900; color: rgba(255,255,255,0.35);
  vertical-align: middle; margin-right: 0.3rem;
}

/* === RESPONSIVE ========================================== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .payment-trio { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .subpage-layout { grid-template-columns: 1fr; }
  .subpage-sidebar { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

@media (max-width: 640px) {
  .sticky-cta { display: block; }
  .hero-title { font-size: clamp(2.8rem, 14vw, 4rem); }
  .hero-tagline { font-size: 0.95rem; }
  .btn-hero { height: 52px; min-width: 0; width: 100%; font-size: 1rem; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 340px; }
  .hero-trust { gap: 0; }
  .trust-chip { font-size: 0.7rem; padding: 0 0.6rem; }
  .full-payment-card { grid-template-columns: 60px 1fr; grid-template-rows: auto auto; }
  .full-payment-badge-wrap { grid-column: 1/-1; }
  .pay-limits-strip { flex-direction: column; align-items: flex-start; }
  .pay-limit { padding: 0; text-align: left; }
  .pay-limit-div { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .license-strip-inner { flex-direction: column; align-items: flex-start; }
  .section { padding: 3rem 1.25rem; }
  .page-hero { padding: calc(var(--nav-h) + 1.75rem) 1.25rem 2rem; }
  .payment-trio { grid-template-columns: 1fr; }
}
