/* =====================================================
   SPINCH — Haupt-Stylesheet
   Alle Klassen mit Prefix spinch-
   Dark Navy + Orange/Blau (Markenstil)
===================================================== */

:root {
  /* Marken-Farben */
  --spinch-orange:        #ff7a2f;
  --spinch-orange-2:      #f15a24;
  --spinch-orange-soft:   rgba(255, 122, 47, 0.12);
  --spinch-blue:          #2d8fff;
  --spinch-blue-2:        #1e88e5;
  --spinch-blue-soft:     rgba(45, 143, 255, 0.12);

  /* Hintergründe */
  --spinch-bg:            #0a0e1a;
  --spinch-bg-2:          #0d1426;
  --spinch-bg-3:          #111c34;
  --spinch-card:          #0f1730;
  --spinch-card-2:        #142046;

  /* Text */
  --spinch-text:          #ffffff;
  --spinch-text-soft:     #c8d8f0;
  --spinch-text-muted:    #7a98c8;

  /* Linien */
  --spinch-border:        #1e3060;
  --spinch-border-2:      #2e4888;

  /* Effekte */
  --spinch-glow-orange:   0 0 28px rgba(255, 122, 47, 0.35);
  --spinch-glow-blue:     0 0 28px rgba(45, 143, 255, 0.30);
  --spinch-shadow:        0 8px 32px rgba(0, 0, 0, 0.45);

  /* Maße */
  --spinch-r-sm: 8px;
  --spinch-r-md: 12px;
  --spinch-r-lg: 18px;
  --spinch-r-pill: 50px;
  --spinch-sidebar-w: 248px;
  --spinch-max: 1180px;
  --spinch-ease: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --spinch-font: 'Montserrat', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--spinch-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--spinch-text);
  background: var(--spinch-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--spinch-orange); text-decoration: none; transition: color var(--spinch-ease); }
a:hover { color: var(--spinch-orange-2); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout-Hülle ---------- */
.spinch-layout { display: flex; min-height: 100vh; }

/* ---------- Sidebar ---------- */
.spinch-sidebar {
  width: var(--spinch-sidebar-w);
  flex-shrink: 0;
  background: var(--spinch-bg-2);
  border-right: 1px solid var(--spinch-border-2);   /* contrast - sichtbar gegen dunklen footer */
  box-shadow: 1px 0 0 rgba(255,122,47,0.08);        /* subtle orange edge separator */
  padding: 24px 16px 48px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 100;
  scrollbar-width: thin;
  scrollbar-color: var(--spinch-border-2) transparent;
}
.spinch-sidebar::-webkit-scrollbar { width: 6px; }
.spinch-sidebar::-webkit-scrollbar-thumb { background: var(--spinch-border-2); border-radius: 3px; }
.spinch-sidebar::-webkit-scrollbar-track { background: transparent; }
.spinch-sidebar__logo { padding: 0 8px 20px; }
.spinch-sidebar__logo img { height: 46px; width: auto; }

/* Fix 4: Sidebar CTA Buttons mit Aufmerksamkeits-Animation */
.spinch-sidebar__cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.spinch-sidebar__cta .spinch-btn {
  position: relative;
  overflow: hidden;
  animation: spinch-cta-pulse 2.4s ease-in-out infinite;
}
.spinch-sidebar__cta .spinch-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 100%);
  transform: skewX(-22deg);
  animation: spinch-cta-shimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}
.spinch-sidebar__cta .spinch-btn:nth-child(2) { animation-delay: 0.6s; }
.spinch-sidebar__cta .spinch-btn:nth-child(2)::before { animation-delay: 1.0s; }
.spinch-sidebar__cta .spinch-btn:hover { animation-play-state: paused; }

