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

/* ─── CSS Variables ─── */
:root {
  --color-bg-primary: #0A0A0A;
  --color-bg-surface: #141414;
  --color-bg-elevated: #1A1A1A;
  --color-accent-red: #E50914;
  --color-accent-red-dark: #B0060F;
  --color-accent-gold: #FFD700;
  --color-accent-gold-dark: #D4A500;
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #B3B3B3;
  --color-text-muted: #666666;
  --color-border: #2A2A2A;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-muted);
}

/* ─── Utilities ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.container-sm {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-md {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.text-left {
  text-align: left;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

/* ─── Gradient Text ─── */
.gradient-text-red {
  background: linear-gradient(135deg, #E50914, #FF4D58);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-green {
  background: linear-gradient(135deg, #00C853, #00E676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Glow Effects ─── */
.glow-red {
  box-shadow: 0 0 60px rgba(229, 9, 20, .3), 0 0 120px rgba(229, 9, 20, .1);
}

.glow-gold {
  box-shadow: 0 0 40px rgba(255, 215, 0, .2), 0 0 80px rgba(255, 215, 0, .1);
}

/* ─── Animations ─── */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(229, 9, 20, .3);
  }

  50% {
    box-shadow: 0 0 40px rgba(229, 9, 20, .6);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.animated-gradient {
  background: linear-gradient(-45deg, #0A0A0A, #1A0A0A, #0A0A1A, #0A0A0A);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

.animate-fade-in-up {
  animation: fadeInUp .8s ease-out forwards;
}

.animate-bounce {
  animation: bounce 1.5s ease-in-out infinite;
}

.animation-delay-200 {
  animation-delay: .2s;
  opacity: 0;
}

.animation-delay-400 {
  animation-delay: .4s;
  opacity: 0;
}

.animation-delay-600 {
  animation-delay: .6s;
  opacity: 0;
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, .8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(42, 42, 42, .5);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .navbar-inner {
    padding: 0 1.5rem;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.navbar-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.navbar-brand span {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-accent-red);
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-links a {
  font-size: .875rem;
  color: var(--color-text-secondary);
  transition: color .2s;
}

.navbar-links a:hover {
  color: #fff;
}

.navbar-links .btn-download {
  background: var(--color-accent-red);
  color: #fff;
  padding: .5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all .2s;
}

.navbar-links .btn-download:hover {
  background: var(--color-accent-red-dark);
  transform: scale(1.05);
}

/* ─── Section Badge ─── */
.section-badge {
  display: inline-block;
  padding: .375rem 1rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-badge--red {
  background: rgba(229, 9, 20, .1);
  color: var(--color-accent-red);
  border: 1px solid rgba(229, 9, 20, .2);
}

.section-badge--gold {
  background: rgba(255, 215, 0, .1);
  color: var(--color-accent-gold);
  border: 1px solid rgba(255, 215, 0, .2);
}

.section-badge--green {
  background: rgba(0, 200, 83, .1);
  color: #00E676;
  border: 1px solid rgba(0, 200, 83, .2);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}

.hero-bg-glow-1 {
  position: absolute;
  top: 25%;
  left: -128px;
  width: 384px;
  height: 384px;
  background: rgba(229, 9, 20, .1);
  border-radius: 50%;
  filter: blur(128px);
}

.hero-bg-glow-2 {
  position: absolute;
  bottom: 25%;
  right: -128px;
  width: 384px;
  height: 384px;
  background: rgba(229, 9, 20, .05);
  border-radius: 50%;
  filter: blur(128px);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    gap: 5rem;
  }
}

.hero-content {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    margin: 0 0 2rem;
  }
}

/* ─── Stats ─── */
.stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .stats {
    justify-content: flex-start;
  }
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 1.875rem;
  }
}

.stat-label {
  font-size: .75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .25rem;
}

/* ─── Phone Mockup ─── */
.phone-wrapper {
  flex-shrink: 0;
  position: relative;
}

.phone-glow-1 {
  position: absolute;
  inset: -48px;
  background: rgba(229, 9, 20, .2);
  border-radius: 50%;
  filter: blur(100px);
}

.phone-glow-2 {
  position: absolute;
  right: -64px;
  top: 33%;
  width: 192px;
  height: 192px;
  background: rgba(229, 9, 20, .3);
  border-radius: 50%;
  filter: blur(80px);
}

.phone-glow-3 {
  position: absolute;
  left: -48px;
  bottom: 25%;
  width: 128px;
  height: 128px;
  background: rgba(229, 9, 20, .15);
  border-radius: 50%;
  filter: blur(60px);
}

.phone-glow-gold-1 {
  position: absolute;
  inset: -48px;
  background: rgba(255, 215, 0, .15);
  border-radius: 50%;
  filter: blur(100px);
}

.phone-glow-gold-2 {
  position: absolute;
  right: -64px;
  top: 33%;
  width: 192px;
  height: 192px;
  background: rgba(255, 215, 0, .25);
  border-radius: 50%;
  filter: blur(80px);
}

.phone-glow-gold-3 {
  position: absolute;
  left: -48px;
  bottom: 25%;
  width: 128px;
  height: 128px;
  background: rgba(255, 215, 0, .1);
  border-radius: 50%;
  filter: blur(60px);
}

.phone-frame {
  position: relative;
  width: 260px;
}

@media (min-width: 640px) {
  .phone-frame {
    width: 300px;
  }
}

.phone-body {
  position: relative;
  background: #1C1C1E;
  border-radius: 3rem;
  padding: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .6), 0 0 40px rgba(229, 9, 20, .15), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.phone-body--gold {
  box-shadow: 0 25px 60px rgba(0, 0, 0, .6), 0 0 40px rgba(255, 215, 0, .12), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

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

.phone-screen {
  border-radius: 2.2rem;
  overflow: hidden;
  background: #0D0D0D;
  border: 1px solid rgba(255, 255, 255, .05);
  position: relative;
  isolation: isolate;
}

.phone-screen-top {
  height: 32px;
  width: 100%;
  background: #0D0D0D;
  border-radius: 2.2rem 2.2rem 0 0;
}

.phone-screen img {
  width: 100%;
  height: auto;
  border-radius: 1.8rem;
}

.phone-reflection {
  position: absolute;
  inset: 0;
  border-radius: 3rem;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .06) 0%, transparent 50%, rgba(0, 0, 0, .1) 100%);
}

/* ─── Scroll Indicator ─── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .5;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.scroll-dot {
  width: 6px;
  height: 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .5);
}

/* ─── Store Buttons ─── */
.store-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

@media (min-width: 640px) {
  .store-buttons {
    flex-direction: row;
  }
}

.store-buttons a {
  justify-content: center;
}

@media (min-width: 1024px) {
  .store-buttons {
    justify-content: flex-start;
  }

  .store-buttons a {
    justify-content: flex-start;
  }
}

.store-btn {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #fff;
  color: #000;
  padding: .75rem 1.5rem;
  border-radius: .75rem;
  font-weight: 600;
  transition: all .2s;
}

.store-btn:hover {
  background: #f3f3f3;
  transform: scale(1.05);
}

.store-btn:active {
  transform: scale(.95);
}

.store-btn svg {
  width: 24px;
  height: 24px;
}

/* ─── Content Sections ─── */
.section {
  padding: 6rem 0;
  position: relative;
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

.section-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 96px;
  background: linear-gradient(to bottom, transparent, var(--color-border));
}

.section--red-gradient {
  background: linear-gradient(to bottom, transparent, rgba(229, 9, 20, .02), transparent);
}

.section--gold-gradient {
  background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, .02), transparent);
}

.section--green-gradient {
  background: linear-gradient(to bottom, transparent, rgba(0, 200, 83, .02), transparent);
}

.section-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .section-flex {
    flex-direction: row;
  }
}

