/* Music Mule – One Page Business Site */

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #121212;
  --bg-card: #1a1a1a;
  --bg-elevated: #1e2a35;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-glow: rgba(59, 130, 246, 0.35);
  --success: #14532d;
  --success-light: #22c55e;
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --border: rgba(255, 255, 255, 0.08);
  --header-height: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Header & Navigation ── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.logo img {
  height: 44px;
  width: auto;
}

.logo span {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.navmenu > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navmenu > ul > li {
  position: relative;
}

.navmenu > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all var(--transition);
}

.navmenu > ul > li > a:hover,
.navmenu > ul > li > a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.navmenu .chevron {
  font-size: 0.65rem;
  transition: transform var(--transition);
}

.navmenu li:hover .chevron {
  transform: rotate(180deg);
}

.navmenu .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  min-width: 220px;
  width: max-content;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  box-shadow: var(--shadow);
  list-style: none;
}

.navmenu .submenu li {
  width: 100%;
  display: block;
}

.navmenu li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navmenu .submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  white-space: nowrap;
  padding: 10px 14px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  border-radius: 8px;
  transition: all var(--transition);
}

.navmenu .submenu a:hover,
.navmenu .submenu a.active {
  color: var(--text-primary);
  background: rgba(59, 130, 246, 0.1);
}

.navmenu .submenu a.active .arrow {
  opacity: 1;
}

.navmenu .submenu a .arrow {
  color: var(--accent);
  opacity: 0;
  transition: opacity var(--transition);
}

.navmenu .submenu a:hover .arrow {
  opacity: 1;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 60%, rgba(59, 130, 246, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 25%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(30, 42, 53, 0.9) 0%, transparent 70%),
    linear-gradient(165deg, #0f1a24 0%, #0a0a0a 55%, #050505 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/logo.png') center/40% no-repeat;
  opacity: 0.04;
  filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-text h1 span {
  color: var(--accent);
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn i {
  font-size: 1.05em;
  line-height: 1;
  flex-shrink: 0;
}

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

.phone-mockup {
  position: relative;
  width: 340px;
  background: linear-gradient(145deg, #2a2a2e 0%, #1a1a1c 100%);
  border-radius: 44px;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 80px var(--accent-glow);
  pointer-events: none;
  user-select: none;
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 6;
}

.phone-screen {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto auto;
  background: #000;
  border-radius: 34px;
  overflow: hidden;
  height: 680px;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  background: #000;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
}

.mock-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 14px 10px;
  background: #000;
}

.mock-logo {
  height: 22px;
  width: auto;
}

.mock-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
}

.mock-login-btn i {
  font-size: 0.65rem;
}

.mock-hero {
  position: relative;
  height: 168px;
  overflow: hidden;
}

.mock-hero-slider {
  position: absolute;
  inset: 0;
}

.mock-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: mockHeroSlide 25s infinite ease-in-out;
  will-change: opacity, transform;
}

.mock-hero-slide-1 {
  background-image: url('../img/mock/hero-slide-1.jpg');
  animation-delay: 0s;
}

.mock-hero-slide-2 {
  background-image: url('../img/mock/hero-slide-2.jpg');
  animation-delay: 5s;
}

.mock-hero-slide-3 {
  background-image: url('../img/mock/hero-slide-3.jpg');
  animation-delay: 10s;
}

.mock-hero-slide-4 {
  background-image: url('../img/mock/hero-slide-4.jpg');
  animation-delay: 15s;
}

.mock-hero-slide-5 {
  background-image: url('../img/mock/hero-slide-5.jpg');
  animation-delay: 20s;
}

@keyframes mockHeroSlide {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  4% {
    opacity: 1;
    transform: scale(1.04);
  }
  20% {
    opacity: 1;
    transform: scale(1);
  }
  24% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mock-hero-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .mock-hero-slide-1 {
    opacity: 1;
  }
}

.mock-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
}

.mock-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 14px 14px;
}

