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

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

:root {
  --bg: #07070f;
  --bg2: #0d0d1a;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --primary: #6366f1;
  --primary-light: #818cf8;
  --secondary: #a78bfa;
  --accent: #22d3ee;
  --text: #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #64748b;
  --grad: linear-gradient(135deg, #6366f1, #a78bfa, #22d3ee);
  --grad-subtle: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(167,139,250,0.1));
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(99,102,241,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── Noise texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* ── Glow orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 { width: 600px; height: 600px; background: rgba(99,102,241,0.12); top: -200px; left: -100px; }
.orb-2 { width: 400px; height: 400px; background: rgba(167,139,250,0.1); top: 200px; right: -100px; }
.orb-3 { width: 300px; height: 300px; background: rgba(34,211,238,0.08); bottom: -100px; left: 30%; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  background: rgba(7,7,15,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.nav-logo .logo-icon {
  width: 34px;
  height: 34px;
  background: var(--grad);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

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

.nav-links a {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface-hover); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); background: var(--surface); border-color: var(--border-strong); }

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(99,102,241,0.3);
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(99,102,241,0.4); }

.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border: 1px solid rgba(99,102,241,0.4);
}
.btn-outline:hover { background: rgba(99,102,241,0.1); border-color: var(--primary); }

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius-sm);
}

/* ── Layout ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section { padding: 100px 0; }

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 24px;
}

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

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

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.5px; }

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  margin-bottom: 24px;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-3);
}

.hero-trust .check {
  width: 18px; height: 18px;
  background: rgba(34,211,238,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--accent);
}

.hero-visual {
  position: relative;
}

.dashboard-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dash-header h4 { font-size: 14px; font-weight: 600; color: var(--text-2); }

.dash-metric {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}

.dash-change {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 100px;
  font-weight: 600;
}
.up { background: rgba(34,197,94,0.12); color: #4ade80; }
.down { background: rgba(239,68,68,0.12); color: #f87171; }

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  margin-top: 16px;
}

.mini-bar {
  flex: 1;
  background: rgba(99,102,241,0.3);
  border-radius: 3px;
  transition: all 0.3s;
}
.mini-bar.active { background: var(--primary); }

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.stat-item {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 14px;
}

.stat-item .label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.stat-item .val { font-size: 20px; font-weight: 700; }

.floating-card {
  position: absolute;
  background: rgba(13,13,26,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 600;
}

.floating-card-1 {
  top: -20px;
  right: -30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-card-2 {
  bottom: -20px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fc-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ── Section headers ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--primary);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

.section-head { text-align: center; margin-bottom: 64px; }
.section-head .section-label { justify-content: center; }
.section-head .section-sub { margin: 0 auto; }

/* ── Features ── */
.features { background: var(--bg2); position: relative; overflow: hidden; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-subtle);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.feature-icon {
  width: 48px; height: 48px;
  background: rgba(99,102,241,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  border: 1px solid rgba(99,102,241,0.2);
}

.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ── How it works ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), var(--border-strong), transparent);
}

.step-card { text-align: center; padding: 0 16px; }

.step-num {
  width: 56px; height: 56px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  background: var(--bg);
}

.step-num.active {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(99,102,241,0.4);
}

.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-2); }

/* ── Integrations ── */
.integrations { background: var(--bg2); }

.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.integration-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: default;
}

.integration-chip:hover {
  background: var(--surface-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.integration-chip .chip-icon { font-size: 20px; }

/* ── Contact / Form ── */
.contact { position: relative; }

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

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(99,102,241,0.05);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }

.required { color: #f87171; }

.contact-info { padding-top: 16px; }
.contact-info h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: var(--text-2); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child { border: none; }
.contact-detail .cd-icon { font-size: 20px; }
.contact-detail .cd-text { font-size: 14px; }
.contact-detail .cd-label { color: var(--text-3); font-size: 12px; }

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.15) 0%, transparent 70%);
}

.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; }
.cta-banner p { color: var(--text-2); font-size: 17px; margin-bottom: 32px; }

/* ── Footer ── */
footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
}

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

.footer-brand p {
  font-size: 14px;
  color: var(--text-3);
  margin-top: 12px;
  max-width: 220px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-3);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
}

/* ── Internal pages (terms, privacy) ── */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
}

