/* SpinEmpire Germany - Main Styles */

@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600;700;800;900&display=swap');

:root {
  --sec-primary: #c9a227;
  --sec-primary-dark: #a88420;
  --sec-bg: #0f0f0f;
  --sec-bg-alt: #1a1a1a;
  --sec-bg-card: #1f1f1f;
  --sec-text: #ffffff;
  --sec-text-muted: #a0a0a0;
  --sec-border: #333333;
  --sec-radius: 8px;
  --sec-radius-lg: 12px;
  --sec-max-width: 1200px;
  --sec-gap: 24px;
  --sec-transition: 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--sec-text); background: var(--sec-bg);
}

h1,h2,h3,h4 { font-weight: 700; line-height: 1.3; margin-bottom: 16px; }
h1 { font-size: clamp(28px,5vw,48px); }
h2 { font-size: clamp(22px,3.5vw,34px); }
h3 { font-size: clamp(18px,2.5vw,22px); }
p { margin-bottom: 16px; }
a { color: var(--sec-primary); text-decoration: none; transition: color var(--sec-transition); }
a:hover { color: var(--sec-primary-dark); }

/* Layout */
.sec-wrap { max-width: var(--sec-max-width); margin: 0 auto; padding: 0 16px; }
.sec-section { padding: 64px 0; }
.sec-section--alt { background: var(--sec-bg-alt); }

/* Header */
.sec-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,15,15,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sec-border);
}
.sec-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; max-width: var(--sec-max-width); margin: 0 auto;
}
.sec-head__left { display: flex; align-items: center; gap: 16px; }
.sec-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
  background: transparent; border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius); cursor: pointer;
}
.sec-burger span { display: block; width: 100%; height: 2px; background: var(--sec-text); }
.sec-logo img { height: 36px; width: auto; }
.sec-nav ul { display: flex; list-style: none; gap: 28px; }
.sec-nav a { color: var(--sec-text); font-weight: 500; font-size: 14px; position: relative; }
.sec-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--sec-primary); transition: width var(--sec-transition);
}
.sec-nav a:hover::after,.sec-nav a.active::after { width: 100%; }
.sec-head__actions { display: flex; gap: 12px; }

/* Buttons */
.sec-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; font-size: 14px; font-weight: 600;
  border-radius: var(--sec-radius); transition: all var(--sec-transition);
  cursor: pointer; border: none; font-family: 'Mulish', sans-serif;
}
.sec-btn--primary { background: var(--sec-primary); color: var(--sec-bg); }
.sec-btn--primary:hover { background: var(--sec-primary-dark); color: var(--sec-bg); transform: translateY(-2px); }
.sec-btn--ghost { background: transparent; color: var(--sec-text); border: 1px solid var(--sec-border); }
.sec-btn--ghost:hover { border-color: var(--sec-primary); color: var(--sec-primary); }
.sec-btn--large { padding: 14px 32px; font-size: 16px; }
.sec-btn--full { width: 100%; justify-content: center; }

/* Mobile Menu */
.sec-mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  opacity: 0; visibility: hidden; transition: all var(--sec-transition); z-index: 101;
}
.sec-mobile-overlay.active { opacity: 1; visibility: visible; }
.sec-mobile-panel {
  position: fixed; top: 0; left: 0; width: min(300px,88vw); height: 100%;
  background: var(--sec-bg-alt); transform: translateX(-100%);
  transition: transform var(--sec-transition); z-index: 102; padding: 20px; overflow-y: auto;
}
.sec-mobile-panel.active { transform: translateX(0); }
.sec-mobile-panel__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.sec-mobile-panel__close { width: 32px; height: 32px; background: transparent; border: none; cursor: pointer; position: relative; }
.sec-mobile-panel__close::before,
.sec-mobile-panel__close::after {
  content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 2px; background: var(--sec-text);
}
.sec-mobile-panel__close::before { transform: rotate(45deg); }
.sec-mobile-panel__close::after { transform: rotate(-45deg); }
.sec-mobile-panel__nav { list-style: none; margin-bottom: 32px; }
.sec-mobile-panel__nav li { margin-bottom: 16px; }
.sec-mobile-panel__nav a { color: var(--sec-text); font-size: 17px; font-weight: 500; }
.sec-mobile-panel__actions { display: flex; flex-direction: column; gap: 12px; }