.section-flex--reverse .section-content {
  order: 1;
}

.section-flex--reverse .phone-wrapper {
  order: 2;
}

@media (min-width: 1024px) {
  .section-flex--reverse .section-content {
    order: 2;
  }

  .section-flex--reverse .phone-wrapper {
    order: 1;
  }
}

.section-content {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .section-content {
    text-align: left;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .section-subtitle {
    margin: 0 0 2.5rem;
  }
}

/* ─── Feature Cards Grid ─── */
.features-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .features-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) {
  .features-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all .3s;
}

.feature-card:hover {
  border-color: rgba(229, 9, 20, .4);
  background: var(--color-bg-elevated);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(229, 9, 20, .05);
}

.feature-card .icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}

.feature-card p {
  font-size: .875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ─── Premium Feature Card ─── */
.premium-card {
  background: linear-gradient(to bottom right, rgba(26, 20, 0, .6), var(--color-bg-surface));
  border: 1px solid rgba(255, 215, 0, .2);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all .3s;
}

.premium-card:hover {
  border-color: rgba(255, 215, 0, .5);
  transform: translateY(-4px);
}

.premium-card .icon {
  font-size: 1.875rem;
  margin-bottom: .75rem;
}

.premium-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent-gold);
  margin-bottom: .25rem;
}

