@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Noto+Sans:wght@400;500;600&display=swap');

:root {
  --c-bg: #0e0b07;
  --c-bg-alt: #16120b;
  --c-bg-warm: #1a150d;
  --c-surface: #1f1912;
  --c-surface-hover: #2a2218;
  --c-sand: #c4a46e;
  --c-gold: #d4a843;
  --c-gold-dim: #b8922e;
  --c-gold-bright: #f0c94d;
  --c-text: #e8e0d4;
  --c-text-dim: #9a8e7e;
  --c-text-muted: #6b6054;
  --c-accent: #c75b2a;
  --c-accent-hover: #d96a35;
  --c-border: rgba(196, 164, 110, 0.12);
  --c-border-strong: rgba(196, 164, 110, 0.25);
  --c-overlay: rgba(14, 11, 7, 0.85);
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Noto Sans', sans-serif;
  --max-w: 1320px;
  --gap-section: clamp(80px, 10vw, 140px);
  --radius: 6px;
  --radius-lg: 14px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.2s;
  --duration-med: 0.35s;
  --duration-slow: 0.7s;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--c-gold);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

a:hover {
  color: var(--c-gold-bright);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-text);
}

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out), background var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: var(--c-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199, 91, 42, 0.25);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--c-gold);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--c-border-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  letter-spacing: 0.02em;
}

.btn-outline:hover {
  border-color: var(--c-gold);
  background: rgba(212, 168, 67, 0.06);
  transform: translateY(-1px);
}

.btn-outline:active {
  transform: translateY(0) scale(0.98);
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-dim);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1rem;
  color: var(--c-text-dim);
  max-width: 55ch;
  line-height: 1.7;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(14, 11, 7, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  transition: background var(--duration-med) ease;
}

.top-nav.scrolled {
  background: rgba(14, 11, 7, 0.92);
}

.top-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--c-text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-dim);
  letter-spacing: 0.01em;
  transition: color var(--duration-fast) ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-gold);
  transition: width var(--duration-med) var(--ease-out);
}

.nav-links a:hover {
  color: var(--c-text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.82rem !important;
}

.nav-cta::after {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--duration-med) ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100dvh;
  background: var(--c-bg-alt);
  border-left: 1px solid var(--c-border);
  z-index: 105;
  padding: 90px 28px 40px;
  transition: right var(--duration-med) var(--ease-out);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text-dim);
  border-bottom: 1px solid var(--c-border);
  transition: color var(--duration-fast), padding-left var(--duration-fast);
}

.mobile-menu a:hover {
  color: var(--c-gold);
  padding-left: 8px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 104;
  opacity: 0;
  transition: opacity var(--duration-med) ease;
}

.mobile-overlay.visible {
  opacity: 1;
}

.hero-block {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,11,7,0.4) 0%, rgba(14,11,7,0.2) 40%, rgba(14,11,7,0.85) 100%),
    linear-gradient(90deg, rgba(14,11,7,0.7) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.6s var(--ease-out) both;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeSlideUp var(--duration-slow) 0.1s var(--ease-out) both;
}

.hero-h1 em {
  font-style: normal;
  color: var(--c-gold);
  position: relative;
}

.hero-h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--c-gold);
  opacity: 0.3;
  border-radius: 2px;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--c-text-dim);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: 32px;
  animation: fadeSlideUp var(--duration-slow) 0.2s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp var(--duration-slow) 0.3s var(--ease-out) both;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  animation: fadeSlideUp 0.8s 0.3s var(--ease-out) both;
}

.hero-visual img {
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
}

.responsible-notice {
  padding: 40px 0;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
}

.responsible-notice .wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.responsible-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.15);
  color: var(--c-gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
}

.responsible-text {
  font-size: 0.88rem;
  color: var(--c-text-dim);
  line-height: 1.7;
  max-width: 80ch;
}

.about-block {
  padding: var(--gap-section) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about-img-wrap:hover img {
  transform: scale(1.03);
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

.rules-block {
  position: relative;
  padding: var(--gap-section) 0;
  overflow: hidden;
}

.rules-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rules-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.rules-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--c-bg) 0%, transparent 15%, transparent 85%, var(--c-bg) 100%);
}

.rules-inner {
  position: relative;
  z-index: 2;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.rule-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(31, 25, 18, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: border-color var(--duration-fast) ease, transform var(--duration-fast) var(--ease-out);
}

.rule-item:hover {
  border-color: var(--c-border-strong);
  transform: translateY(-2px);
}

.rule-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.15);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--c-gold);
}