/* Hero */
.sec-hero {
  position: relative; min-height: 600px; max-height: 800px;
  display: flex; align-items: center; overflow: hidden;
}
.sec-hero__bg { position: absolute; inset: 0; z-index: 0; }
.sec-hero__bg picture { display: block; width: 100%; height: 100%; }
.sec-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.sec-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(15,15,15,.93) 0%, rgba(15,15,15,.65) 55%, transparent 100%);
}
.sec-hero__wrap { position: relative; z-index: 2; width: 100%; }
.sec-hero__content { max-width: 620px; }
.sec-hero__tag {
  display: inline-block; background: var(--sec-primary); color: var(--sec-bg);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px; margin-bottom: 14px;
}
.sec-hero__content h1 { margin-bottom: 14px; }
.sec-hero__subtitle { font-size: 16px; color: var(--sec-text-muted); margin-bottom: 20px; line-height: 1.6; }
.sec-hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.sec-hero__badge {
  background: rgba(255,255,255,.07); border: 1px solid rgba(201,162,39,.35);
  border-radius: 6px; padding: 6px 14px; font-size: 13px; font-weight: 700; color: var(--sec-primary);
}
.sec-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.sec-hero__note { font-size: 11px; color: var(--sec-text-muted); margin-top: 12px; margin-bottom: 0; }
.sec-hero--compact { min-height: 320px; max-height: 420px; height: 38vh; }
.sec-hero--compact .sec-hero__content h1 { font-size: clamp(20px, 3vw, 32px); margin-bottom: 18px; }
.sec-hero--compact .sec-hero__subtitle { font-size: 15px; margin-bottom: 22px; }

/* Tables */
.sec-table-wrap { overflow-x: auto; margin-bottom: 24px; }
.sec-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
  background: var(--sec-bg-card); border-radius: var(--sec-radius); overflow: hidden;
}
.sec-table th,.sec-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--sec-border); }
.sec-table th { font-weight: 700; color: var(--sec-primary); background: var(--sec-bg-alt); }
.sec-table tr:last-child td { border-bottom: none; }
.sec-table tr:hover td { background: rgba(255,255,255,.02); }

/* Blocks */
.sec-block {
  background: var(--sec-bg-card); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius-lg); padding: 24px;
}
.sec-block__game-img {
  width: calc(100% + 48px); margin: -24px -24px 20px;
  height: 300px; object-fit: cover; display: block;
  border-radius: var(--sec-radius-lg) var(--sec-radius-lg) 0 0;
}
.sec-block--accent { border-color: var(--sec-primary); }
.sec-block ul { list-style: none; margin-bottom: 16px; }
.sec-block ul li { position: relative; padding-left: 20px; margin-bottom: 8px; font-size: 14px; color: var(--sec-text-muted); }
.sec-block ul li::before { content: '•'; position: absolute; left: 0; color: var(--sec-primary); }

/* Grid layouts */
.sec-grid-2 { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: var(--sec-gap); margin-bottom: 32px; }
.sec-grid-3 { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: var(--sec-gap); }

/* Features */
.sec-features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: var(--sec-gap); }
.sec-feature-item {
  background: var(--sec-bg-card); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius-lg); padding: 24px; transition: border-color var(--sec-transition), transform var(--sec-transition);
}
.sec-feature-item:hover { border-color: var(--sec-primary); transform: translateY(-2px); }
.sec-feature-item h3 { color: var(--sec-primary); margin-bottom: 8px; font-size: 16px; }
.sec-feature-item p { font-size: 14px; color: var(--sec-text-muted); margin-bottom: 0; }
.sec-feature-item__icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background var(--sec-transition), border-color var(--sec-transition);
}
.sec-feature-item:hover .sec-feature-item__icon { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.15); }
.sec-feature-item__icon img { width: 28px; height: 28px; display: block; }
.sec-feature-item__illus {
  width: 64px; height: 64px; object-fit: contain; margin-bottom: 16px; display: block;
}