.mock-hero-title {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.mock-hero-sub {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.mock-search {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(28, 28, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 8px 12px;
  font-size: 0.62rem;
  color: #fff;
}

.mock-search i {
  font-size: 0.65rem;
  color: var(--accent);
}

.mock-search-icon {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.55) !important;
}

.mock-section {
  padding: 14px 0 8px;
  min-height: 0;
  overflow: hidden;
}

.mock-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 10px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.mock-view-all {
  color: var(--accent);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.mock-artists-scroll {
  display: flex;
  gap: 10px;
  padding: 0 14px 4px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  pointer-events: auto;
  touch-action: pan-x;
  cursor: grab;
  overscroll-behavior-x: contain;
}

.mock-artists-scroll.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.mock-artists-scroll.is-dragging .mock-artist-card {
  scroll-snap-align: none;
}

.mock-artists-scroll::-webkit-scrollbar {
  display: none;
}

.mock-artist-card {
  flex: 0 0 108px;
  scroll-snap-align: start;
}

.mock-artist-img {
  width: 108px;
  height: 108px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  margin-bottom: 7px;
}

.mock-artist-img-1 {
  background-image: url('../img/mock/artist-1.jpg');
}

.mock-artist-img-2 {
  background-image: url('../img/mock/artist-2.jpg');
}

.mock-artist-img-3 {
  background-image: url('../img/mock/artist-3.jpg');
}

.mock-artist-img-4 {
  background-image: url('../img/mock/hero-slide-1.jpg');
}

.mock-artist-img-5 {
  background-image: url('../img/mock/hero-slide-2.jpg');
}

.mock-artist-img-6 {
  background-image: url('../img/mock/hero-slide-3.jpg');
}

.mock-artist-img-7 {
  background-image: url('../img/mock/hero-slide-4.jpg');
}

.mock-artist-img-8 {
  background-image: url('../img/mock/hero-slide-5.jpg');
}

.mock-artist-img-9 {
  background-image: url('../img/mock/hero-concert.jpg');
}

.mock-artist-img-10 {
  background-image: url('../img/mock/artist-1.jpg');
}

.mock-artist-card h4 {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
  white-space: nowrap;
}

.mock-artist-time {
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1px;
}

.mock-artist-venue {
  font-size: 0.48rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-cta-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 12px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #1a3050 0%, #122640 100%);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.mock-cta-icon {
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.mock-cta-text {
  flex: 1;
  min-width: 0;
}

.mock-cta-text strong {
  display: block;
  font-size: 0.56rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.mock-cta-text span {
  display: block;
  font-size: 0.46rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.35;
}

.mock-cta-btn {
  flex-shrink: 0;
  padding: 6px 12px;
  background: var(--accent);
  border-radius: 50px;
  color: #fff;
  font-size: 0.52rem;
  font-weight: 700;
}

.mock-tab-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 6px 6px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.46rem;
  font-weight: 500;
}

.mock-tab i {
  font-size: 0.82rem;
}

.mock-tab.active {
  color: #fff;
}

.mock-tab.active i {
  color: var(--accent);
}

.phone-home-indicator {
  width: 110px;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  margin: 4px auto 8px;
}

.faq-question .icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-question .icon i {
  font-size: 1rem;
  display: block;
}

.app-download-close i {
  font-size: 14px;
  line-height: 1;
}

.mobile-toggle i {
  font-size: 1.4rem;
  line-height: 1;
}

.scroll-top i {
  font-size: 28px;
  line-height: 0;
  font-weight: bold;
}


/* ── Section backgrounds (dark theme) ── */

.section::before,
.section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section::after {
  opacity: 0.35;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.hero::before,
.hero::after {
  display: none;
}

#why-download::before {
  background:
    radial-gradient(ellipse 70% 55% at 100% 100%, rgba(59, 130, 246, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(30, 42, 53, 0.7) 0%, transparent 50%),
    linear-gradient(160deg, #0d1117 0%, #0a0a0a 45%, #121820 100%);
}

#features::before {
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(59, 130, 246, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 90% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #101820 50%, #0a0a0a 100%);
}

#features::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

#download::before {
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 10% 90%, rgba(30, 42, 53, 0.8) 0%, transparent 50%),
    radial-gradient(ellipse 45% 35% at 90% 10%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0c1218 0%, #15202c 42%, #0a0a0a 100%);
}

#download::after {
  opacity: 0.2;
}

#pricing::before {
  background:
    radial-gradient(ellipse 55% 45% at 0% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #111827 50%, #0a0a0a 100%);
}

#pricing::after {
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(59, 130, 246, 0.04) 40%,
    rgba(59, 130, 246, 0.04) 40.5%,
    transparent 40.5%
  );
  opacity: 0.6;
  mask-image: none;
}

#testimonials::before {
  background:
    radial-gradient(ellipse 65% 55% at 5% 40%, rgba(59, 130, 246, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 95% 60%, rgba(251, 191, 36, 0.06) 0%, transparent 50%),
    linear-gradient(200deg, #101418 0%, #0a0a0a 60%, #0f1419 100%);
}

#faq::before {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 100%, rgba(30, 42, 53, 0.6) 0%, transparent 50%),
    linear-gradient(180deg, #0c1014 0%, #0a0a0a 100%);
}

#about::before {
  background:
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(59, 130, 246, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(30, 42, 53, 0.65) 0%, transparent 50%),
    linear-gradient(25deg, #0a0a0a 0%, #121820 55%, #0a0a0a 100%);
}

#about::after {
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 40px,
    rgba(59, 130, 246, 0.02) 40px,
    rgba(59, 130, 246, 0.02) 41px
  );
  opacity: 0.5;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
}

#contact::before {
  background:
    radial-gradient(ellipse 50% 45% at 0% 0%, rgba(59, 130, 246, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 100%, rgba(99, 102, 241, 0.12) 0%, transparent 55%),
    linear-gradient(160deg, #0f1419 0%, #0a0a0a 50%, #101820 100%);
}

#privacy::before {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, #0e1218 0%, #0a0a0a 100%);
}

#terms::before {
  background:
    radial-gradient(ellipse 60% 45% at 100% 0%, rgba(99, 102, 241, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(30, 42, 53, 0.55) 0%, transparent 50%),
    linear-gradient(220deg, #0a0a0a 0%, #111827 50%, #0a0a0a 100%);
}

#terms::after {
  background-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.03) 50%,
    transparent 100%
  );
  background-size: 100% 100%;
  opacity: 1;
  mask-image: none;
}