@keyframes spinch-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 122, 47, 0); }
  50%      { box-shadow: 0 0 18px 0 rgba(255, 122, 47, 0.35); }
}
.spinch-sidebar__cta .spinch-btn--blue {
  animation-name: spinch-cta-pulse-blue;
}
@keyframes spinch-cta-pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45, 143, 255, 0); }
  50%      { box-shadow: 0 0 18px 0 rgba(45, 143, 255, 0.35); }
}
@keyframes spinch-cta-shimmer {
  0%   { left: -75%; }
  60%  { left: 125%; }
  100% { left: 125%; }
}
@media (prefers-reduced-motion: reduce) {
  .spinch-sidebar__cta .spinch-btn,
  .spinch-sidebar__cta .spinch-btn::before { animation: none; }
}

.spinch-sidebar__divider { height: 1px; background: var(--spinch-border); margin: 12px 4px; }

.spinch-nav { display: flex; flex-direction: column; gap: 2px; }
.spinch-nav__item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: var(--spinch-r-md);
  color: var(--spinch-text-soft); font-weight: 600; font-size: 15px;
  transition: all var(--spinch-ease);
}
.spinch-nav__item:hover,
.spinch-nav__item.is-active {
  background: var(--spinch-orange-soft);
  color: var(--spinch-orange);
}
.spinch-nav__item svg { width: 24px; height: 24px; flex-shrink: 0; }
.spinch-nav__badge {
  margin-left: auto; background: var(--spinch-orange); color: #fff;
  font-size: 11px; font-weight: 800; min-width: 20px; height: 20px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* ---------- Hauptbereich ---------- */
.spinch-main { flex: 1; min-width: 0; }
.spinch-container { max-width: var(--spinch-max); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .spinch-container { padding: 0 16px; } }

/* ---------- Mobile Topbar ---------- */
.spinch-topbar {
  display: none;
  align-items: center; justify-content: space-between;
  padding: 12px 16px; background: var(--spinch-bg-2);
  border-bottom: 1px solid var(--spinch-border);
  position: sticky; top: 0; z-index: 200;
}
.spinch-topbar__logo img { height: 36px; }
.spinch-burger { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
.spinch-burger span { width: 24px; height: 2px; background: var(--spinch-text); border-radius: 2px; transition: var(--spinch-ease); }
.spinch-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.spinch-burger.is-open span:nth-child(2) { opacity: 0; }
.spinch-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.spinch-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--spinch-r-md);
  font-weight: 800; font-size: 15px; text-align: center;
  transition: all var(--spinch-ease); white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.spinch-btn--orange {
  background: linear-gradient(135deg, var(--spinch-orange), var(--spinch-orange-2));
  color: #fff;
}
.spinch-btn--orange:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--spinch-glow-orange); }
.spinch-btn--blue { background: var(--spinch-blue); color: #fff; }
.spinch-btn--blue:hover { background: var(--spinch-blue-2); color: #fff; transform: translateY(-2px); box-shadow: var(--spinch-glow-blue); }
.spinch-btn--ghost { background: transparent; color: var(--spinch-text); border: 1.5px solid var(--spinch-border-2); }
.spinch-btn--ghost:hover { background: var(--spinch-bg-3); color: #fff; border-color: var(--spinch-orange); }
.spinch-btn--lg { padding: 16px 38px; font-size: 16px; }
.spinch-btn--block { width: 100%; }

/* ---------- Breadcrumbs ---------- */
.spinch-crumbs { padding: 16px 0; font-size: 13px; color: var(--spinch-text-muted); }
.spinch-crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.spinch-crumbs li { display: flex; align-items: center; gap: 8px; }
.spinch-crumbs li:not(:last-child)::after { content: '/'; color: var(--spinch-border-2); }
.spinch-crumbs a { color: var(--spinch-orange); }
.spinch-crumbs [aria-current] { color: var(--spinch-text-soft); }

/* ---------- Hero ---------- */
.spinch-hero {
  position: relative;
  margin: 24px 0;
  border-radius: var(--spinch-r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #0d1426 0%, #16203a 45%, #1a1530 70%, #0d1426 100%);
  border: 1px solid var(--spinch-border);
}
.spinch-hero__inner { position: relative; z-index: 2; padding: 56px 48px; max-width: 640px; }
.spinch-hero__glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(255,122,47,0.18) 0%, transparent 60%);
}
.spinch-hero__badge {
  display: inline-block; background: var(--spinch-orange-soft);
  border: 1px solid rgba(255,122,47,0.4); color: var(--spinch-orange);
  font-size: 12px; font-weight: 800; padding: 6px 16px; border-radius: var(--spinch-r-pill);
  margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.6px;
}
.spinch-hero h1 {
  font-size: clamp(30px, 5vw, 52px); font-weight: 900; line-height: 1.08;
  text-transform: uppercase; margin-bottom: 16px; letter-spacing: -0.5px;
}
.spinch-hero h1 .spinch-accent { color: var(--spinch-orange); }
.spinch-hero h1 .spinch-accent-blue { color: var(--spinch-blue); }
.spinch-hero__sub { font-size: 18px; color: var(--spinch-text-soft); margin-bottom: 28px; }
.spinch-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Promo-Karten (3er Reihe) ---------- */
.spinch-promos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.spinch-promo {
  position: relative; background: var(--spinch-card); border: 1px solid var(--spinch-border);
  border-radius: var(--spinch-r-md); padding: 22px 24px; overflow: hidden;
  transition: all var(--spinch-ease);
}
.spinch-promo:hover { border-color: var(--spinch-orange); transform: translateY(-3px); box-shadow: var(--spinch-shadow); }
.spinch-promo__icon { width: 40px; height: 40px; margin-bottom: 12px; color: var(--spinch-orange); }
.spinch-promo h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; margin-bottom: 6px; }
.spinch-promo p { font-size: 14px; color: var(--spinch-text-muted); }

/* ---------- Sektionen ---------- */
.spinch-section { padding: 48px 0; }
.spinch-section__head { margin-bottom: 32px; }
.spinch-section__label { display: inline-block; color: var(--spinch-orange); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 8px; }
.spinch-section h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 900; text-transform: uppercase; line-height: 1.15; }
.spinch-section h2 .spinch-accent { color: var(--spinch-orange); }
.spinch-section__sub { color: var(--spinch-text-soft); font-size: 16px; max-width: 640px; margin-top: 10px; }