/* Steps */
.sec-steps-detailed { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.sec-step-item { display: flex; gap: 20px; }
.sec-step-item__num {
  width: 48px; height: 48px; background: var(--sec-primary); color: var(--sec-bg);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; flex-shrink: 0;
}
.sec-step-item__content h4 { margin-bottom: 6px; color: var(--sec-primary); }
.sec-step-item__content p { font-size: 14px; color: var(--sec-text-muted); margin-bottom: 0; }

/* Providers */
.sec-providers { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.sec-provider {
  flex: 1 1 130px; background: var(--sec-bg-alt); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius); padding: 14px 12px; text-align: center;
  transition: all var(--sec-transition);
}
.sec-provider:hover { border-color: var(--sec-primary); transform: translateY(-2px); }
.sec-provider img { max-width: 100px; height: 30px; object-fit: contain; display: block; margin: 0 auto; opacity: .8; transition: opacity var(--sec-transition); }
.sec-provider:hover img { opacity: 1; }

/* Bonus Cards */
.sec-bonus-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: var(--sec-gap); margin-bottom: 24px;
}
.sec-bonus-card {
  background: var(--sec-bg-card); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius-lg); overflow: hidden;
  transition: transform var(--sec-transition), box-shadow var(--sec-transition);
  display: flex; flex-direction: column;
}
.sec-bonus-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.sec-bonus-card__image { width: 100%; height: 160px; overflow: hidden; }
.sec-bonus-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--sec-transition); }
.sec-bonus-card:hover .sec-bonus-card__image img { transform: scale(1.05); }
.sec-bonus-card__content { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.sec-bonus-card__stage {
  display: inline-block; background: var(--sec-primary); color: var(--sec-bg);
  padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; margin-bottom: 10px;
}
.sec-bonus-card h3 { font-size: 16px; margin-bottom: 10px; line-height: 1.35; }
.sec-bonus-card__desc { font-size: 13px; color: var(--sec-text-muted); margin-bottom: 12px; flex: 1; }
.sec-bonus-stats { list-style: none; margin: 0 0 12px; padding: 0; border: 1px solid var(--sec-border); border-radius: var(--sec-radius); overflow: hidden; }
.sec-bonus-stats li { display: flex; justify-content: space-between; align-items: center; padding: 7px 12px; font-size: 12px; border-bottom: 1px solid var(--sec-border); }
.sec-bonus-stats li:last-child { border-bottom: none; }
.sec-bonus-stats li:nth-child(odd) { background: rgba(255,255,255,.02); }
.sec-bonus-stats li span:first-child { color: var(--sec-text-muted); font-weight: 500; }
.sec-bonus-stats li span:last-child { font-weight: 700; text-align: right; }
.sec-bonus-card__terms { font-size: 11px; color: var(--sec-text-muted); margin-bottom: 14px; line-height: 1.5; }

/* Bonus total */
.sec-bonus-total {
  text-align: center; padding: 18px 24px; background: var(--sec-bg-card);
  border: 2px solid var(--sec-primary); border-radius: var(--sec-radius-lg); margin-bottom: 16px;
}
.sec-bonus-total__label { font-size: 13px; color: var(--sec-text-muted); margin-bottom: 4px; }
.sec-bonus-total__value { font-size: 19px; font-weight: 700; color: var(--sec-primary); }

/* Promo cards */
.sec-promo-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: var(--sec-gap); margin-bottom: 32px; }
.sec-promo-card {
  background: var(--sec-bg-card); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius-lg); padding: 24px;
  transition: border-color var(--sec-transition), transform var(--sec-transition);
}
.sec-promo-card:hover { border-color: var(--sec-primary); transform: translateY(-3px); }
.sec-promo-card__label { font-size: 11px; color: var(--sec-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.sec-promo-card h3 { font-size: 17px; color: var(--sec-text); margin-bottom: 6px; }
.sec-promo-card__amount { font-size: 20px; font-weight: 800; color: var(--sec-primary); margin-bottom: 10px; }
.sec-promo-card p { font-size: 13px; color: var(--sec-text-muted); margin-bottom: 0; }

/* Player reviews */
.sec-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: var(--sec-gap); margin-bottom: 32px; }
.sec-review-player {
  background: var(--sec-bg-card); border-radius: var(--sec-radius-lg);
  padding: 24px; border: 1px solid var(--sec-border);
  transition: border-color var(--sec-transition), box-shadow var(--sec-transition);
  min-width: 0;
}
.sec-review-player:hover { border-color: rgba(201,162,39,.4); box-shadow: 0 8px 24px rgba(0,0,0,.28); }
.sec-review-player__header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.sec-review-player__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg,var(--sec-primary),#a88420);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--sec-bg); font-size: 13px;
}
.sec-review-player__name { font-weight: 700; color: var(--sec-text); font-size: 15px; }
.sec-review-player__meta { font-size: 12px; color: var(--sec-text-muted); margin-top: 2px; }
.sec-review-player__rating { margin-left: auto; color: var(--sec-primary); font-size: 13px; white-space: nowrap; }
.sec-review-player p { font-size: 14px; line-height: 1.7; color: var(--sec-text-muted); margin-bottom: 0; font-style: italic; }

