:root {
  --primary: #2563eb;
  --primary-dark: #0d9488;
  --primary-light: #38bdf8;
  --accent: #0d9488;
  --gold: #f59e0b;
  --bg: #f4f6fb;
  --bg-elevated: #ffffff;
  --text: #111827;
  --text-muted: #6b7280;
  --border: #e4e8f0;
  --shadow: 0 24px 60px rgba(37, 99, 235, 0.14);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --radius: 18px;
  --radius-lg: 24px;
  --max-width: 1120px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.25s, box-shadow 0.25s, backdrop-filter 0.25s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand img,
.footer-icon,
.cta-icon {
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.22);
}

.brand img {
  width: 40px;
  height: 40px;
}

.footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.cta-icon {
  margin: 0 auto 1.5rem;
  display: block;
}

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.is-active {
  color: var(--primary);
  font-weight: 600;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lang-switcher-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.lang-select {
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 2rem 0.45rem 0.85rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lang-select:hover,
.lang-select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.legal-lang-notice {
  background: #fff8e6;
  border: 1px solid #fde68a;
  color: #92400e;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.legal-lang-notice a {
  color: var(--primary-dark);
  font-weight: 700;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.25s;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 0%, rgba(37, 99, 235, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(13, 148, 136, 0.12), transparent 50%),
    linear-gradient(180deg, #eef4ff 0%, var(--bg) 70%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.38);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: white;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.btn-secondary:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--primary-dark);
}

.hero-web-hint,
.cta-web-hint {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.cta-web-hint {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  background: var(--text);
  color: white;
  border-radius: 12px;
  font-size: 0.75rem;
  opacity: 0.85;
  cursor: default;
  text-decoration: none;
}

a.store-badge {
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
}

a.store-badge:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.store-badge--web {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 1;
}

.store-badge--soon {
  opacity: 0.55;
  cursor: default;
  background: #374151;
  border: 1px dashed rgba(255, 255, 255, 0.25);
}

.store-badge strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
}

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

.phone-mock {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 9 / 19;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 50px 100px rgba(37, 99, 235, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #0f172a;
}

.phone-screenshots {
  position: relative;
  width: 100%;
  height: 100%;
}

.phone-screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  user-select: none;
}

.phone-screenshot.active {
  opacity: 1;
}

.phone-screenshot-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.phone-screenshot-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.phone-screenshot-dots span.active {
  background: #fff;
  transform: scale(1.15);
}

.app-preview {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.75rem 0.75rem 0;
}

.app-preview-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.65rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
}

.app-preview-header img {
  border-radius: 8px;
}

.app-preview-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}

.app-preview-card.highlight {
  border-color: rgba(37, 99, 235, 0.25);
  background: #eff6ff;
}

.app-preview-card strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}

.app-preview-card small {
  color: var(--text-muted);
  font-size: 0.68rem;
}

.app-preview-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.app-preview-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-preview-avatar.teal {
  background: linear-gradient(135deg, var(--primary-dark), #14b8a6);
}

.app-preview-nav {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.55rem 0.25rem 0.65rem;
  background: white;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  opacity: 0.85;
}

.app-preview-nav .active {
  opacity: 1;
  transform: scale(1.1);
}

.phone-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(40px);
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
}