#sitemap::before {
  background:
    radial-gradient(ellipse 65% 50% at 50% 100%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #101820 100%);
}


/* ── Why Download ── */

.why-download {
  background: transparent;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ── Download Section ── */

.download-section {
  background: transparent;
  text-align: center;
}

.download-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.download-badges a {
  display: inline-block;
  transition: transform var(--transition);
}

.download-badges a:hover {
  transform: scale(1.05);
}

.download-badges img {
  height: 54px;
}

.download-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

.download-steps h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.download-steps p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ── Pricing ── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 900;
  margin: 20px 0;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-features {
  text-align: left;
  margin: 28px 0;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--success-light);
  font-weight: 700;
}

/* ── Testimonials ── */

.testimonials {
  background: transparent;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── FAQ ── */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ── About ── */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.stat-card .number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ── Contact ── */

.contact-section {
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-grid > * {
  min-width: 0;
}

.contact-info {
  position: relative;
  z-index: 1;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-form {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-required-legend {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 5px 10px;
  text-align: right;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.28);
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.85),
    0 -1px 0 rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.22);
  border-radius: 6px;
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.45),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.form-required-legend .required-mark {
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.9),
    0 -1px 0 rgba(255, 100, 100, 0.15);
}

.form-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.form-label-row label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  line-height: 1;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.required-mark {
  color: #ef4444;
  font-weight: 700;
  margin-top: 8px;
  font-size: 1.6rem;
  transition: opacity 0.2s ease;
}

label .required-mark.required-mark-hidden {
  display: none;
}

