/* ============================================================
   YEP Casino – yep-casinobonus.ro
   Geo / Language: RO (România)
   Theme: Wild West sunset (banner + logo yellow accent)
   ============================================================ */

/* --- 1. Design tokens --- */
:root {
  --clr-bg:           #120a08;
  --clr-bg-2:         #1e1210;
  --clr-bg-card:      rgba(59, 36, 36, 0.55);
  --clr-bg-card-h:    rgba(89, 52, 48, 0.65);
  --clr-bg-overlay:   rgba(18, 10, 8, 0.72);
  --clr-bg-table-hd:  rgba(246, 185, 59, 0.12);
  --clr-bg-table-alt: rgba(255, 255, 255, 0.03);

  --clr-brown:        #3b2424;
  --clr-gold:         #f6b93b;
  --clr-gold-dark:    #d4920f;
  --clr-gold-light:   #ffe066;
  --clr-yellow:       #ffe500;
  --clr-sunset:       #e55039;
  --clr-sunset-soft:  #f8c291;
  --clr-red:          #c0392b;

  --clr-text:         #f5ebe0;
  --clr-text-2:       #c4a89a;
  --clr-text-3:       #8a6f63;
  --clr-text-inv:     #1a0f0a;

  --clr-border:       rgba(246, 185, 59, 0.22);
  --clr-border-h:     rgba(255, 229, 0, 0.45);

  --ff-display:       'Rye', Georgia, serif;
  --ff-body:          'Nunito', 'Segoe UI', system-ui, sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.35rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  2.75rem;

  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 9999px;

  --sh-gold:  0 0 28px rgba(246, 185, 59, 0.35);
  --sh-card:  0 10px 40px rgba(0, 0, 0, 0.55);
  --sh-btn:   0 6px 24px rgba(229, 80, 57, 0.4);

  --max-w:      1180px;
  --header-h:   72px;
  --mob-bar-h:  70px;

  --tr-fast:   0.15s ease;
  --tr-normal: 0.3s ease;
}

/* --- 2. Reset & base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  background-image:
    radial-gradient(ellipse 90% 50% at 50% -5%, rgba(229, 80, 57, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(246, 185, 59, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--clr-bg) 0%, #0d0706 100%);
  min-height: 100vh;
}

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

a {
  color: var(--clr-gold);
  transition: color var(--tr-fast), opacity var(--tr-fast);
}

a:hover {
  color: var(--clr-gold-light);
}

ul, ol {
  padding-left: 1.25rem;
}

/* Decorative dust layer (fixed, non-interactive) */
.dust-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.35;
}

.dust-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--clr-gold-light);
  animation: float-dust var(--dur, 8s) ease-in-out infinite var(--delay, 0s);
}

@keyframes float-dust {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
  50% { transform: translateY(-30px) translateX(10px); opacity: 0.7; }
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

/* --- 3. Skip link (a11y) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  z-index: 9999;
  padding: var(--sp-3) var(--sp-5);
  background: var(--clr-yellow);
  color: var(--clr-text-inv);
  font-weight: 700;
  border-radius: var(--r-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: var(--sp-4);
}

/* --- 4. Header (sticky / pinned on all viewports) --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 150;
  height: var(--header-h);
  background: rgba(18, 10, 8, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--clr-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.site-header.is-scrolled {
  border-bottom-color: var(--clr-border-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  height: var(--header-h);
}

.site-logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 229, 0, 0.35));
}

.header-cta {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  align-items: center;
}

/* --- 5. Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 12px 26px;
  border-radius: var(--r-full);
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: var(--fs-sm);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--tr-normal), box-shadow var(--tr-normal), background var(--tr-normal);
  white-space: nowrap;
  touch-action: manipulation;
}

.btn:focus-visible {
  outline: 3px solid var(--clr-yellow);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-yellow), var(--clr-gold));
  color: var(--clr-text-inv);
  border-color: var(--clr-gold-dark);
  box-shadow: var(--sh-btn);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-gold);
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-yellow));
}

.btn-secondary {
  background: transparent;
  color: var(--clr-gold-light);
  border-color: var(--clr-gold);
}

.btn-secondary:hover {
  background: rgba(246, 185, 59, 0.12);
  transform: translateY(-2px);
}

.btn-sunset {
  background: linear-gradient(135deg, var(--clr-sunset), #c0392b);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-sunset:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(229, 80, 57, 0.5);
}

.btn-sm {
  padding: 9px 18px;
  font-size: var(--fs-xs);
}

/* --- 6. Hero banner + centred semi-transparent CTA --- */
.hero {
  position: relative;
  min-height: clamp(380px, 55vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Same banner asset for desktop and mobile (per brief) */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/banner/banner.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Subtle vignette so centred CTA stays readable on all breakpoints */
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(18, 10, 8, 0.35) 0%, rgba(18, 10, 8, 0.65) 100%),
    linear-gradient(to bottom, rgba(18, 10, 8, 0.2) 0%, rgba(18, 10, 8, 0.75) 100%);
  z-index: 1;
}

.hero-cta {
  position: relative;
  z-index: 2;
  width: min(92%, 560px);
  margin: var(--sp-8) auto;
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  background: var(--clr-bg-overlay);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid var(--clr-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-card), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-cta__badge {
  display: inline-block;
  margin-bottom: var(--sp-4);
  padding: var(--sp-1) var(--sp-4);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-inv);
  background: linear-gradient(90deg, var(--clr-sunset), var(--clr-gold));
  border-radius: var(--r-full);
}

.hero-cta h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 4.5vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--clr-gold-light);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: var(--sp-3);
}

