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

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --bg: #080B14;
  --surface: #0F1524;
  --surface-alt: #161D30;
  --border: #1E2A42;
  --amber: #F5A623;
  --amber-dark: #C47D0E;
  --amber-light: #FFD166;
  --text-primary: #F0F4FF;
  --text-secondary: #7A8BAD;
  --success: #22C55E;
  --danger: #EF4444;
  --footer-bg: #060912;
  --max-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

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

button {
  font-family: inherit;
}

/* ===== UTILITIES ===== */
.gradient-text {
  background: linear-gradient(135deg, #F5A623, #FFD166);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 10px;
}

.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.section-subtext {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--amber);
  color: #080B14;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 100px;
  padding: 14px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.28);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--amber);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 100px;
  padding: 14px 32px;
  border: 2px solid var(--amber);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(245, 166, 35, 0.08);
  transform: translateY(-2px);
}

.btn-ghost:active { transform: translateY(0); }

.btn-sm {
  padding: 10px 22px !important;
  font-size: 0.875rem !important;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 11, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(8, 11, 20, 0.98);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

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

.nav-link.active { color: var(--amber); }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-toggle:hover { background: var(--surface); }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO (HOME) ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse at 55% 40%, #0F1524 0%, #080B14 68%);
}

.hero-blob {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, #F5A623, transparent 65%);
  opacity: 0.06;
  top: -150px;
  right: -150px;
  animation: float-blob 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-blob-2 {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, #F5A623, transparent 65%);
  opacity: 0.04;
  bottom: -80px;
  left: -100px;
  animation: float-blob 12s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes float-blob {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-28px) scale(1.06); }
}

.hero-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 72px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Phone mockup */
.hero-visual {
  flex: 0 0 auto;
  width: 270px;
}

.phone-frame {
  width: 270px;
  height: 520px;
  background: var(--surface);
  border-radius: 44px;
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 48px 96px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 50px rgba(245, 166, 35, 0.07);
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
}

.phone-screen {
  position: absolute;
  inset: 44px 10px 12px;
  background: var(--bg);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px 16px;
}

.phone-glow {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #F5A623, transparent 68%);
  opacity: 0.2;
  pointer-events: none;
}

.phone-screen-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-map-strip {
  background: var(--surface);
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-map-label {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 600;
}

.phone-map-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--text-primary);
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-amber { background: var(--amber); }
.dot-green { background: var(--success); }

.phone-fare-card {
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.phone-fare-label {
  font-size: 0.58rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}

.phone-fare-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.phone-fare-sub {
  font-size: 0.62rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.phone-cta-btn {
  background: var(--amber);
  color: #080B14;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 11px;
  text-align: center;
}

/* ===== FEATURE STRIP ===== */
.feature-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-right: 1px solid var(--border);
  flex: 1;
  justify-content: center;
  min-width: 180px;
  transition: color 0.2s;
}

.feature-strip-item:last-child { border-right: none; }
.feature-strip-item:hover { color: var(--text-primary); }

.feature-strip-item .fs-icon { font-size: 1.15rem; }

/* ===== SECTIONS ===== */
section {
  padding: 96px 24px;
}

/* ===== CARDS ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 24px rgba(245, 166, 35, 0.06);
}

.card-icon {
  font-size: 2.1rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== GRID ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ===== STEP CARDS (preview) ===== */
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 5rem;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.15;
  position: absolute;
  top: 6px;
  left: 18px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.step-content {
  position: relative;
  z-index: 1;
  padding-top: 36px;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Full steps (how it works page) */
.steps-full {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-full {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.step-full:hover {
  border-color: rgba(245, 166, 35, 0.35);
  transform: translateX(4px);
}

.step-full-num {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.1);
  border: 2px solid rgba(245, 166, 35, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 1rem;
  color: var(--amber);
  flex-shrink: 0;
}

.step-full-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.3;
}

.step-full-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  padding: 110px 24px 56px;
  background: radial-gradient(ellipse at 30% 60%, #0F1524 0%, #080B14 65%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, #F5A623, transparent 68%);
  opacity: 0.05;
  top: -80px;
  right: -60px;
  pointer-events: none;
  animation: float-blob 10s ease-in-out infinite;
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 500px;
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 24px;
}

.cta-card {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, #F5A623, transparent 68%);
  opacity: 0.06;
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
}

.cta-card p {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-btn.active { color: var(--amber); }

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 2px 2px 0 0;
}

.tab-btn:hover:not(.active) { color: var(--text-primary); }

.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ===== FAQ ACCORDION ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: background 0.15s;
}

.faq-question:hover { background: var(--surface-alt); }

.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 320px; }

.faq-answer-inner {
  padding: 0 28px 22px;
  color: var(--text-secondary);
  font-size: 0.91rem;
  line-height: 1.75;
}

/* ===== DOWNLOAD PAGE ===== */
.download-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse at 50% 45%, #0F1524 0%, #080B14 68%);
  position: relative;
  overflow: hidden;
}