.rule-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--c-text);
}

.rule-desc {
  font-size: 0.84rem;
  color: var(--c-text-dim);
  line-height: 1.6;
}

.advantages-block {
  padding: var(--gap-section) 0;
  background: var(--c-bg-alt);
}

.adv-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}

.adv-item {
  padding: 32px 28px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: border-color var(--duration-fast) ease, transform var(--duration-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.adv-item:hover {
  border-color: var(--c-border-strong);
  transform: translateY(-3px);
}

.adv-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--c-gold);
  transition: height 0.4s var(--ease-out);
}

.adv-item:hover::before {
  height: 100%;
}

.adv-item.span-row {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.adv-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(212, 168, 67, 0.08);
  margin-bottom: 18px;
  color: var(--c-gold);
}

.adv-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--c-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.adv-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.adv-desc {
  font-size: 0.85rem;
  color: var(--c-text-dim);
  line-height: 1.65;
}

.howwork-block {
  padding: var(--gap-section) 0;
}

.howwork-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.howwork-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.howwork-step {
  position: relative;
  padding: 28px 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  transition: background var(--duration-fast) ease;
}

.howwork-step:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.howwork-step:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.howwork-step:hover {
  background: var(--c-surface-hover);
}

.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: rgba(212, 168, 67, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--c-text-dim);
  line-height: 1.6;
}

.howwork-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.howwork-images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  transition: transform 0.5s var(--ease-out);
}

.howwork-images img:hover {
  transform: scale(1.02);
}

.team-block {
  padding: var(--gap-section) 0;
  background: var(--c-bg-alt);
}

.team-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.team-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--duration-med) var(--ease-out), border-color var(--duration-fast) ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-border-strong);
}

.team-card:first-child {
  grid-row: span 1;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.4s ease;
}

.team-card:first-child .team-photo {
  aspect-ratio: 16/10;
}

.team-card:hover .team-photo {
  filter: grayscale(0%);
}

.team-info {
  padding: 20px;
}

.team-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
}

.team-role {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 2px;
}

.team-bio {
  font-size: 0.82rem;
  color: var(--c-text-dim);
  margin-top: 10px;
  line-height: 1.6;
}

.updates-block {
  padding: var(--gap-section) 0;
  text-align: center;
}

.updates-inner {
  max-width: 600px;
  margin: 0 auto;
}

.updates-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(199, 91, 42, 0.1);
  border: 1px solid rgba(199, 91, 42, 0.2);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
}

.updates-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.updates-desc {
  font-size: 0.95rem;
  color: var(--c-text-dim);
  line-height: 1.7;
  margin-bottom: 32px;
}

.reviews-block {
  padding: var(--gap-section) 0;
  background: var(--c-bg-alt);
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  animation: scrollReviews 50s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.review-card {
  flex-shrink: 0;
  width: 340px;
  padding: 28px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--c-gold);
}

.review-text {
  font-size: 0.88rem;
  color: var(--c-text-dim);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-surface-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--c-gold);
  border: 1px solid var(--c-border);
}

.review-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
}

.review-date {
  font-size: 0.72rem;
  color: var(--c-text-muted);
}

@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.faq-block {
  padding: var(--gap-section) 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  margin-top: 48px;
}

.faq-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.faq-sidebar-text {
  font-size: 0.9rem;
  color: var(--c-text-dim);
  line-height: 1.7;
  margin-top: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--duration-fast) ease;
}

.faq-item.active {
  border-color: var(--c-border-strong);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--c-surface);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-text);
  transition: background var(--duration-fast) ease;
}

.faq-trigger:hover {
  background: var(--c-surface-hover);
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: -2px;
}

.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--c-text-muted);
  fill: none;
  stroke-width: 2;
  transition: transform var(--duration-med) var(--ease-out), stroke var(--duration-fast);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  stroke: var(--c-gold);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-body-inner {
  padding: 0 24px 20px;
  font-size: 0.86rem;
  color: var(--c-text-dim);
  line-height: 1.7;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-border);
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand-text {
  font-size: 0.84rem;
  color: var(--c-text-dim);
  line-height: 1.65;
  max-width: 32ch;
}

.footer-col-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.84rem;
  color: var(--c-text-dim);
  padding: 5px 0;
  transition: color var(--duration-fast), padding-left var(--duration-fast);
}