.floating-card .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.floating-card .icon.blue { background: #dbeafe; }
.floating-card .icon.teal { background: #ccfbf1; }

.floating-card.card-1 {
  top: 15%;
  left: -8%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 20%;
  right: -10%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── Sections ─── */
section {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-subtitle {
  margin-inline: auto;
}

/* App tabs section */
.tabs-section {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.tabs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tab-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.tab-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(37, 99, 235, 0.2);
}

.tab-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.tab-card-icon svg {
  width: 22px;
  height: 22px;
}

.tab-card-icon.blue { background: #dbeafe; color: var(--primary); }
.tab-card-icon.teal { background: #ccfbf1; color: var(--primary-dark); }
.tab-card-icon.gold { background: #fef3c7; color: #b45309; }

.tab-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.tab-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.steps-5 {
  grid-template-columns: repeat(5, 1fr);
}

.step {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-icon.blue { background: #dbeafe; }
.feature-icon.teal { background: #ccfbf1; }
.feature-icon.gold { background: #fef3c7; }

.features-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.feature h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Pricing */
.pricing-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, #eef2ff 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.pricing-card--featured {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow);
}

.pricing-card--premium {
  border-top: 4px solid var(--primary);
}

.pricing-card--platinum {
  border-top: 4px solid var(--gold);
}

.pricing-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-card-head {
  margin-bottom: 1.5rem;
  padding-right: 5rem;
}

.pricing-tier {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-tagline {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.pricing-prices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  align-items: baseline;
}

.pricing-price-row--yearly {
  padding: 1rem;
  border-radius: 14px;
  background: var(--bg);
}

.pricing-price-main {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  grid-column: 1;
}

.pricing-amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-period {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.pricing-billing,
.pricing-equiv {
  grid-column: 1;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.pricing-save {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.12);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--text);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-feature-included {
  font-weight: 700;
  color: var(--primary);
}

.pricing-feature-included::before {
  color: var(--primary) !important;
}

.pricing-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
}

/* Safety band */
.safety {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.safety h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.safety p {
  opacity: 0.92;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.safety-cta {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: white !important;
}

.safety-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.safety-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  opacity: 0.95;
}

.safety-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* CTA */
.cta {
  text-align: center;
  padding: 5rem 0;
}

.cta-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-dark));
}

.cta-box h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
}

/* Footer */
.footer {
  background: #0f1117;
  color: #9ca3af;
  padding: 3.5rem 0 2rem;
}

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

.footer .brand {
  color: white;
  margin-bottom: 1rem;
}

.footer-about {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 22rem;
}

.footer h4 {
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}

/* Legal pages */
.legal-page {
  padding: 7rem 0 4rem;
  max-width: 720px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal-page .updated {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-page ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* Support page */
.page-support {
  background: var(--bg);
}

.support-hero {
  position: relative;
  padding: 7.5rem 0 2.5rem;
  overflow: hidden;
}

.support-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 0%, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 45% at 95% 5%, rgba(13, 148, 136, 0.1), transparent 50%),
    linear-gradient(180deg, #eef4ff 0%, var(--bg) 85%);
  z-index: 0;
}

.support-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.support-hero-inner h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.support-hero-inner h1 .gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.support-hero-inner .hero-lead {
  margin-bottom: 1.75rem;
}

.support-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.support-quick-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.15rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  min-width: min(100%, 240px);
}

a.support-quick-link:hover {
  transform: translateY(-2px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}

.support-quick-link.is-static {
  cursor: default;
}

.support-quick-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.support-quick-link strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.support-quick-link small {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.1rem;
}

.support-main {
  padding: 0 0 5rem;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.support-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
}

.support-panel-head {
  margin-bottom: 1.75rem;
}

.support-panel-head h2 {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.support-panel-head p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.required-mark {
  color: var(--primary);
  font-weight: 700;
}

.support-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.support-alert[hidden] {
  display: none;
}

.support-alert.is-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.support-alert.is-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.support-form {
  display: grid;
  gap: 1.25rem;
}

.support-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.support-form .field {
  display: grid;
  gap: 0.45rem;
}

.support-form label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: #9ca3af;
}

.support-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.support-form textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.6;
}

.support-form .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.support-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
  font-size: 1.0625rem;
  padding: 1rem 1.75rem;
}

.support-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.support-aside {
  display: grid;
  gap: 1rem;
}

.support-tip {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.support-tip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.support-tip-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.support-tip-icon.pink { background: #dbeafe; }
.support-tip-icon.teal { background: #ccfbf1; }
.support-tip-icon.gold { background: #fef3c7; }

.support-tip h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.support-tip p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.support-tip-legal {
  background: transparent;
  border-style: dashed;
  box-shadow: none;
  padding: 1rem 1.25rem;
}

.support-tip-legal:hover {
  transform: none;
  box-shadow: none;
}

.support-tip-legal p {
  font-size: 0.875rem;
  margin: 0;
}

.support-tip-legal a {
  color: var(--primary);
  font-weight: 600;
}

.support-tip-legal a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .store-badges {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .floating-card.card-1 { left: 0; }
  .floating-card.card-2 { right: 0; }

  .steps,
  .steps-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .tabs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .pricing-card-head {
    padding-right: 0;
    padding-top: 2rem;
  }

  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-form-row {
    grid-template-columns: 1fr;
  }

  .support-hero {
    padding-top: 6.5rem;
    text-align: center;
  }

  .support-hero-inner {
    margin-inline: auto;
  }

  .support-hero-inner .hero-lead {
    margin-inline: auto;
  }

  .support-quick-links {
    justify-content: center;
  }

  .safety {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

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

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
    border-top: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .lang-switcher-label {
    display: none;
  }

  .nav-inner .lang-switcher {
    order: 2;
    margin-left: auto;
    margin-right: 0.5rem;
  }

  .steps,
  .steps-5,
  .tabs-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .floating-card {
    display: none;
  }
}
