:root {
  --glass-bg: rgba(255, 255, 255, 0.26);
  --glass-bg-hover: rgba(255, 255, 255, 0.38);
  --glass-bg-card: rgba(255, 255, 255, 0.32);
  --glass-bg-soft: rgba(255, 255, 255, 0.18);
  --glass-border: rgba(255, 255, 255, 0.50);
  --glass-border-soft: rgba(255, 255, 255, 0.35);
  --glass-border-strong: rgba(255, 255, 255, 0.70);
  --glass-blur: 18px;
  --glass-shadow: 0 12px 40px rgba(26, 26, 46, 0.08);
  --glass-shadow-sm: 0 4px 16px rgba(26, 26, 46, 0.05);
  --glass-shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  --title: #1A1A2E;
  --body: #4A4A68;
  --muted: #6E6E8B;
  --primary: #FF7A00;
  --primary-light: #FF9B40;
  --accent-purple: #D4A5FF;
  --accent-blue: #A0C4FF;
  --accent-pink: #FFB8B8;
  --accent-peach: #FFCBA4;
  --heart: #FF6B6B;
  --font-main: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "PingFang SC", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-main);
  color: var(--body);
  background: linear-gradient(135deg, #FFB8B8 0%, #FFCBA4 25%, #A0C4FF 55%, #D4A5FF 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

.aurora-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
  top: -10%;
  left: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #FFB8B8 0%, rgba(255, 184, 184, 0) 70%);
}

.blob-2 {
  top: 30%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #D4A5FF 0%, rgba(212, 165, 255, 0) 70%);
  animation-duration: 25s;
  animation-delay: -5s;
}

.blob-3 {
  bottom: -15%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #A0C4FF 0%, rgba(160, 196, 255, 0) 70%);
  animation-duration: 22s;
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, 40px) scale(1.08);
  }
  100% {
    transform: translate(-40px, 80px) scale(0.95);
  }
}

.page-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.glass-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  background: rgba(255, 255, 255, 0.30);
  border-bottom: 1px solid var(--glass-border-soft);
  z-index: 100;
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  column-gap: 14px;
  align-items: center;
}

.nav-inner > .brand-logo { grid-column: 1; }
.nav-inner > .nav-links { grid-column: 2; justify-self: center; }
.nav-inner > .language-menu { grid-column: 3; }
.nav-inner > .nav-actions { grid-column: 4; }
.nav-inner > .mobile-menu-btn { grid-column: 5; }

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--title);
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.brand-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #1A1A2E 0%, #4A4A68 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.language-menu {
  position: relative;
  display: block;
  min-width: 150px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 6px 18px rgba(58, 66, 112, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  color: var(--title);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.language-menu:hover {
  border-color: rgba(91, 110, 245, 0.28);
  background: rgba(255, 255, 255, 0.68);
}

.language-menu[open],
.language-menu:focus-within {
  border-color: rgba(91, 110, 245, 0.52);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(91, 110, 245, 0.12), 0 8px 22px rgba(58, 66, 112, 0.14);
}

.language-menu-trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 36px 0 42px;
  border-radius: inherit;
  color: var(--title);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  list-style: none;
  user-select: none;
}

.language-menu-trigger::-webkit-details-marker {
  display: none;
}

.language-menu-trigger:focus {
  outline: none;
}

.language-menu-trigger:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(91, 110, 245, 0.48);
}

.language-menu-icon,
.language-menu-chevron {
  position: absolute;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.language-menu-icon {
  left: 14px;
  opacity: 0.72;
}

.language-menu-chevron {
  right: 12px;
  width: 15px;
  height: 15px;
  opacity: 0.58;
  transition: transform 0.22s ease;
}

.language-menu[open] .language-menu-chevron {
  transform: rotate(180deg);
}

.language-current {
  white-space: nowrap;
}

.language-menu-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 130;
  min-width: 196px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 250, 247, 0.94), rgba(239, 245, 255, 0.92));
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  box-shadow: 0 18px 48px rgba(58, 66, 112, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform-origin: top right;
  animation: language-menu-in 0.18s ease-out;
}

.language-menu-popover::before {
  content: '';
  position: absolute;
  top: -5px;
  right: 26px;
  width: 10px;
  height: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(250, 249, 251, 0.94);
  transform: rotate(45deg);
}

.language-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  padding: 9px 11px 9px 13px;
  border-radius: 12px;
  color: var(--body);
  text-decoration: none;
  font-size: 14px;
  font-weight: 550;
  transition: color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--title);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
  transform: translateX(2px);
}

.language-option.is-current {
  color: #3d4272;
  background: linear-gradient(135deg, rgba(255, 191, 172, 0.34), rgba(156, 180, 255, 0.34));
  box-shadow: inset 0 0 0 1px rgba(113, 126, 211, 0.12);
  font-weight: 700;
}

.language-option-check,
.language-option-check-placeholder {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.language-option-check {
  fill: none;
  stroke: #606bd6;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes language-menu-in {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.site-main {
  flex: 1;
  margin: 56px auto;
  max-width: 720px;
  padding: 32px 24px;
}

.site-footer {
  padding: 24px;
  text-align: center;
}

#support-form { display: grid; gap: 16px; margin-top: 28px; }
#support-form label { display: grid; gap: 6px; font-weight: 600; }
#support-form input, #support-form select, #support-form textarea { font: inherit; padding: 10px; border-radius: 10px; border: 1px solid var(--glass-border-strong); }
#support-form textarea { min-height: 150px; resize: vertical; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--body);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--title);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta-btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--title);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(26, 26, 46, 0.15);
  transition: all 0.25s ease;
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.22);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.slogan-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--glass-shadow-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--title);
  letter-spacing: 2px;
}