.footer-col a:hover {
  color: var(--c-gold);
  padding-left: 4px;
}

.footer-responsible {
  padding: 32px 0;
  border-bottom: 1px solid var(--c-border);
}

.footer-responsible-text {
  font-size: 0.82rem;
  color: var(--c-accent);
  line-height: 1.7;
  text-align: center;
  max-width: 72ch;
  margin: 0 auto;
  font-weight: 500;
  padding: 20px 24px;
  background: rgba(199, 91, 42, 0.06);
  border: 1px solid rgba(199, 91, 42, 0.15);
  border-radius: var(--radius);
}

.footer-regulators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
}

.footer-regulators a {
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity var(--duration-fast) ease;
}

.footer-regulators a:hover {
  opacity: 0.9;
}

.footer-regulators img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.76rem;
  color: var(--c-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.76rem;
  color: var(--c-text-muted);
}

.age-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.age-popup-overlay.hidden {
  display: none;
}

.age-popup {
  background: var(--c-surface);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: popIn 0.4s var(--ease-out);
}

.age-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(199, 91, 42, 0.1);
  border: 2px solid var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--c-accent);
}

.age-popup h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.age-popup p {
  font-size: 0.88rem;
  color: var(--c-text-dim);
  line-height: 1.6;
  margin-bottom: 28px;
}

.age-confirm-btn {
  width: 100%;
  padding: 14px;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--duration-fast), transform var(--duration-fast);
}

.age-confirm-btn:hover {
  background: var(--c-accent-hover);
  transform: translateY(-1px);
}

.age-confirm-btn:active {
  transform: scale(0.98);
}

.cookie-bar {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  background: var(--c-surface);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 380px;
  width: calc(100% - 48px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  animation: slideUp 0.5s 0.5s var(--ease-out) both;
}

.cookie-bar.hidden {
  display: none;
}

.cookie-bar-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.cookie-bar-text {
  font-size: 0.8rem;
  color: var(--c-text-dim);
  line-height: 1.6;
  margin-bottom: 6px;
}

.cookie-bar-links {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.cookie-bar-links a {
  font-size: 0.74rem;
  color: var(--c-gold-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-btns {
  display: flex;
  gap: 8px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 12px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  border: 1px solid var(--c-border);
  background: transparent;
  color: var(--c-text-dim);
}

.cookie-btn:hover {
  border-color: var(--c-border-strong);
  color: var(--c-text);
}

.cookie-btn:active {
  transform: scale(0.97);
}

.cookie-btn-accept {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: var(--c-accent-hover);
  border-color: var(--c-accent-hover);
  color: #fff;
}

.cookie-settings-panel {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.cookie-setting-label {
  font-size: 0.78rem;
  color: var(--c-text-dim);
}

.cookie-toggle {
  position: relative;
  width: 36px;
  height: 20px;
  background: var(--c-surface-hover);
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid var(--c-border);
  transition: background var(--duration-fast) ease;
}

.cookie-toggle.on {
  background: var(--c-gold-dim);
  border-color: var(--c-gold-dim);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--duration-fast) var(--ease-out);
}

.cookie-toggle.on::after {
  transform: translateX(16px);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}

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

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.legal-page {
  padding-top: 120px;
  padding-bottom: var(--gap-section);
  min-height: 100dvh;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border);
}

.legal-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.legal-updated {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.legal-body {
  max-width: 760px;
}

.legal-body h2 {
  font-size: 1.15rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--c-gold);
  letter-spacing: -0.01em;
}

.legal-body p {
  font-size: 0.9rem;
  color: var(--c-text-dim);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-body a {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-callout {
  padding: 20px 24px;
  background: rgba(199, 91, 42, 0.06);
  border: 1px solid rgba(199, 91, 42, 0.15);
  border-radius: var(--radius);
  margin: 24px 0;
}

.legal-callout p {
  color: var(--c-accent);
  font-weight: 500;
  margin-bottom: 0;
}

.tp-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
}

.tp-hero-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
}

.tp-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.tp-hero p {
  font-size: 0.95rem;
  color: var(--c-text-dim);
  line-height: 1.7;
  max-width: 48ch;
}

.tp-hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.tp-members {
  padding: var(--gap-section) 0;
}

.tp-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.tp-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--duration-med) var(--ease-out), border-color var(--duration-fast) ease;
}

.tp-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-border-strong);
}

.tp-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(25%);
  transition: filter 0.4s ease;
}

.tp-card:first-child .tp-card-photo {
  aspect-ratio: 16/10;
}