/* Reviews Slider */
.sec-slider { position: relative; }
.sec-slider__track-wrap { overflow: hidden; }
.sec-slider__track {
  display: flex; gap: 24px;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.sec-slider__track .sec-review-player { flex: 0 0 calc((100% - 48px) / 3); }
.sec-slider__nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 28px;
}
.sec-slider__btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sec-bg-card); border: 1px solid var(--sec-border);
  color: var(--sec-text); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--sec-transition); flex-shrink: 0; font-family: inherit;
}
.sec-slider__btn:hover:not(:disabled) { border-color: var(--sec-primary); color: var(--sec-primary); background: rgba(201,162,39,.08); }
.sec-slider__btn:disabled { opacity: .28; cursor: default; pointer-events: none; }
.sec-slider__btn svg { width: 18px; height: 18px; display: block; }
.sec-slider__dots { display: flex; gap: 8px; align-items: center; }
.sec-slider__dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: var(--sec-border); cursor: pointer;
  transition: all .3s ease; border: none; padding: 0; flex-shrink: 0;
}
.sec-slider__dot.is-active { background: var(--sec-primary); width: 22px; }

@media (max-width: 980px) {
  .sec-slider__track .sec-review-player { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 600px) {
  .sec-slider__track .sec-review-player { flex: 0 0 100%; }
}

/* FAQ */
.sec-faq { display: flex; flex-direction: column; gap: 10px; }
.sec-faq__item { background: var(--sec-bg-card); border: 1px solid var(--sec-border); border-radius: var(--sec-radius); overflow: hidden; }
.sec-faq__question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; background: transparent; border: none;
  color: var(--sec-text); font-size: 15px; font-weight: 600;
  text-align: left; cursor: pointer; transition: background var(--sec-transition);
  font-family: 'Mulish', sans-serif;
}
.sec-faq__question:hover { background: var(--sec-bg-alt); }
.sec-faq__icon { width: 20px; height: 20px; position: relative; flex-shrink: 0; }
.sec-faq__icon::before,
.sec-faq__icon::after { content: ''; position: absolute; background: var(--sec-primary); transition: transform var(--sec-transition); }
.sec-faq__icon::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.sec-faq__icon::after { width: 2px; height: 100%; top: 0; left: 50%; transform: translateX(-50%); }
.sec-faq__question[aria-expanded="true"] .sec-faq__icon::after { transform: translateX(-50%) rotate(90deg); }
.sec-faq__answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.sec-faq__answer p { padding: 0 22px 18px; margin-bottom: 0; color: var(--sec-text-muted); font-size: 14px; line-height: 1.65; }

