/* ═══════════════════════════════════════════════
   KHOZNA LANDING PAGE — STYLE SYSTEM
   Stack: Vanilla CSS, mobile-first, 8pt grid
═══════════════════════════════════════════════ */

/* — Design Tokens — */
:root {
  --blue:        #00A3E1;
  --blue-dark:   #0087bb;
  --blue-light:  #e6f6fd;
  --green:       #00C853;  /* KYC badge ONLY */
  --white:       #FFFFFF;
  --grey-bg:     #F8F9FA;
  --grey-border: #E5E7EB;
  --text-main:   #111827;
  --text-muted:  #6B7280;
  --text-light:  #9CA3AF;
  --glass-bg:    rgba(255,255,255,0.12);
  --glass-border:rgba(255,255,255,0.22);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.16);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-pill: 100px;
}

/* — Reset & Base — */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* — Typography Scale — */
h1, h2, h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p { line-height: 1.7; color: var(--text-muted); }

/* — Layout — */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section-grey { background: var(--grey-bg); }
.text-center { text-align: center; }

/* — Section Labels — */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  margin-bottom: 16px;
  color: var(--text-main);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* — Glass Card — */
.glass-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 2px 16px rgba(0,0,0,0.06);
  backdrop-filter: none;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.nav-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-main);
}

/* -- Desktop Nav Links -- */
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-link:hover {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-link.active {
  color: var(--blue);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--grey-bg);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--grey-border);
  min-height: 36px;
}

.lang-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  min-height: 28px;
}

.lang-btn.active {
  color: var(--white);
  background: var(--blue);
}

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

.lang-divider {
  font-size: 0.75rem;
  color: var(--grey-border);
}

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: var(--white);
  transition: background 0.2s, transform 0.15s;
  min-height: 44px;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
/* Hamburger open state — X animation */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -- Mobile Drawer -- */
.nav-drawer {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
  opacity: 0;
  background: #ffffff;
  border-top: 1px solid var(--grey-border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-drawer.open {
  max-height: 400px;
  opacity: 1;
}
.drawer-links {
  list-style: none;
  padding: 16px 24px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
  min-height: 48px;
}
.drawer-link:hover, .drawer-link:active {
  background: var(--blue-light);
  color: var(--blue);
}
.drawer-cta {
  display: block;
  width: calc(100% - 48px);
  margin: 8px 24px 20px;
  padding: 14px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: background 0.2s;
  min-height: 52px;
}
.drawer-cta:hover { background: var(--blue-dark); }

.drawer-lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 12px 24px 12px;
  background: var(--grey-bg);
  padding: 4px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--grey-border);
}

.drawer-lang-switch .lang-btn {
  flex: 1;
  text-align: center;
  padding: 8px;
  font-size: 0.88rem;
  min-height: 38px;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 10, 20, 0.55) 40%,
    rgba(0, 163, 225, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-highlight {
  color: var(--blue);
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.75;
}

/* — Waitlist Form — */
.waitlist-form { width: 100%; }
.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.form-row-center { justify-content: center; }
.form-row-col { flex-direction: column; }
.form-input {
  flex: 1;
  min-width: 220px;
  height: 52px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.6); }
.form-input:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,0.22);
}

/* Light form variant (footer / section bg) */
.form-input-light {
  background: var(--grey-bg);
  border-color: var(--grey-border);
  color: var(--text-main);
}
.form-input-light::placeholder { color: var(--text-muted); }
.form-input-light:focus { border-color: var(--blue); background: var(--white); }

/* Dark band form variant */
.form-input-dark {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.form-input-dark::placeholder { color: rgba(255,255,255,0.65); }
.form-input-dark:focus { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.25); }

.form-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  text-align: center;
}
.form-note-light { color: rgba(255,255,255,0.65); }