.hero-cta__sub {
  font-size: var(--fs-sm);
  color: var(--clr-text-2);
  margin-bottom: var(--sp-6);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.hero-badge {
  min-width: 100px;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(59, 36, 36, 0.6);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
}

.hero-badge strong {
  display: block;
  font-size: var(--fs-lg);
  color: var(--clr-yellow);
  line-height: 1.1;
}

.hero-badge span {
  font-size: var(--fs-xs);
  color: var(--clr-text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
}

.hero-cta__legal {
  margin-top: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--clr-text-3);
}

/* --- 7. Breadcrumbs --- */
.breadcrumbs-wrap {
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  list-style: none;
  font-size: var(--fs-sm);
  color: var(--clr-text-3);
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.breadcrumbs li:not(:last-child)::after {
  content: '›';
  opacity: 0.55;
  margin-left: var(--sp-1);
}

.breadcrumbs a {
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs [aria-current="page"] {
  color: var(--clr-text);
  font-weight: 700;
}

/* --- 8. Main sections --- */
main {
  position: relative;
  z-index: 1;
}

.section {
  padding-block: var(--sp-16);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--clr-gold-light);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--clr-sunset), var(--clr-gold), transparent) 1;
}

.section-lead {
  font-size: var(--fs-md);
  color: var(--clr-text-2);
  margin-bottom: var(--sp-8);
  max-width: 720px;
}

.prose p {
  margin-bottom: var(--sp-4);
  color: var(--clr-text-2);
}

.prose p strong,
.prose strong {
  color: var(--clr-gold-light);
}

.prose ul {
  margin-bottom: var(--sp-6);
  color: var(--clr-text-2);
}

.prose li {
  margin-bottom: var(--sp-2);
}

.prose li::marker {
  color: var(--clr-sunset);
}

/* --- 9. Step cards (claim bonus flow) --- */
.steps-grid {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.step-card {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  padding: var(--sp-5) var(--sp-6);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  transition: border-color var(--tr-normal), box-shadow var(--tr-normal);
}

.step-card:hover {
  border-color: var(--clr-border-h);
  box-shadow: var(--sh-gold);
}

.step-card__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: var(--fs-lg);
  color: var(--clr-text-inv);
  background: linear-gradient(135deg, var(--clr-sunset), var(--clr-gold));
  border-radius: 50%;
  box-shadow: var(--sh-btn);
}

.step-card h3 {
  font-size: var(--fs-md);
  color: var(--clr-gold);
  margin-bottom: var(--sp-2);
}

.step-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-2);
  margin: 0;
}

/* --- 10. Bonus table (desktop + mobile card layout) --- */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  background: var(--clr-bg-card);
  box-shadow: var(--sh-card);
  margin-bottom: var(--sp-8);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  min-width: 580px;
}

.bonus-table thead {
  background: var(--clr-bg-table-hd);
}

.bonus-table th {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  font-size: var(--fs-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-gold);
  border-bottom: 2px solid var(--clr-gold-dark);
  white-space: nowrap;
}

.bonus-table td {
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--clr-text);
  vertical-align: middle;
}

.bonus-table tbody tr:nth-child(even) td {
  background: var(--clr-bg-table-alt);
}

.bonus-table tbody tr:hover td {
  background: var(--clr-bg-card-h);
}

.bonus-table .highlight {
  color: var(--clr-yellow);
  font-weight: 800;
}