/* Payments */
.sec-payment-icons { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.sec-payment-icon {
  width: 60px; height: 36px; background: var(--sec-bg-alt); border: 1px solid var(--sec-border);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  padding: 5px; transition: border-color var(--sec-transition);
}
.sec-payment-icon:hover { border-color: var(--sec-primary); }
.sec-payment-icon img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Footer */
.sec-footer { background: var(--sec-bg-alt); border-top: 1px solid var(--sec-border); padding: 56px 0 28px; }
.sec-footer__top {
  display: flex; flex-wrap: wrap; gap: 40px;
  margin-bottom: 40px; padding-bottom: 40px;
  border-bottom: 1px solid var(--sec-border);
}
.sec-footer__col { flex: 1 1 180px; }
.sec-footer__logo img { height: 34px; margin-bottom: 14px; display: block; }
.sec-footer__tagline { color: var(--sec-text-muted); font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.sec-footer__payments { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.sec-footer__pay-icon {
  height: 26px; background: var(--sec-bg); border: 1px solid var(--sec-border);
  border-radius: 4px; padding: 3px 7px; display: flex; align-items: center; justify-content: center;
}
.sec-footer__pay-icon img { max-height: 100%; width: auto; object-fit: contain; }
.sec-footer__title { font-size: 13px; font-weight: 700; margin-bottom: 14px; color: var(--sec-primary); text-transform: uppercase; letter-spacing: .5px; }
.sec-footer__links { list-style: none; }
.sec-footer__links li { margin-bottom: 8px; }
.sec-footer__links a { color: var(--sec-text-muted); font-size: 14px; transition: color var(--sec-transition); }
.sec-footer__links a:hover { color: var(--sec-primary); }

/* Footer testimonials */
.sec-footer__testimonials {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 16px; padding: 24px 0; margin-bottom: 24px;
  border-bottom: 1px solid var(--sec-border);
}
.sec-footer__testimonials a { display: flex; align-items: center; justify-content: center; opacity: .5; transition: opacity var(--sec-transition); }
.sec-footer__testimonials a:hover { opacity: 1; }
.sec-footer__testimonials img { height: 22px; width: auto; }

.sec-footer__bottom { text-align: center; }
.sec-footer__bottom p { color: var(--sec-text-muted); font-size: 13px; margin-bottom: 6px; }
.sec-footer__disclaimer { color: var(--sec-text-muted); font-size: 12px; margin-top: 16px; line-height: 1.65; max-width: 800px; margin-inline: auto; }

/* Utility */
.sec-h2 { text-align: center; margin-bottom: 12px; }
.sec-h3 { margin-top: 32px; margin-bottom: 14px; }
.sec-intro { text-align: center; color: var(--sec-text-muted); max-width: 820px; margin: 0 auto 32px; }
.sec-note { font-size: 13px; color: var(--sec-text-muted); font-style: italic; }
.sec-cta-center { text-align: center; margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }

.sec-list-check { list-style: none; margin-bottom: 16px; }
.sec-list-check li { position: relative; padding-left: 26px; margin-bottom: 8px; font-size: 14px; color: var(--sec-text-muted); }
.sec-list-check li::before { content: '✓'; position: absolute; left: 0; color: var(--sec-primary); font-weight: 700; }

/* Responsive */
@media (max-width: 980px) {
  .sec-nav { display: none; }
  .sec-burger { display: flex; }
  .sec-head__actions .sec-btn { padding: 8px 12px; font-size: 12px; }
  .sec-hero { min-height: 500px; height: auto; padding: 100px 0; }
  .sec-hero__content { max-width: 100%; text-align: center; }
  .sec-hero__cta { justify-content: center; }
  .sec-hero__badges { justify-content: center; }
}
@media (max-width: 767px) {
  .sec-hero { min-height: 420px; max-height: none; padding: 80px 0 60px; }
  .sec-section { padding: 40px 0; }
  .sec-reviews-grid { grid-template-columns: 1fr; }
  .sec-footer__top { gap: 24px; }
  .sec-footer__testimonials { gap: 12px; }
}
@media (max-width: 480px) {
  .sec-section { padding: 28px 0; }
  .sec-wrap { padding: 0 12px; }
  .sec-hero { padding: 60px 0 40px; min-height: 360px; }
  .sec-bonus-grid { grid-template-columns: 1fr; }
  .sec-promo-grid { grid-template-columns: 1fr; }
  .sec-faq__question { font-size: 14px; padding: 14px 16px; }
  .sec-faq__answer p { padding: 0 16px 14px; }
  .sec-step-item { flex-direction: column; gap: 12px; }
  .sec-step-item__num { width: 40px; height: 40px; font-size: 15px; }
  h2 { font-size: clamp(20px,5vw,28px); }
  h3 { font-size: clamp(16px,4vw,20px); }
}
