/* ═══════════════════════════════════════════════════════════════════
   WaSeen — Shared Stylesheet
   Design tokens extracted from the Flutter app
   ═══════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --primary: #20BF62;
  --primary-light: #2ED573;
  --primary-dark: #1A9E50;
  --primary-glow: rgba(32, 191, 98, 0.25);
  --primary-glow-strong: rgba(32, 191, 98, 0.45);

  --bg: #0A0A0A;
  --bg-elevated: #111111;
  --bg-card: #1A1A1A;
  --bg-card-hover: #222222;

  --text: #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-muted: #888888;
  --text-dim: #555555;

  --accent-gold: #EFB028;
  --danger: #E05252;

  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  --glass-bg: rgba(26, 26, 26, 0.55);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 24px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 50px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1200px;
  --container-narrow: 800px;
}

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

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

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select { font-family: inherit; }

/* ── Custom Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-card); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* ── Layout ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ── Background Ambient Effects ────────────────────────────────── */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.ambient-orb--primary {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  top: -200px;
  left: -150px;
  animation: float-orb-1 20s ease-in-out infinite;
}

.ambient-orb--secondary {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(32, 191, 98, 0.12) 0%, transparent 70%);
  bottom: 10%;
  right: -200px;
  animation: float-orb-2 25s ease-in-out infinite;
}

.ambient-orb--accent {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(224, 82, 82, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-orb-3 18s ease-in-out infinite;
}

/* ── Particle System ───────────────────────────────────────────── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
  animation: particle-float linear infinite;
}

.particle:nth-child(odd) { background: rgba(32, 191, 98, 0.6); width: 2px; height: 2px; }
.particle:nth-child(even) { background: rgba(32, 191, 98, 0.35); }
.particle:nth-child(3n) { background: rgba(255, 255, 255, 0.15); width: 2px; height: 2px; }

.particle:nth-child(1)  { left: 5%;  animation-duration: 22s; animation-delay: 0s; }
.particle:nth-child(2)  { left: 12%; animation-duration: 18s; animation-delay: 2s; }
.particle:nth-child(3)  { left: 20%; animation-duration: 25s; animation-delay: 4s; }
.particle:nth-child(4)  { left: 30%; animation-duration: 20s; animation-delay: 1s; }
.particle:nth-child(5)  { left: 40%; animation-duration: 24s; animation-delay: 3s; }
.particle:nth-child(6)  { left: 50%; animation-duration: 19s; animation-delay: 5s; }
.particle:nth-child(7)  { left: 60%; animation-duration: 23s; animation-delay: 2s; }
.particle:nth-child(8)  { left: 70%; animation-duration: 21s; animation-delay: 0s; }
.particle:nth-child(9)  { left: 80%; animation-duration: 26s; animation-delay: 4s; }
.particle:nth-child(10) { left: 90%; animation-duration: 17s; animation-delay: 1s; }
.particle:nth-child(11) { left: 15%; animation-duration: 28s; animation-delay: 6s; }
.particle:nth-child(12) { left: 35%; animation-duration: 22s; animation-delay: 3s; }
.particle:nth-child(13) { left: 55%; animation-duration: 20s; animation-delay: 7s; }
.particle:nth-child(14) { left: 75%; animation-duration: 24s; animation-delay: 5s; }
.particle:nth-child(15) { left: 95%; animation-duration: 19s; animation-delay: 2s; }

/* ── Navigation ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav__logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.nav__logo span {
  background: linear-gradient(135deg, var(--text) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: var(--transition);
}

.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

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

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

.lang-select__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
}

.lang-select__trigger:hover {
  border-color: var(--border-hover);
  background: var(--bg-card);
}

.lang-select__trigger svg {
  width: 14px;
  height: 14px;
  transition: var(--transition-fast);
}

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

.lang-select__flag {
  font-size: 1.1em;
  line-height: 1;
}

.lang-select__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 100;
  max-height: 360px;
  overflow-y: auto;
}

.lang-select.open .lang-select__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-select__option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  text-align: left;
}

.lang-select__option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.lang-select__option.active {
  background: rgba(32, 191, 98, 0.12);
  color: var(--primary);
}

/* ── Mobile Menu Toggle ────────────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero Section ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(32, 191, 98, 0.1);
  border: 1px solid rgba(32, 191, 98, 0.2);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  animation: fade-in-up 0.8s ease both;
}

.hero__badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fade-in-up 0.8s ease 0.15s both;
}

.hero__title .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #6EE7A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fade-in-up 0.8s ease 0.3s both;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease 0.45s both;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn--primary:hover {
  background: var(--primary-light);
  box-shadow: 0 8px 40px var(--primary-glow-strong);
  transform: translateY(-2px);
}

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

.btn--outline:hover {
  border-color: var(--primary);
  background: rgba(32, 191, 98, 0.06);
  transform: translateY(-2px);
}

.btn svg, .btn img {
  width: 20px;
  height: 20px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

/* ── Section ───────────────────────────────────────────────────── */
.section {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(32, 191, 98, 0.08);
  border: 1px solid rgba(32, 191, 98, 0.15);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section__subtitle {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Features Grid ─────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 191, 98, 0.3), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(32, 191, 98, 0.25);
  background: rgba(26, 26, 26, 0.75);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(32, 191, 98, 0.08);
}

.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(32, 191, 98, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 1.5rem;
  border: 1px solid rgba(32, 191, 98, 0.15);
}

.feature-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Steps (How it Works) ──────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(32, 191, 98, 0.2), var(--primary));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: 0 0 30px rgba(32, 191, 98, 0.15);
  position: relative;
}

.step__number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(32, 191, 98, 0.15);
}

.step__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ── CTA Section ───────────────────────────────────────────────── */
.cta {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
}

.cta__box {
  position: relative;
  padding: 64px 48px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, rgba(32, 191, 98, 0.12) 0%, rgba(32, 191, 98, 0.04) 100%);
  border: 1px solid rgba(32, 191, 98, 0.2);
  text-align: center;
  overflow: hidden;
}

.cta__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(32, 191, 98, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
}

.cta__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  position: relative;
}

.cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.footer__brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.footer__brand-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer__link:hover { color: var(--primary); }

.footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ── Legal Page Styles ─────────────────────────────────────────── */
.legal {
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

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

.legal__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.legal__updated {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.legal__section {
  margin-bottom: 40px;
}

.legal__section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
}

.legal__section-content {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal__section-content p {
  margin-bottom: 12px;
}

.legal__section-content ul {
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal__section-content ul li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 6px;
  list-style: none;
}

.legal__section-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

.legal__contact {
  margin-top: 48px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.legal__contact a {
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition-fast);
}

.legal__contact a:hover { color: var(--primary-light); }

/* ── Scroll Reveal ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ── Keyframe Animations ──────────────────────────────────────── */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes float-orb-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, 60px) scale(1.1); }
  66% { transform: translate(-40px, 30px) scale(0.95); }
}

@keyframes float-orb-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, -40px) scale(1.05); }
  66% { transform: translate(40px, -20px) scale(0.9); }
}

@keyframes float-orb-3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { gap: 20px; }
  .steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    animation: fade-in-up 0.3s ease;
  }

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

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

  .hero { padding: 100px 20px 60px; min-height: auto; padding-top: 140px; }
  .hero__title { font-size: 2rem; }

  .section { padding: 60px 0; }
  .section__header { margin-bottom: 40px; }

  .cta__box { padding: 40px 24px; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }

  .legal { padding: 100px 0 60px; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .cta__buttons { flex-direction: column; align-items: center; }

  .lang-select__dropdown {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    max-height: 60vh;
  }
}