@media (max-width: 680px) {
  .table-wrap {
    overflow-x: visible;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .bonus-table {
    min-width: unset;
  }

  .bonus-table thead {
    display: none;
  }

  .bonus-table tbody tr {
    display: block;
    margin-bottom: var(--sp-4);
    padding: var(--sp-4);
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-card);
  }

  .bonus-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--sp-4);
    padding: var(--sp-2) 0;
    border-bottom: 1px solid rgba(246, 185, 59, 0.12);
    background: transparent !important;
    text-align: right;
  }

  .bonus-table td::before {
    content: attr(data-label);
    font-size: var(--fs-xs);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--clr-text-3);
    text-align: left;
    flex-shrink: 0;
  }

  .bonus-table td:last-child {
    border-bottom: none;
  }
}

/* --- 11. Feature cards --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.feature-card {
  padding: var(--sp-6);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: transform var(--tr-normal), box-shadow var(--tr-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-gold);
}

.feature-card__icon {
  font-size: 2rem;
  margin-bottom: var(--sp-3);
}

.feature-card h3 {
  font-size: var(--fs-md);
  color: var(--clr-gold);
  margin-bottom: var(--sp-2);
}

.feature-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-2);
}

/* --- 12. Slots gallery --- */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.slot-card {
  position: relative;
  display: block;
  text-decoration: none;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  background: var(--clr-brown);
  transition: border-color var(--tr-normal), box-shadow var(--tr-normal);
}

.slot-card:hover {
  border-color: var(--clr-border-h);
  box-shadow: var(--sh-gold);
}

.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-normal);
}

.slot-card:hover img {
  transform: scale(1.06);
}

.slot-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--sp-3);
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85));
  opacity: 0;
  transition: opacity var(--tr-normal);
}

.slot-card:hover .slot-card__overlay,
.slot-card:focus-within .slot-card__overlay {
  opacity: 1;
}

.slot-card__name {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: #fff;
  text-align: center;
}

/* --- 13. Payments --- */
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.payment-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 52px;
  padding: var(--sp-3) var(--sp-4);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  transition: border-color var(--tr-normal);
}

.payment-item:hover {
  border-color: var(--clr-border-h);
}

.payment-item img {
  height: 26px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
  filter: brightness(0.92);
}

/* --- 14. FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

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

.faq-item[open] {
  border-color: var(--clr-border-h);
}

.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-weight: 700;
  cursor: pointer;
  color: var(--clr-text);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--clr-gold);
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--clr-text-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- 15. Callout box --- */
.callout {
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-6) 0;
  background: rgba(229, 80, 57, 0.1);
  border-left: 4px solid var(--clr-sunset);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--clr-text-2);
}

.callout strong {
  color: var(--clr-gold-light);
}

/* --- 16. Footer --- */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: var(--sp-8);
  padding-block: var(--sp-12) var(--sp-10);
  background: rgba(0, 0, 0, 0.45);
  border-top: 2px solid var(--clr-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-8);
}

.footer-brand img {
  height: 42px;
  margin-bottom: var(--sp-4);
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: var(--clr-text-3);
}

.footer-nav h4 {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: var(--sp-2);
}

.footer-nav a {
  font-size: var(--fs-sm);
  color: var(--clr-text-2);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--clr-gold-light);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: var(--fs-xs);
  color: var(--clr-text-3);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--clr-text-3);
  border-radius: 50%;
  font-weight: 800;
  font-size: var(--fs-xs);
}

.footer-disclaimer {
  margin-top: var(--sp-6);
  font-size: var(--fs-xs);
  color: var(--clr-text-3);
  line-height: 1.65;
}

.text-center {
  text-align: center;
}

.mt-6 {
  margin-top: var(--sp-6);
}

/* --- 17. Mobile sticky bottom bar (pinned screen) --- */
.mobile-sticky-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: var(--mob-bar-h);
  }

  .header-cta .btn-secondary {
    display: none;
  }

  .site-logo img {
    height: 38px;
  }

  .section {
    padding-block: var(--sp-12);
  }

  .step-card {
    flex-direction: column;
    gap: var(--sp-3);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }

  .mobile-sticky-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--mob-bar-h);
    padding-inline: var(--sp-4);
    background: rgba(18, 10, 8, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 2px solid var(--clr-border);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
  }

  .mobile-sticky-bar.is-hidden {
    transform: translateY(100%);
    transition: transform var(--tr-normal);
  }

  .mob-bar-text {
    font-size: var(--fs-xs);
    color: var(--clr-text-2);
    line-height: 1.25;
    min-width: 0;
    overflow: hidden;
  }

  .mob-bar-text strong {
    display: block;
    font-size: var(--fs-sm);
    color: var(--clr-yellow);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 18. Scroll animations (JS adds .is-visible) --- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media print {
  .site-header,
  .hero,
  .mobile-sticky-bar,
  .dust-bg {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    padding-bottom: 0;
  }
}