.tp-card:hover .tp-card-photo {
  filter: grayscale(0%);
}

.tp-card-body {
  padding: 24px;
}

.tp-card-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
}

.tp-card-role {
  font-size: 0.78rem;
  color: var(--c-gold-dim);
  margin-top: 2px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.tp-card-bio {
  font-size: 0.84rem;
  color: var(--c-text-dim);
  line-height: 1.65;
  margin-top: 12px;
}

.tp-values {
  padding: var(--gap-section) 0;
  background: var(--c-bg-alt);
}

.tp-val-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.tp-val-item {
  padding: 28px 24px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: border-color var(--duration-fast) ease;
}

.tp-val-item:hover {
  border-color: var(--c-border-strong);
}

.tp-val-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.tp-val-desc {
  font-size: 0.84rem;
  color: var(--c-text-dim);
  line-height: 1.65;
}

.tp-contact {
  padding: var(--gap-section) 0;
  text-align: center;
}

.tp-contact-inner {
  max-width: 520px;
  margin: 0 auto;
}

.tp-contact-inner p {
  font-size: 0.92rem;
  color: var(--c-text-dim);
  line-height: 1.7;
  margin-top: 16px;
}

.tp-contact-cta {
  margin-top: 24px;
  display: inline-flex;
}

.game-page {
  padding-top: 80px;
  min-height: 100dvh;
}

.slot-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  padding: 24px 0;
  align-items: start;
}

.slot-machine {
  background: var(--c-surface);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.slot-machine::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold-dim), var(--c-accent), var(--c-gold-dim));
}

.slot-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.slot-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.slot-points {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 100px;
}

.slot-points-icon {
  width: 18px;
  height: 18px;
  fill: var(--c-gold);
}

.slot-points-val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-gold);
}

.slot-reels-frame {
  background: var(--c-bg);
  border: 2px solid var(--c-border-strong);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 24px;
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.slot-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slot-cell {
  width: 100%;
  aspect-ratio: 1;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: border-color var(--duration-med) ease, box-shadow var(--duration-med) ease;
}

.slot-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slot-cell.winning {
  border-color: var(--c-gold);
  box-shadow: 0 0 16px rgba(212, 168, 67, 0.25);
  animation: cellPulse 0.6s ease infinite alternate;
}

@keyframes cellPulse {
  from { box-shadow: 0 0 8px rgba(212, 168, 67, 0.15); }
  to { box-shadow: 0 0 20px rgba(212, 168, 67, 0.35); }
}

.slot-result {
  text-align: center;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.slot-result-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 6px 20px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--duration-med), transform var(--duration-med) var(--ease-out);
}

.slot-result-text.show {
  opacity: 1;
  transform: translateY(0);
}

.slot-result-text.win {
  color: var(--c-gold-bright);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
}

.slot-result-text.lose {
  color: var(--c-text-muted);
  background: rgba(107, 96, 84, 0.1);
  border: 1px solid var(--c-border);
}

.slot-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slot-bet-group {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--c-bg);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius);
  overflow: hidden;
}

.slot-bet-label {
  padding: 0 14px;
  font-size: 0.75rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--c-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.slot-bet-btn {
  width: 40px;
  height: 44px;
  background: var(--c-surface);
  border: none;
  border-left: 1px solid var(--c-border);
  color: var(--c-text);
  font-size: 1.1rem;
  font-family: var(--font-head);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-bet-btn:hover {
  background: var(--c-surface-hover);
  color: var(--c-gold);
}

.slot-bet-btn:active {
  transform: scale(0.95);
}

.slot-bet-val {
  width: 56px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-gold);
  border-left: 1px solid var(--c-border);
  border-right: 1px solid var(--c-border);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-spin-btn {
  height: 44px;
  padding: 0 36px;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--duration-fast), transform var(--duration-fast), box-shadow var(--duration-fast);
  letter-spacing: 0.04em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.slot-spin-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.slot-spin-btn:hover::after {
  transform: translateX(100%);
}

.slot-spin-btn:hover {
  background: var(--c-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(199, 91, 42, 0.3);
}

.slot-spin-btn:active {
  transform: translateY(0) scale(0.98);
}

.slot-spin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.slot-spin-btn:disabled::after {
  display: none;
}

.slot-presets {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}

.slot-preset {
  flex: 1;
  padding: 8px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--c-text-dim);
  cursor: pointer;
  text-align: center;
  transition: border-color var(--duration-fast), color var(--duration-fast), background var(--duration-fast);
}

.slot-preset:hover {
  border-color: var(--c-border-strong);
  color: var(--c-text);
}

.slot-preset.active {
  border-color: var(--c-gold-dim);
  color: var(--c-gold);
  background: rgba(212, 168, 67, 0.06);
}

.slot-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slot-panel {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
}

.slot-panel-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}

.paytable-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--c-border);
}