.spinch-prose { color: var(--spinch-text-soft); font-size: 16px; line-height: 1.85; }
.spinch-prose p { margin-bottom: 18px; }
.spinch-prose h2 { margin: 40px 0 16px; }
.spinch-prose h3 { font-size: 22px; font-weight: 800; text-transform: uppercase; margin: 32px 0 12px; color: #fff; }
.spinch-prose a { color: var(--spinch-orange); font-weight: 600; }
.spinch-prose a:hover { text-decoration: underline; }
.spinch-prose ul { margin: 0 0 18px; padding-left: 4px; }
.spinch-prose ul li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.spinch-prose ul li::before { content: ''; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--spinch-orange); }

/* ---------- Bild im Text (mit Blur/Logo/Plakette) ---------- */
.spinch-figure {
  position: relative; margin: 28px 0; border-radius: var(--spinch-r-lg);
  overflow: hidden; border: 1px solid var(--spinch-border); background: var(--spinch-card);
}
.spinch-figure img { width: 100%; display: block; }
.spinch-figure__plate {
  position: absolute; left: 20px; bottom: 20px; z-index: 3;
  background: rgba(10,14,26,0.78); backdrop-filter: blur(8px);
  border: 1px solid var(--spinch-border-2); border-radius: var(--spinch-r-md);
  padding: 10px 18px; font-weight: 800; font-size: 15px; text-transform: uppercase;
  letter-spacing: 0.3px; color: #fff;
}
.spinch-figure__logo {
  position: absolute; right: 18px; top: 18px; z-index: 3; height: 32px; opacity: 0.92;
}
.spinch-figure__glass {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,14,26,0) 55%, rgba(10,14,26,0.55) 100%);
}