.premium-card p {
  font-size: .875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Premium grid */
.premium-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .premium-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─── Premium CTA Button ─── */
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(to right, var(--color-accent-gold), #FFA500);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all .2s;
  border: none;
  cursor: pointer;
}

.btn-premium:hover {
  box-shadow: 0 10px 30px rgba(255, 215, 0, .2);
  transform: scale(1.05);
}

/* ─── CTA Section ─── */
.cta-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 8rem 0;
  }
}

.cta-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(229, 9, 20, .04), transparent);
  pointer-events: none;
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(229, 9, 20, .1);
  border-radius: 50%;
  filter: blur(160px);
}

.cta-inner {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  position: relative;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-store {
  display: flex;
  justify-content: center;
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 3rem 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: center;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

@media (min-width: 768px) {
  .footer-brand {
    align-items: flex-start;
    justify-self: start;
  }
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.footer-brand-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-brand-logo span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-accent-red);
}

.footer-tagline {
  font-size: .875rem;
  color: var(--color-text-muted);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: .25rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all .2s;
}

.footer-social a:hover {
  color: #fff;
  background: rgba(229, 9, 20, .15);
  border-color: rgba(229, 9, 20, .4);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .875rem;
}

.footer-links a {
  color: var(--color-text-muted);
  transition: color .2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

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

/* ─── Language Selector ─── */
.lang-selector {
  position: relative;
}

@media (min-width: 768px) {
  .lang-selector {
    justify-self: end;
  }
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: .5rem;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  font-size: .875rem;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: border-color .2s;
  font-family: var(--font-sans);
}

.lang-btn:hover {
  border-color: rgba(229, 9, 20, .4);
}

.lang-btn svg {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}

.lang-btn.open svg {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: .5rem;
  width: 12rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: .75rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .5);
  padding: .5rem 0;
  z-index: 50;
  max-height: 16rem;
  overflow-y: auto;
}

.lang-dropdown.show {
  display: block;
}

.lang-dropdown a {
  display: block;
  width: 100%;
  padding: .5rem 1rem;
  font-size: .875rem;
  color: var(--color-text-secondary);
  transition: all .15s;
}

.lang-dropdown a:hover {
  background: var(--color-bg-surface);
  color: #fff;
}

.lang-dropdown a.active {
  color: var(--color-accent-red);
  background: rgba(229, 9, 20, .05);
  font-weight: 600;
}

/* ─── Legal Pages (Premium Design) ─── */
.legal-page {
  min-height: 100vh;
  padding-top: 64px;
  padding-bottom: 5rem;
  background: radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.05) 0%, transparent 50%);
}

.legal-header {
  padding: 4rem 1rem 3rem;
  text-align: center;
  position: relative;
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, var(--color-text-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .legal-header h1 {
    font-size: 3.5rem;
  }
}

.legal-badge-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.legal-badge-updated::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-accent-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-accent-red);
}

.legal-back-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all 0.2s;
  margin-bottom: 2rem;
}

.legal-back-nav:hover {
  color: var(--color-accent-red);
  transform: translateX(-4px);
}

.legal-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.legal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-accent-red), transparent);
  opacity: 0.5;
}

@media (min-width: 768px) {
  .legal-card {
    padding: 4rem;
  }
}

.legal-section {
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out forwards;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-section h2::before {
  content: "";
  width: 4px;
  height: 1.5rem;
  background: var(--color-accent-red);
  border-radius: 99px;
}

.legal-section p,
.legal-section li {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.legal-section ul {
  padding-left: 0.5rem;
  list-style: none;
}

.legal-section ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
}

.legal-section ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent-red);
  font-weight: 900;
  opacity: 0.8;
}

.legal-section strong {
  color: #fff;
  font-weight: 700;
  background: rgba(229, 9, 20, 0.1);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  margin-right: 0.2rem;
}

/* ─── Contact Page (Premium Design) ─── */
.contact-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  text-align: center;
}

@media (min-width: 640px) {
  .contact-card {
    padding: 4rem;
  }
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: rgba(229, 9, 20, 0.1);
  color: var(--color-accent-red);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.2);
}

.contact-icon svg {
  width: 40px;
  height: 40px;
}

.contact-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: left;
  transition: all 0.3s;
}

.contact-box:hover {
  border-color: rgba(229, 9, 20, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.contact-box h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.contact-box p {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.contact-box .email-link {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent-red);
  margin-top: 1rem;
  transition: all 0.2s;
}

.contact-box .email-link:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.contact-box .note {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: 1rem;
  margin-bottom: 0;
}