.paytable-row:last-child {
  border-bottom: none;
}

.paytable-symbols {
  display: flex;
  gap: 4px;
}

.paytable-sym {
  width: 28px;
  height: 28px;
  padding: 3px;
}

.paytable-sym img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.paytable-mult {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-gold);
}

.slot-rules-text {
  font-size: 0.8rem;
  color: var(--c-text-dim);
  line-height: 1.65;
}

.slot-rules-text p {
  margin-bottom: 8px;
}

.slot-rules-text p:last-child {
  margin-bottom: 0;
}

.slot-history {
  max-height: 180px;
  overflow-y: auto;
}

.slot-history::-webkit-scrollbar {
  width: 4px;
}

.slot-history::-webkit-scrollbar-track {
  background: transparent;
}

.slot-history::-webkit-scrollbar-thumb {
  background: var(--c-border-strong);
  border-radius: 2px;
}

.history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.78rem;
}

.history-row:last-child {
  border-bottom: none;
}

.history-bet {
  color: var(--c-text-muted);
}

.history-result {
  font-family: var(--font-head);
  font-weight: 600;
}

.history-result.positive {
  color: var(--c-gold);
}

.history-result.negative {
  color: var(--c-text-muted);
}

.slot-spinning .slot-cell img {
  animation: symbolBlur 0.08s linear infinite;
}

@keyframes symbolBlur {
  0% { transform: translateY(-4px); opacity: 0.6; }
  50% { transform: translateY(4px); opacity: 0.3; }
  100% { transform: translateY(-4px); opacity: 0.6; }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

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

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

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

  .adv-item.span-row {
    grid-row: auto;
  }

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

  .howwork-step:first-child {
    border-radius: var(--radius) 0 0 0;
  }

  .howwork-step:nth-child(2) {
    border-radius: 0 var(--radius) 0 0;
  }

  .howwork-step:nth-child(3) {
    border-radius: 0 0 0 var(--radius);
  }

  .howwork-step:last-child {
    border-radius: 0 0 var(--radius) 0;
  }

  .howwork-header {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

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

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

  .team-card:first-child {
    grid-column: span 2;
  }

  .team-card:first-child .team-photo {
    aspect-ratio: 21/9;
  }

  .slot-wrapper {
    grid-template-columns: 1fr;
  }

  .slot-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .tp-hero-inner {
    grid-template-columns: 1fr;
  }

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

  .tp-card:first-child .tp-card-photo {
    aspect-ratio: 16/10;
  }
}

@media (max-width: 768px) {
  :root {
    --gap-section: 64px;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .responsible-notice .wrap {
    flex-direction: column;
    gap: 12px;
  }

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

  .howwork-steps {
    grid-template-columns: 1fr;
  }

  .howwork-step,
  .howwork-step:first-child,
  .howwork-step:nth-child(2),
  .howwork-step:nth-child(3),
  .howwork-step:last-child {
    border-radius: 0;
  }

  .howwork-step:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .howwork-step:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .howwork-images {
    grid-template-columns: 1fr;
  }

  .howwork-images img {
    height: 200px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .team-card:first-child {
    grid-column: auto;
  }

  .team-card:first-child .team-photo {
    aspect-ratio: 4/3;
  }

  .review-card {
    width: 280px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-regulators {
    gap: 20px;
    flex-wrap: wrap;
  }

  .cookie-bar {
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 20px;
  }

  .age-popup {
    padding: 36px 28px;
  }

  .slot-machine {
    padding: 20px;
  }

  .slot-controls {
    flex-direction: column;
  }

  .slot-bet-group {
    width: 100%;
  }

  .slot-spin-btn {
    width: 100%;
  }

  .slot-sidebar {
    grid-template-columns: 1fr;
  }

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

  .tp-card:first-child .tp-card-photo {
    aspect-ratio: 3/4;
  }

  .tp-val-grid {
    grid-template-columns: 1fr;
  }

  .slot-presets {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

.section-desc + .section-desc {
  margin-top: 14px;
}