.slogan-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

.hero-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--title);
}

.hero-title.hero-title-single-line {
  font-size: clamp(20px, 5vw, 42px);
  letter-spacing: -1px;
  white-space: nowrap;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #1A1A2E 0%, #FF7A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 16px;
  color: var(--body);
  max-width: 540px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.download-btn-apple {
  background: #000000;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.download-btn-apple:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  background: #151515;
}

.download-btn-apk {
  background: rgba(255, 255, 255, 0.40);
  border: 1px solid var(--glass-border-strong);
  color: var(--title);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-shadow);
}

.download-btn-apk:hover {
  background: rgba(255, 255, 255, 0.60);
  transform: translateY(-2px);
  box-shadow: var(--glass-shadow-lg);
}

.btn-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.btn-texts {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-subtitle {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-icon {
  color: #10B981;
}

.hero-showcase {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 340px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid var(--glass-border-strong);
  border-radius: 40px;
  padding: 16px;
  box-shadow: var(--glass-shadow-lg);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  position: relative;
  transform: perspective(1000px) rotateY(-4deg) rotateX(3deg);
  transition: transform 0.5s ease;
}

.phone-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 14px;
}

.mockup-status-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
}

.mockup-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--title);
}

.mockup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFB8B8, #A0C4FF);
  border: 1.5px solid #FFFFFF;
}

.mockup-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.glass-card {
  background: var(--glass-bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 18px;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-shadow-sm);
}

.intro-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.intro-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(255, 122, 0, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.intro-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--title);
}

.intro-section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--title);
  margin-top: 8px;
  margin-bottom: 4px;
}

.intro-text {
  font-size: 12px;
  color: var(--body);
  line-height: 1.5;
}

.tension-box {
  background: rgba(255, 107, 107, 0.10);
  border: 1px solid rgba(255, 107, 107, 0.25);
  border-radius: 12px;
  padding: 10px;
  margin-top: 8px;
}

.tension-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--heart);
  margin-bottom: 2px;
}

.tension-desc {
  font-size: 11px;
  color: var(--body);
}

.mockup-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.mockup-btn {
  flex: 1;
  padding: 10px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mockup-btn-primary {
  background: var(--title);
  color: #FFFFFF;
}

.mockup-btn-secondary {
  background: rgba(255, 255, 255, 0.5);
  color: var(--body);
}

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

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--title);
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--body);
}

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

.feature-card {
  background: var(--glass-bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--glass-bg-hover);
  box-shadow: var(--glass-shadow-lg);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--glass-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glass-shadow-sm);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--title);
}

.feature-desc {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
}

.flow-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.flow-step-card {
  background: var(--glass-bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-shadow);
  position: relative;
}

.step-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 44px;
  font-weight: 900;
  color: rgba(26, 26, 46, 0.08);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
}

.download-section-box {
  background: var(--glass-bg-card);
  border: 1px solid var(--glass-border-strong);
  border-radius: 36px;
  padding: 64px 40px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--glass-shadow-lg);
  text-align: center;
}

.download-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.download-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-shadow: var(--glass-shadow-sm);
  transition: all 0.3s ease;
}

.download-card:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow);
}

.download-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--title);
}

.download-card-desc {
  font-size: 13px;
  color: var(--body);
}

.download-btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}

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

.faq-item {
  background: var(--glass-bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-shadow-sm);
  transition: all 0.25s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  text-align: left;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--title);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: none;
  overflow: visible;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px 22px;
}

.js-ready .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
}

.js-ready .faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
}

.glass-footer {
  margin-top: auto;
  border-top: 1px solid var(--glass-border-soft);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-link {
  text-decoration: none;
  color: var(--body);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--title);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.legal-page-container {
  max-width: 860px;
  margin: 40px auto 80px;
  padding: 0 24px;
}

.legal-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--glass-border-strong);
  border-radius: 32px;
  padding: 48px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow-lg);
}

.legal-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--title);
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 13px;
  color: var(--muted);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.legal-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 10px;
}

.legal-p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 12px;
}

.legal-contact-link {
  color: var(--title);
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.legal-list {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

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

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--title);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--title);
  outline: none;
  transition: all 0.2s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

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

.submit-btn {
  background: var(--title);
  color: #FFFFFF;
  border: none;
  padding: 14px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.submit-btn:hover {
  background: #000000;
  transform: translateY(-1px);
}

.mobile-drawer {
  display: none;
}

@media (max-width: 960px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }
  .slogan-badge {
    align-self: center;
  }
  .hero-title {
    font-size: 42px;
  }
  .hero-desc {
    margin: 0 auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-meta-row {
    justify-content: center;
  }
  .flow-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .mobile-drawer {
    display: flex;
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--glass-shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 99;
  }
  .mobile-drawer.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  html:not(.js-ready) .mobile-drawer {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-drawer .nav-link {
    font-size: 16px;
    padding: 8px 0;
  }
  .legal-card {
    padding: 28px 20px;
  }
  .download-section-box {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 12px 14px;
  }
  .brand-icon {
    width: 36px;
    height: 36px;
  }
  .brand-name {
    display: none;
  }
  .language-menu {
    min-width: 132px;
    height: 40px;
    margin-left: auto;
    margin-right: 8px;
  }
  .language-menu-popover {
    min-width: 184px;
    max-width: calc(100vw - 28px);
  }
}
