/*
 * mein.site styles
 * Developer: Madara — https://t.me/Madara1x
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0e17;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f0f4ff;
  --muted: rgba(200, 210, 230, 0.6);
  --games: #ff6b4a;
  --sites: #3dd6c8;
  --logs: #f5b942;
  --radius: 20px;
  --radius-sm: 12px;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

/* Animated home background — space */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(30, 40, 90, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(80, 40, 120, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(40, 80, 120, 0.2) 0%, transparent 45%),
    linear-gradient(180deg, #030510 0%, #060912 45%, #0a0e17 100%);
  pointer-events: none;
}

.bg-nebula {
  position: absolute;
  inset: -25% -15%;
  filter: blur(80px);
  opacity: 0.45;
}

.bg-nebula__cloud {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  will-change: transform;
}

.bg-nebula__cloud--1 {
  width: 55%;
  height: 45%;
  top: 8%;
  left: 10%;
  background: radial-gradient(circle, rgba(61, 214, 200, 0.35) 0%, rgba(61, 214, 200, 0.08) 45%, transparent 70%);
  animation: nebula-drift-1 22s ease-in-out infinite alternate;
}

.bg-nebula__cloud--2 {
  width: 50%;
  height: 40%;
  top: 35%;
  right: 5%;
  background: radial-gradient(circle, rgba(155, 125, 255, 0.3) 0%, rgba(100, 80, 180, 0.1) 50%, transparent 70%);
  animation: nebula-drift-2 26s ease-in-out infinite alternate-reverse;
}

.bg-nebula__cloud--3 {
  width: 40%;
  height: 35%;
  bottom: 10%;
  left: 25%;
  background: radial-gradient(circle, rgba(61, 120, 214, 0.25) 0%, transparent 65%);
  animation: nebula-drift-3 18s ease-in-out infinite alternate;
}

.bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 75% at 50% 45%, transparent 20%, rgba(3, 5, 16, 0.85) 100%);
}

@keyframes nebula-drift-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(6%, 4%) scale(1.08); }
}

@keyframes nebula-drift-2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-8%, -5%) rotate(5deg); }
}

@keyframes nebula-drift-3 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(5%, -6%) scale(1.05); }
}

.bg-glow--1 {
  width: 480px;
  height: 480px;
  background: rgba(61, 214, 200, 0.12);
  top: -120px;
  left: -100px;
}

.bg-glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 74, 0.1);
  bottom: 10%;
  right: -80px;
}

.bg-glow--3 {
  width: 320px;
  height: 320px;
  background: rgba(245, 185, 66, 0.08);
  top: 40%;
  left: 30%;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid var(--border);
}

.brand-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1px;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.header-contact:hover {
  background: var(--surface-hover);
  border-color: rgba(61, 214, 200, 0.35);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 48px;
}

.hero--space {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-bottom: 40px;
}

.hero--space .hero-copy {
  position: relative;
}

.hero--space .hero-title {
  text-shadow: 0 0 40px rgba(61, 214, 200, 0.15);
}

.hero-visual {
  position: relative;
  flex-shrink: 0;
}

.hero-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 340px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(245, 185, 66, 0.45);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(245, 185, 66, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  background: #111;
  animation: hero-frame-glow 4s ease-in-out infinite alternate;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.hero-visual:hover .hero-img {
  transform: scale(1.04);
}

@keyframes hero-frame-glow {
  0% {
    border-color: rgba(245, 185, 66, 0.35);
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.55),
      0 0 30px rgba(245, 185, 66, 0.08),
      0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  }
  100% {
    border-color: rgba(255, 180, 80, 0.65);
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.6),
      0 0 50px rgba(245, 185, 66, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  }
}

.hero-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  padding: 5px 12px;
  background: #1a2332;
  border: 1px solid rgba(61, 214, 200, 0.4);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #3dd6c8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #3dd6c8;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  box-shadow: 0 0 8px #3dd6c8;
}

.hero-badge--inline {
  position: static;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}

.hero-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sites);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 420px;
}