.form-required-legend-text {
  color: rgba(160, 150, 150, 0.8);
  text-shadow: 1px 1px 0 #EEE, 0 0 0 #000, 1px 1px 0 #EEE;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.form-group input:not([type="hidden"]),
.form-group select {
  height: 46px;
  line-height: 1.25;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-color: var(--bg-secondary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

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

.form-group input.input-invalid,
.form-group textarea.input-invalid,
.form-group select.input-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.25);
}

.form-group input.input-invalid:focus,
.form-group textarea.input-invalid:focus,
.form-group select.input-invalid:focus {
  border-color: #ef4444;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  display: none;
}

.form-alert.success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  color: var(--success-light);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-alert.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ── Legal (Privacy & Terms) ── */

.legal-section {
  background: transparent;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
  color: var(--text-primary);
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ── Site Map ── */

.sitemap-section {
  background: transparent;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.sitemap-col h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.sitemap-col ul {
  list-style: none;
}

.sitemap-col li {
  margin-bottom: 10px;
}

.sitemap-col a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.sitemap-col a i {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.sitemap-col a:hover {
  color: var(--accent);
}

.sitemap-xml-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sitemap-xml-note i {
  color: var(--accent);
  margin-right: 6px;
}

.sitemap-xml-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Footer ── */

.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── Scroll to Top (like baittracker.com) ── */

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--accent);
  background-image: radial-gradient(
      93% 87% at 87% 89%,
      rgba(0, 0, 0, 0.23) 0%,
      transparent 86.18%
    ),
    radial-gradient(
      66% 66% at 26% 20%,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0) 69.79%,
      rgba(255, 255, 255, 0) 100%
    );
  box-shadow: inset -3px -3px 9px rgba(255, 255, 255, 0.25),
    inset 0px 3px 9px rgba(255, 255, 255, 0.3),
    inset 0px 1px 1px rgba(255, 255, 255, 0.6),
    inset 0px -8px 36px rgba(0, 0, 0, 0.3),
    inset 0px 1px 5px rgba(255, 255, 255, 0.6),
    2px 19px 31px rgba(0, 0, 0, 0.2);
  border: 0;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s;
  text-decoration: none;
}

.scroll-top:hover {
  background-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

body.cookie-banner-open .scroll-top.active {
  bottom: 160px;
}

/* ── Responsive ── */

@media (max-width: 992px) {
  .hero-content,
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .phone-mockup {
    width: 280px;
  }

  .phone-screen {
    height: 580px;
  }

  .mock-hero {
    height: 140px;
  }

  .mock-artist-card {
    flex: 0 0 90px;
  }

  .mock-artist-img {
    width: 90px;
    height: 90px;
  }

  .download-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .navmenu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .navmenu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navmenu > ul {
    flex-direction: column;
    align-items: stretch;
  }

  .navmenu .submenu {
    position: static;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    margin-top: 4px;
    display: none;
  }

  .navmenu .submenu li {
    width: 100%;
  }

  .navmenu .submenu a {
    white-space: nowrap;
    width: 100%;
  }

  .navmenu li.submenu-open .submenu {
    display: flex;
  }

  .section {
    padding: 70px 0;
  }

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

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

/* ── Cookie consent ── */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: 20px;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 28px;
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cookie-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.cookie-banner-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 14px;
  color: var(--accent);
  font-size: 1.4rem;
}

.cookie-banner-text h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.cookie-banner-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 11px 20px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.cookie-banner[hidden],
.cookie-modal[hidden],
.cookie-modal-overlay[hidden] {
  display: none !important;
  pointer-events: none !important;
}

.cookie-banner:not(.cookie-banner--visible) {
  pointer-events: none;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 10002;
  width: calc(100% - 32px);
  max-width: 520px;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: translate(-50%, -48%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-modal--visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

body.cookie-modal-open {
  overflow: hidden;
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}

.cookie-modal-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-modal-header h2 i {
  color: var(--accent);
}

.cookie-modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-modal-close:hover {
  color: var(--text-primary);
  border-color: rgba(59, 130, 246, 0.4);
}

.cookie-modal-body {
  padding: 20px 24px;
  overflow-y: auto;
}

.cookie-modal-intro {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.cookie-category p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-always-on {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  transition: background var(--transition);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--accent);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-toggle input:focus-visible + .cookie-toggle-slider {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cookie-modal-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}

.cookie-modal-footer .cookie-btn {
  width: 100%;
}

@media (max-width: 900px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .cookie-btn {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .cookie-banner {
    padding: 12px;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-actions .cookie-btn {
    width: 100%;
  }
}

.float-right {
  float: right;
  padding-right: 20px;
}

/* ── Error pages (404) ── */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(59, 130, 246, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, #0f1419 0%, #0a0a0a 100%);
}

.error-page-content {
  text-align: center;
  padding: 40px 24px;
  max-width: 480px;
}

.error-page-logo {
  display: inline-block;
  margin-bottom: 32px;
}

.error-page-logo img {
  height: 72px;
  width: auto;
}

.error-page-code {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.error-page-content h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.error-page-text {
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}