/* ---------- Info-Tabelle ---------- */
.spinch-table-wrap { overflow-x: auto; border: 1px solid var(--spinch-border); border-radius: var(--spinch-r-md); margin: 24px 0; }
.spinch-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.spinch-table th {
  background: var(--spinch-bg-3); color: var(--spinch-orange); text-align: left;
  padding: 14px 18px; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 0.6px;
  border-bottom: 1px solid var(--spinch-border);
}
.spinch-table td { padding: 14px 18px; color: var(--spinch-text-soft); border-top: 1px solid var(--spinch-border); vertical-align: top; }
.spinch-table tr:hover td { background: rgba(255,122,47,0.03); }
.spinch-table td:first-child { color: #fff; font-weight: 600; }
.spinch-table .spinch-td-icon { display: inline-flex; align-items: center; gap: 10px; }
.spinch-table .spinch-td-icon svg { width: 22px; height: 22px; color: var(--spinch-orange); flex-shrink: 0; }

/* ---------- Vorteils-Karten (Icon Cards) ---------- */
.spinch-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.spinch-feature {
  background: var(--spinch-card); border: 1px solid var(--spinch-border);
  border-radius: var(--spinch-r-md); padding: 26px; transition: all var(--spinch-ease);
}
.spinch-feature:hover { border-color: var(--spinch-orange); transform: translateY(-3px); box-shadow: var(--spinch-shadow); }
.spinch-feature__icon { width: 44px; height: 44px; color: var(--spinch-orange); margin-bottom: 14px; }
.spinch-feature h3 { font-size: 17px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.spinch-feature p { font-size: 14px; color: var(--spinch-text-muted); line-height: 1.65; }

/* ---------- Slot-Karten ---------- */
.spinch-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.spinch-slot {
  background: var(--spinch-card); border: 1px solid var(--spinch-border);
  border-radius: var(--spinch-r-md); overflow: hidden; transition: all var(--spinch-ease);
}
.spinch-slot:hover { border-color: var(--spinch-orange); transform: translateY(-4px); box-shadow: var(--spinch-shadow); }
.spinch-slot__thumb { aspect-ratio: 4/3; background: var(--spinch-bg-3); position: relative; overflow: hidden; }
.spinch-slot__thumb img { width: 100%; height: 100%; object-fit: cover; }
.spinch-slot__body { padding: 14px 16px; }
.spinch-slot__name { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.spinch-slot__prov { font-size: 12px; color: var(--spinch-text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.spinch-slot__rtp { display: inline-block; margin-top: 8px; font-size: 12px; font-weight: 700; color: var(--spinch-blue); }

/* ---------- FAQ ---------- */
.spinch-faq { border: 1px solid var(--spinch-border); border-radius: var(--spinch-r-md); overflow: hidden; }
.spinch-faq__item {
  border-bottom: 1px solid var(--spinch-border);
  position: relative;
}
.spinch-faq__item:last-child { border-bottom: none; }
/* Fix 3: Linker Akzent-Balken erscheint beim Hover und Öffnen (thematisch) */
.spinch-faq__item::before {
  content: '';
  position: absolute; left: 0; top: 12px; bottom: 12px;
  width: 3px; border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--spinch-orange), var(--spinch-orange-2));
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.spinch-faq__item:hover::before,
.spinch-faq__item.is-open::before { transform: scaleY(1); }

.spinch-faq__q {
  width: 100%; text-align: left; padding: 20px 24px; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  font-size: 16px; font-weight: 700; color: #fff; background: var(--spinch-card);
  /* Fix 3: pointer cursor explizit + smoother transition */
  cursor: pointer;
  transition: background 0.28s ease, color 0.28s ease, padding-left 0.32s cubic-bezier(0.4,0,0.2,1);
}
.spinch-faq__q:hover {
  background: var(--spinch-card-2);
  color: var(--spinch-orange);
  padding-left: 32px;
}
.spinch-faq__item.is-open .spinch-faq__q {
  color: var(--spinch-orange);
  padding-left: 32px;
}

/* Fix 3: Plus-Icon mit thematischem Glow + smoother Rotation */
.spinch-faq__icon {
  flex-shrink: 0; width: 26px; height: 26px;
  color: var(--spinch-orange);
  background: var(--spinch-orange-soft);
  border-radius: 50%;
  padding: 4px;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
              background-color 0.28s ease,
              box-shadow 0.28s ease;
}
.spinch-faq__q:hover .spinch-faq__icon {
  box-shadow: 0 0 12px rgba(255, 122, 47, 0.45);
}
.spinch-faq__item.is-open .spinch-faq__icon {
  transform: rotate(135deg);
  background: var(--spinch-orange);
  color: #fff;
  box-shadow: 0 0 14px rgba(255, 122, 47, 0.55);
}

.spinch-faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.32s ease;
  background: var(--spinch-bg-2);
}
.spinch-faq__item.is-open .spinch-faq__a { max-height: 500px; padding: 0 24px 20px; }
.spinch-faq__a p { color: var(--spinch-text-soft); font-size: 15px; line-height: 1.75; padding-top: 18px; }

/* ---------- Bewertungen / Reviews ---------- */
.spinch-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.spinch-review {
  background: var(--spinch-card); border: 1px solid var(--spinch-border);
  border-radius: var(--spinch-r-md); padding: 24px;
}
.spinch-review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.spinch-review__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--spinch-orange), var(--spinch-orange-2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: #fff;
}
.spinch-review__name { font-weight: 700; font-size: 15px; }
.spinch-review__stars { color: var(--spinch-orange); font-size: 14px; letter-spacing: 2px; }
.spinch-review__text { font-size: 14px; color: var(--spinch-text-soft); line-height: 1.7; }

/* ---------- Footer ---------- */
/* ---------- Footer ---------- */
.spinch-footer {
  background: var(--spinch-bg);                       /* dunkler als sidebar - klare Trennung */
  border-top: 2px solid rgba(255,122,47,0.2);
  border-left: 1px solid var(--spinch-border);        /* vertikale Trennlinie zur Sidebar */
  margin-top: 48px;
  padding-left: 32px;                                 /* zusätzlicher Abstand zur Sidebar */
}
.spinch-footer__inner { padding: 48px 0 28px; }
.spinch-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.spinch-footer__brand img { height: 42px; margin-bottom: 14px; }
.spinch-footer__brand p { font-size: 13px; color: var(--spinch-text-muted); line-height: 1.7; }
.spinch-footer__col h4 { font-size: 12px; font-weight: 800; color: var(--spinch-orange); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.spinch-footer__col nav { display: flex; flex-direction: column; gap: 10px; }
.spinch-footer__col nav a { font-size: 14px; color: var(--spinch-text-muted); }
.spinch-footer__col nav a:hover { color: #fff; }
.spinch-footer__badges { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid var(--spinch-border); }
.spinch-footer__badges svg { height: 34px; width: auto; opacity: 0.6; transition: opacity var(--spinch-ease); }
.spinch-footer__badges svg:hover { opacity: 1; }
.spinch-footer__legal { padding-top: 22px; border-top: 1px solid var(--spinch-border); font-size: 12px; color: var(--spinch-text-muted); line-height: 1.7; }
.spinch-footer__legal a { color: var(--spinch-text-soft); }
.spinch-age { display: inline-block; background: var(--spinch-orange); color: #fff; font-weight: 800; font-size: 13px; padding: 4px 12px; border-radius: 6px; }

/* ---------- Sidebar Overlay (Mobile) ---------- */
.spinch-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 99; }
.spinch-overlay.is-open { display: block; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .spinch-promos { grid-template-columns: 1fr; }
  .spinch-features, .spinch-reviews { grid-template-columns: 1fr 1fr; }
  .spinch-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .spinch-sidebar {
    position: fixed; left: 0; top: 0; bottom: 0;
    transform: translateX(-100%); transition: transform var(--spinch-ease);
  }
  .spinch-sidebar.is-open { transform: translateX(0); }
  .spinch-topbar { display: flex; }
  .spinch-hero__inner { padding: 36px 24px; }
  .spinch-features, .spinch-reviews { grid-template-columns: 1fr; }
  .spinch-footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .spinch-hero__actions { flex-direction: column; }
  .spinch-hero__actions .spinch-btn { width: 100%; }
}