.page-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; margin-bottom: 16px; }
.page-hero p { color: var(--text-2); font-size: 16px; }

.page-content {
  padding: 0 0 100px;
}

.prose {
  max-width: 780px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.prose h3 { font-size: 17px; font-weight: 600; margin: 28px 0 10px; }

.prose p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 16px; }

.prose ul, .prose ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.prose li { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 6px; }

.prose a { color: var(--primary-light); }
.prose a:hover { text-decoration: underline; }

.info-box {
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box p { color: var(--text); margin: 0; }

/* ── Login page ── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
  position: relative;
}

.login-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  width: 100%;
  max-width: 440px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow), var(--shadow-glow);
  position: relative;
  z-index: 1;
}

.login-logo {
  text-align: center;
  margin-bottom: 36px;
}

.login-logo .logo-icon {
  width: 52px; height: 52px;
  background: var(--grad);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: white;
  margin: 0 auto 14px;
}

.login-logo h1 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.login-logo p { font-size: 14px; color: var(--text-3); }

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--text-3);
  font-size: 12px;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn-social {
  width: 100%;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  margin-bottom: 10px;
  padding: 12px;
}
.btn-social:hover { background: var(--surface-hover); }

.login-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-3);
}

.login-footer a { color: var(--primary-light); }

.forgot { font-size: 13px; color: var(--primary-light); float: right; margin-top: 2px; }
.forgot:hover { text-decoration: underline; }

.form-row { display: flex; gap: 12px; }
.form-row .form-group { flex: 1; }

/* ── Notifications ── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1a1a2e;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  z-index: 999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 18px; }

/* ── Lang switch ── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 8px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  padding: 3px 5px;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.6px;
  transition: all 0.2s;
  line-height: 1;
}

.lang-btn.active {
  color: var(--primary-light);
  background: rgba(99,102,241,0.18);
}

.lang-btn:hover:not(.active) { color: var(--text-2); }

.lang-divider { color: var(--border-strong); font-size: 12px; user-select: none; }

/* ── Theme toggle ── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--surface-hover); border-color: var(--border-strong); }

/* ── Light theme ── */
html._light_init body,
body.light {
  --bg: #f5f6ff;
  --bg2: #eceffe;
  --surface: rgba(99,102,241,0.07);
  --surface-hover: rgba(99,102,241,0.12);
  --border: rgba(0,0,0,0.09);
  --border-strong: rgba(0,0,0,0.16);
  --text: #0d0e1a;
  --text-2: #454e6a;
  --text-3: #8590a6;
  --shadow: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 40px rgba(99,102,241,0.1);
  --grad-subtle: linear-gradient(135deg, rgba(99,102,241,0.07), rgba(167,139,250,0.05));
}

body.light::before { opacity: 0.15; }
body.light .orb { opacity: 0.12; }

body.light nav {
  background: rgba(245,246,255,0.9);
  border-bottom-color: rgba(0,0,0,0.08);
}

body.light .dashboard-card,
body.light .floating-card { background: rgba(255,255,255,0.95); }

body.light .stat-item { background: rgba(99,102,241,0.06); }

body.light .feature-card { background: rgba(255,255,255,0.85); }
body.light .form-card { background: rgba(255,255,255,0.9); }

body.light .step-num { background: var(--bg); }

body.light .integration-chip { background: rgba(255,255,255,0.85); }

body.light .form-group input,
body.light .form-group textarea {
  background: rgba(255,255,255,0.9);
  color: var(--text);
}

body.light .promo-stat,
body.light .promo-testimonial,
body.light .login-card { background: rgba(255,255,255,0.85); }

body.light .info-box {
  background: rgba(99,102,241,0.07);
  border-color: rgba(99,102,241,0.18);
}

body.light .prose h2 { border-bottom-color: rgba(0,0,0,0.08); }

body.light footer { background: var(--bg2); }

body.light .mini-bar { background: rgba(99,102,241,0.2); }

body.light .toast {
  background: rgba(255,255,255,0.97);
  color: var(--text);
}

/* ── Mobile hamburger ── */
.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--text); font-size: 22px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }

  .nav-links { display: none; }
  .hamburger { display: block; }

  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }

  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .login-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-actions .btn-ghost { display: none; }
}