/* Cards */
.main {
  flex: 1;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cards--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.cards--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  background: var(--surface-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.card-icon {
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

.card-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.card-arrow {
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform 0.25s ease, color 0.25s ease;
}

.card:hover .card-arrow {
  transform: translate(3px, -3px);
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.7;
  transition: opacity 0.25s ease, height 0.25s ease;
}

.card:hover .card-accent {
  opacity: 1;
  height: 4px;
}

.card--games .card-accent { background: linear-gradient(90deg, var(--games), #ff9a7a); }
.card--games:hover { border-color: rgba(255, 107, 74, 0.35); }
.card--games:hover .card-arrow { color: var(--games); }

.card--sites .card-accent { background: linear-gradient(90deg, var(--sites), #7ae8df); }
.card--sites:hover { border-color: rgba(61, 214, 200, 0.35); }
.card--sites:hover .card-arrow { color: var(--sites); }

.card--logs .card-accent { background: linear-gradient(90deg, var(--logs), #ffd06a); }
.card--logs:hover { border-color: rgba(245, 185, 66, 0.35); }
.card--logs:hover .card-arrow { color: var(--logs); }

.card--fullz .card-accent { background: linear-gradient(90deg, #f5b942, #ff8c42); }
.card--fullz:hover { border-color: rgba(245, 185, 66, 0.35); }
.card--fullz:hover .card-arrow { color: #f5b942; }

/* Footer */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--sites);
}

/* Service pages */
.service-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.service-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--text);
}

.service-header {
  text-align: center;
  margin-bottom: 36px;
}

.service-chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.service-page--games .service-chip {
  background: rgba(255, 107, 74, 0.15);
  color: var(--games);
  border: 1px solid rgba(255, 107, 74, 0.3);
}

.service-page--sites .service-chip {
  background: rgba(61, 214, 200, 0.12);
  color: var(--sites);
  border: 1px solid rgba(61, 214, 200, 0.3);
}

.service-page--logs .service-chip {
  background: rgba(245, 185, 66, 0.12);
  color: var(--logs);
  border: 1px solid rgba(245, 185, 66, 0.3);
}

.service-hero {
  width: 140px;
  height: 140px;
  border-radius: 24px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 2px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.service-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.service-subtitle {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}

.service-content {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.service-item:hover {
  background: var(--surface-hover);
}

.service-item-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.service-page--games .service-item-num {
  background: rgba(255, 107, 74, 0.15);
  color: var(--games);
}

.service-page--sites .service-item-num {
  background: rgba(61, 214, 200, 0.12);
  color: var(--sites);
}

.service-page--logs .service-item-num {
  background: rgba(245, 185, 66, 0.12);
  color: var(--logs);
}

.service-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-item p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.service-page--logs {
  max-width: 680px;
  width: 100%;
}

.service-page--logs .service-hero {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Logs catalog */
.logs-catalog {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
  width: 100%;
}

.logs-category {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.logs-category-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--logs);
  text-align: center;
}

.logs-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.logs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 96px;
  padding: 16px 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 185, 66, 0.15);
  border-radius: 14px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.logs-item:hover {
  background: rgba(245, 185, 66, 0.08);
  border-color: rgba(245, 185, 66, 0.35);
  transform: translateY(-2px);
}

.logs-item img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 5px;
}

.logs-item span {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  word-break: break-word;
  max-width: 100%;
}

/* Center incomplete last row (7 items → 4+3) */
.logs-grid--bank {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.logs-grid--bank .logs-item {
  grid-column: span 3;
}

.logs-grid--bank .logs-item:nth-child(5) {
  grid-column: 2 / span 3;
}

.logs-grid--bank .logs-item:nth-child(6) {
  grid-column: 5 / span 3;
}

.logs-grid--bank .logs-item:nth-child(7) {
  grid-column: 8 / span 3;
}

.logs-grid--vcc,
.logs-grid--merchant {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 520px) {
  .logs-grid--bank {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logs-grid--bank .logs-item,
  .logs-grid--bank .logs-item:nth-child(5),
  .logs-grid--bank .logs-item:nth-child(6),
  .logs-grid--bank .logs-item:nth-child(7) {
    grid-column: auto;
  }

  .logs-grid--vcc,
  .logs-grid--merchant {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-actions {
  text-align: center;
}

/* Contact links */
.contact-links {
  margin-bottom: 28px;
}

.contact-links-title {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 14px;
}

.contact-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.contact-link:hover {
  background: var(--surface-hover);
  border-color: rgba(61, 214, 200, 0.3);
  transform: translateY(-2px);
}

.contact-link-icon {
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-link-icon img,
.link-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.tg-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.header-contact .tg-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.contact-link-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.contact-link-value {
  font-size: 0.82rem;
  font-weight: 600;
  word-break: break-all;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--bg);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-page--games .cta-btn {
  background: linear-gradient(135deg, var(--games), #ff9a7a);
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.25);
}

.service-page--sites .cta-btn {
  background: linear-gradient(135deg, var(--sites), #7ae8df);
  box-shadow: 0 8px 24px rgba(61, 214, 200, 0.2);
}

.service-page--logs .cta-btn {
  background: linear-gradient(135deg, var(--logs), #ffd06a);
  box-shadow: 0 8px 24px rgba(245, 185, 66, 0.2);
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* Header nav */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  gap: 2px;
}

.lang-switch__btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-switch__btn:hover {
  color: var(--text);
}

.lang-switch__btn.is-active {
  background: rgba(61, 214, 200, 0.18);
  color: var(--sites);
}

.header-link {
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.header-link:hover {
  background: var(--surface-hover);
  border-color: rgba(245, 185, 66, 0.35);
  transform: translateY(-1px);
}

/* FAQ page */
.service-page--faq {
  max-width: 760px;
}

.service-chip--faq {
  background: rgba(160, 130, 255, 0.12);
  color: #b8a0ff;
  border: 1px solid rgba(160, 130, 255, 0.3);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}

.faq-item[open] {
  background: var(--surface-hover);
  border-color: rgba(160, 130, 255, 0.25);
}

.faq-question {
  padding: 18px 48px 18px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.2s, color 0.2s;
}

.faq-item[open] .faq-question::after {
  content: "−";
  color: #b8a0ff;
}

.faq-answer {
  padding: 0 20px 18px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.faq-answer p + p {
  margin-top: 8px;
}

.faq-answer strong {
  color: var(--text);
  font-weight: 600;
}

.cta-btn--faq {
  background: linear-gradient(135deg, #9b7dff, #b8a0ff);
  box-shadow: 0 8px 24px rgba(155, 125, 255, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .bg-nebula__cloud {
    animation: none;
  }

  .bg-canvas {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero,
  .hero--space {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 24px;
  }

  .hero-desc {
    margin: 0 auto;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .contact-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .header-contact {
    padding: 10px 14px;
    font-size: 0.82rem;
  }
}