/* — Buttons — */
.btn-primary {
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,163,225,0.4);
}
.btn-primary.success {
  background: var(--green);
  pointer-events: none;
}
.btn-white {
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--blue);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn-white.success { background: #e6ffe8; color: #00a040; pointer-events: none; }
.btn-inline {
  margin-top: 8px;
  display: inline-flex;
}

/* — Phone Frame — */
.phone-frame {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 2px rgba(255,255,255,0.12);
  background: #111;
  line-height: 0;
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mockup .phone-frame {
  width: 260px;
  animation: float 4s ease-in-out infinite;
}
.phone-sm {
  width: 120px;
  margin: 16px auto 0;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.phone-lg {
  width: 240px;
  border-radius: 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

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

/* ═══ PROBLEM CARDS ═══ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
}
.problem-card h3 {
  margin-bottom: 12px;
  color: var(--text-main);
}
.problem-card p { font-size: 0.95rem; }

/* ═══ HOW IT WORKS ═══ */
.steps-wrap {
  display: flex;
  gap: 0;
  align-items: flex-start;
  margin-top: 48px;
}
.step-card {
  flex: 1;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 8px;
}
.step-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.92rem; }
.step-connector {
  font-size: 1.5rem;
  color: var(--blue);
  padding: 0 8px;
  margin-top: 40px;
  flex-shrink: 0;
  opacity: 0.5;
}
.step-mockup { margin-top: 16px; }
.step-mockup-icon { display: flex; justify-content: center; margin-top: 16px; }
.move-in-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(135deg, #e6f6fd 0%, #f0fff4 100%);
  border-radius: var(--radius-md);
  height: 120px;
  margin-top: 16px;
}
.move-in-emoji { font-size: 2.2rem; }
.move-in-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue);
}

/* ═══ SPLIT LAYOUT ═══ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-text .section-title { margin-bottom: 20px; }
.split-body { font-size: 1rem; margin-bottom: 16px; }
.split-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.feature-badge-float {
  position: absolute;
  bottom: -16px;
  left: -16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
}
.feature-badge-right {
  left: auto;
  right: -16px;
}
.badge-icon {
  font-size: 1.5rem;
  width: 36px; height: 36px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.feature-badge-float strong { display: block; font-size: 0.88rem; color: var(--text-main); }
.feature-badge-float span { font-size: 0.78rem; color: var(--text-muted); }

/* KYC Badge */
.kyc-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
}
.kyc-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.inline-kyc-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  vertical-align: middle;
  margin: 0 2px;
}
.trust-points {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
}
.trust-check {
  width: 24px; height: 24px;
  background: #e6fff0;
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══ BUILT FOR KTM ═══ */
.local-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.local-chip {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-align: left;
}
.local-chip:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(0,163,225,0.12);
  transform: translateY(-3px);
}
.chip-icon {
  font-size: 1.8rem;
  min-width: 40px;
  text-align: center;
  margin-top: 2px;
}
.local-chip strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.local-chip span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ═══ WAITLIST BANNER ═══ */
.waitlist-banner {
  background: linear-gradient(135deg, #0087bb 0%, var(--blue) 50%, #00c4ff 100%);
  position: relative;
  overflow: hidden;
}
.waitlist-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.waitlist-banner::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -5%;
  width: 400px; height: 400px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.wl-counter {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
}
.counter-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.wl-title {
  color: var(--white);
  margin-bottom: 12px;
}
.wl-sub {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1rem;
}
.wl-form { max-width: 520px; margin: 0 auto; }

/* ═══ FAQ ═══ */
.faq-list {
  max-width: 700px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,163,225,0.10);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  min-height: 60px;
  user-select: none;
  gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-chevron {
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq-chevron {
  transform: rotate(90deg);
  color: var(--blue);
}
.faq-a {
  padding: 0 24px 20px;
  border-top: 1px solid var(--grey-border);
}
.faq-a p {
  padding-top: 16px;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ═══ FOOTER ═══ */
.footer {
  background: #0D1117;
  color: var(--white);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
}
.footer-brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
}
.footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  min-height: 44px;
}
.social-link:hover { color: var(--blue); }
.social-link svg { flex-shrink: 0; }

.footer-waitlist .footer-wl-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.footer .form-input {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.footer .form-input::placeholder { color: rgba(255,255,255,0.45); }
.footer .form-input:focus { border-color: var(--blue); background: rgba(255,255,255,0.15); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ═══ RESPONSIVE — TABLET ≤ 900px ═══ */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-badge { margin: 0 auto 24px; }

  .hero-mockup .phone-frame { width: 200px; }

  .cards-3 {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps-wrap {
    flex-direction: column;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
  }
  .step-connector {
    transform: rotate(90deg);
    margin: 0 auto;
    padding: 0;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .split-reverse { direction: ltr; }
  .split-visual { justify-content: center; }
  .feature-badge-float, .feature-badge-right {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: -48px;
    white-space: nowrap;
  }
  .split-text .btn-inline { margin: 8px auto 0; display: flex; width: fit-content; }
  .trust-points { align-items: center; }

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

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

/* ═══ RESPONSIVE — MOBILE ≤ 600px ═══ */
@media (max-width: 600px) {
  .section { padding: 56px 0; }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.65rem; }

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

  .hero-content { padding-top: 88px; }
  .hero-mockup .phone-frame { width: 170px; }
  .form-row { flex-direction: column; }
  .form-input { min-width: unset; width: 100%; }
  .btn-primary, .btn-white { width: 100%; justify-content: center; }

  .local-chips { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }

  .wl-form .form-row { flex-direction: column; }
  .wl-form .btn-white { width: 100%; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}
