:root {
  color-scheme: dark;
  --bg: #05070c;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-strong: rgba(255, 255, 255, 0.08);
  --text: #f5f7fb;
  --muted: #9aa0b5;
  --accent: #ff4d6d;
  --accent-strong: #ffd166;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 25px 40px rgba(0, 0, 0, 0.4);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #11182b 0%, #05070c 45%);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

canvas#snowCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.snow-toggle {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 10;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(5, 7, 12, 0.85);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(10px);
}

.snow-toggle[aria-pressed='false'] {
  border-color: rgba(255, 255, 255, 0.25);
  opacity: 0.7;
}

.snow-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.snow-toggle:hover {
  transform: translateY(-2px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 48px 5vw 80px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Russo One', 'Inter', sans-serif;
  color: var(--text);
  text-decoration: none;
  padding: 4px;
  border-radius: 14px;
}

.logo-image {
  width: 161px;
  height: 161px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45));
}

.nav-links {
  display: flex;
  gap: 16px;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 10px 20px;
  background: rgba(5, 7, 12, 0.4);
  transition: border 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  border-color: var(--accent);
  background: rgba(255, 77, 109, 0.1);
  transform: translateY(-1px);
}

.nav-link--primary {
  border-color: var(--accent);
  background: rgba(255, 77, 109, 0.15);
}

.nav-link--primary:hover {
  border-color: var(--accent-strong);
  background: rgba(255, 209, 102, 0.2);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.hero-video {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-card {
  display: block;
  width: 100%;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  background: var(--bg-card);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px rgba(255, 77, 109, 0.3);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  background: var(--bg-card-strong);
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.15);
}

.play-button svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.video-label svg {
  color: #ff0000;
}

.video-info p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.hero-content--buy {
  max-width: 640px;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-strong);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 16px;
}

.description {
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn,
.download-card a,
.pricing button {
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 600;
  padding: 14px 28px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-btn {
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #0b0d16;
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.ghost-btn {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.section {
  padding: 64px 5vw;
}

.section-header {
  max-width: 700px;
  margin-bottom: 32px;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 8px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 109, 0.4);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
}

.mode-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mode-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0d16;
  transition: all 0.3s ease;
}

.mode-card:hover .mode-icon {
  transform: scale(1.1) rotate(5deg);
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.about-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 209, 102, 0.5);
  box-shadow: var(--shadow);
}

.about-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 209, 102, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-strong);
}

.about-card h3 {
  font-size: 1.3rem;
  margin: 0;
}

.about-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 77, 109, 0.4);
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 12px;
}

.faq-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0d16;
  flex-shrink: 0;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--text);
}

.faq-answer {
  padding-left: 76px;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.faq-answer a {
  color: var(--accent-strong);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.faq-answer a:hover {
  border-bottom-color: var(--accent-strong);
}

.faq-answer strong {
  color: var(--accent-strong);
  font-weight: 700;
}

.gallery-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.gallery-slider {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
  min-width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: rgba(5, 7, 12, 0.9);
  backdrop-filter: blur(10px);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 2;
}

.gallery-nav:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-color: var(--accent);
  transform: scale(1.1);
  color: #0b0d16;
}

.gallery-nav:active {
  transform: scale(0.95);
}

.gallery-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: scale(1);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.2);
}

.gallery-dot.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-color: var(--accent-strong);
  width: 16px;
  height: 16px;
}

.hero--minimal {
  padding: 24px 5vw;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 209, 102, 0.5);
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0d16;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin: 0;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.bg-dark {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 200px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b0d16;
}

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

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.step-arrow {
  color: var(--accent-strong);
  flex-shrink: 0;
}

.centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.text-strike {
  text-decoration: line-through;
  opacity: 0.6;
}

.text-accent {
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 1.3em;
}

.promo-banner-modern {
  margin-top: 24px;
  padding: 20px 28px;
  background: rgba(255, 209, 102, 0.1);
  border: 2px dashed rgba(255, 209, 102, 0.4);
  border-radius: 16px;
  display: inline-block;
}

.promo-content {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--accent-strong);
}

.promo-content svg {
  flex-shrink: 0;
}

.promo-text {
  font-size: 0.9rem;
  margin: 0 0 4px 0;
}

.purchase-card-modern {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.purchase-main {
  background: var(--bg-card-strong);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow);
}

.purchase-form-modern {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.purchase-form-modern h3 {
  font-size: 1.4rem;
  margin: 0 0 8px 0;
}

.form-group-modern {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-modern label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.form-group-modern label svg {
  color: var(--accent-strong);
}

.form-group-modern input {
  border-radius: 14px;
  border: 2px solid var(--border);
  background: rgba(5, 7, 12, 0.6);
  color: var(--text);
  padding: 14px 16px;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-group-modern input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(5, 7, 12, 0.8);
}


.agreement-modern {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

.agreement-modern input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
}

.agreement-modern a {
  color: var(--accent-strong);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.agreement-modern a:hover {
  border-bottom-color: var(--accent-strong);
}

.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.1rem;
  padding: 18px 32px;
  width: 100%;
}

.order-summary {
  background: var(--bg-card-strong);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
  height: fit-content;
  position: sticky;
  top: 24px;
}

.order-summary h3 {
  font-size: 1.3rem;
  margin: 0 0 20px 0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: var(--muted);
}

.summary-item.discount {
  color: var(--accent-strong);
}

.summary-price {
  font-weight: 600;
}

.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.total-price {
  color: var(--accent-strong);
  font-size: 1.8rem;
}

.summary-features {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.summary-feature svg {
  color: var(--accent-strong);
  flex-shrink: 0;
}

.security-badge {
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 209, 102, 0.1);
  border: 1px solid rgba(255, 209, 102, 0.3);
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.security-badge svg {
  color: var(--accent-strong);
  flex-shrink: 0;
  margin-top: 2px;
}

.security-badge p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.security-badge .small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.download-card,
.price-card,
.purchase-card {
  padding: 24px 32px;
  background: var(--bg-card-strong);
  border-radius: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
}

.download-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.download-card-enhanced {
  padding: 32px;
  background: var(--bg-card-strong);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.download-header {
  display: flex;
  gap: 20px;
  align-items: center;
}

.download-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0d16;
  flex-shrink: 0;
}

.download-header h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.platform-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.platform-info svg {
  opacity: 0.7;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.req-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.req-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.req-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 77, 109, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-strong);
  flex-shrink: 0;
}

.req-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.req-value {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.download-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  padding: 16px 32px;
}

.download-btn svg {
  transition: transform 0.3s ease;
}

.download-btn:hover svg {
  transform: translateY(2px);
}

.download-info {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.download-size,
.download-version {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.requirements {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.requirements li::before {
  content: '• ';
  color: var(--accent-strong);
}

.price-card {
  text-align: center;
  flex-direction: column;
  gap: 8px;
}

.price-label {
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.price-old {
  font-size: 1.2rem;
  text-decoration: line-through;
  opacity: 0.6;
}

.price-new {
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.purchase-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.purchase-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.promo-banner {
  margin-top: 24px;
  padding: 16px 20px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.promo-timer {
  font-family: 'Russo One', 'Inter', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--accent-strong);
}

.price-discount {
  font-weight: 600;
  color: var(--accent-strong);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
}

.form-group input {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(5, 7, 12, 0.6);
  color: var(--text);
  padding: 14px 16px;
  font-size: 1rem;
  transition: border 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
}

.helper-text {
  font-size: 0.85rem;
  color: var(--muted);
}

.agreement {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.agreement a {
  color: var(--accent-strong);
}

.discount-panel {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 24px;
  background: rgba(5, 7, 12, 0.45);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: stretch;
}

.discount-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--muted);
}

.discount-pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  width: fit-content;
}

.discount-price {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.support-grid div {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.footer {
  padding: 32px 5vw;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

.footer-links a {
  color: inherit;
  margin-left: 18px;
  text-decoration: none;
}

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

  .hero-video {
    order: -1;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    gap: 18px;
  }

  .snow-toggle {
    bottom: 16px;
    left: 16px;
  }

  .download-card,
  .price-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-card-enhanced {
    padding: 20px;
  }

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

  .download-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-actions {
    flex-direction: column;
    width: 100%;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
  }

  .faq-question {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .faq-answer {
    padding-left: 0;
    padding-top: 12px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
    gap: 16px;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .purchase-card-modern {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
    order: -1;
  }

  .purchase-main {
    padding: 20px;
  }

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

  .gallery-container {
    flex-direction: column;
  }

  .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
  }

  .gallery-nav-prev {
    left: 10px;
  }

  .gallery-nav-next {
    right: 10px;
  }

  .gallery-slider {
    width: 100%;
  }

}