.download-hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #F5A623, transparent 68%);
  opacity: 0.05;
  top: -120px;
  right: -120px;
  animation: float-blob 10s ease-in-out infinite;
  pointer-events: none;
}

.download-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.download-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.download-hero-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 420px;
  line-height: 1.7;
}

.apple-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--text-primary);
  color: #080B14;
  border-radius: 18px;
  padding: 14px 28px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.apple-badge:hover {
  opacity: 0.92;
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.apple-badge svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.apple-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}

.apple-badge-small {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.65;
}

.apple-badge-large {
  font-size: 1.2rem;
  font-weight: 800;
}

.download-info-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.qr-placeholder {
  width: 144px;
  height: 144px;
  border: 2px dashed var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 500;
  text-align: center;
  padding: 12px;
  transition: border-color 0.2s;
}

.qr-placeholder:hover { border-color: var(--amber); }

.qr-placeholder .qr-icon {
  font-size: 2.4rem;
  opacity: 0.35;
}

.app-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.app-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-meta-label {
  font-size: 0.68rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.app-meta-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.features-section {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  font-size: 0.68rem;
  font-weight: 800;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 24px;
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s;
  margin-bottom: 6px;
}

.contact-email-link:hover { opacity: 0.8; }

.contact-response {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-top: 10px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-link:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(245, 166, 35, 0.06);
}

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

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-control {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.93rem;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
}

.form-control.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control::placeholder { color: rgba(122, 139, 173, 0.45); }

.form-error {
  color: var(--danger);
  font-size: 0.78rem;
  margin-top: 5px;
  display: none;
}

.form-error.visible { display: block; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%237A8BAD' d='M4 6l4 4 4-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

select.form-control option {
  background: var(--surface);
  color: var(--text-primary);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--success);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 16px;
}

.form-success.visible { display: flex; }

/* ===== LEGAL PAGES ===== */
.legal-section-wrap {
  padding: 72px 24px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-meta {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.legal-block {
  margin-bottom: 48px;
}

.legal-block h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--amber);
  letter-spacing: -0.01em;
}

.legal-block h3 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 22px;
  color: var(--text-primary);
}

.legal-block p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.78;
  margin-bottom: 12px;
}

.legal-block ul {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.78;
  padding-left: 22px;
  margin-bottom: 12px;
}

.legal-block li { margin-bottom: 6px; }

.legal-block a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--footer-bg);
  border-top: 2px solid var(--amber);
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
}

.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 200px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-inner { gap: 48px; }

  .phone-frame {
    width: 230px;
    height: 445px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(8, 11, 20, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 24px 20px;
    gap: 0;
  }

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

  .nav-link {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(30, 42, 66, 0.5);
    font-size: 1rem;
  }

  .nav-links .btn-primary {
    margin-top: 14px;
    align-self: flex-start;
  }

  .nav-toggle { display: flex; }

  section { padding: 64px 20px; }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .hero-content { max-width: 100%; }
  .hero-ctas { justify-content: center; }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .phone-frame {
    width: 220px;
    height: 425px;
  }

  .grid-3, .steps-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }

  .feature-strip-inner { flex-direction: column; }

  .feature-strip-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    justify-content: flex-start;
    min-width: 100%;
    padding: 18px 24px;
  }

  .feature-strip-item:last-child { border-bottom: none; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .cta-card { padding: 48px 24px; }
  .feature-list { grid-template-columns: 1fr; }

  .download-info-row {
    flex-direction: column;
    align-items: center;
  }

  .app-meta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
    text-align: center;
  }

  .app-meta-item { align-items: center; }
}

@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary, .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .contact-form-wrap { padding: 24px 18px; }
  .cta-card { padding: 40px 16px; }

  .page-hero {
    min-height: 36vh;
    padding: 100px 20px 40px;
  }
}

/* ===== FOCUS & SELECTION ===== */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

::selection {
  background: rgba(245, 166, 35, 0.22);
  color: var(--text-primary);
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }
