/* NearSense landing page — Gill Sans throughout */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0c;
  --bg-card: #141418;
  --bg-card-hover: #1a1a20;
  --red: #e53935;
  --red-glow: rgba(229, 57, 53, 0.35);
  --brand-blue: #347bb7;
  --brand-blue-glow: rgba(52, 123, 183, 0.35);
  --white: #ffffff;
  --text: #e8e8ec;
  --text-muted: #9a9aa8;
  --text-dim: #6b6b78;
  --border: rgba(255, 255, 255, 0.08);
  --font: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  --green: #22c55e;
  --blue: #3b82f6;
  --amber: #f59e0b;
  --purple: #a855f7;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Header ── */
.home-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 2.5rem;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.home-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.home-logo img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.home-logo span {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

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

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

.home-nav-links a:hover,
.home-nav-links a:focus-visible {
  color: #347bb7;
}

.home-logo:hover,
.home-logo:hover span {
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

.btn-app-store {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  background: var(--brand-blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-app-store:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--brand-blue-glow);
}

.btn-app-store svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.store-badges {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.store-badges--header .store-badge {
  height: 2.1rem;
}

.store-badges--hero .store-badge,
.store-badges--cta .store-badge {
  height: 2.75rem;
}

.store-badges--hero {
  margin-bottom: 0.25rem;
}

.store-badge-link {
  display: inline-block;
  transition: transform 0.2s, opacity 0.2s;
}

.store-badge-link:hover {
  color: inherit;
  transform: translateY(-1px);
  opacity: 0.9;
}

.store-badge {
  display: block;
  width: auto;
  height: 2.75rem;
}

.btn-app-store--dark {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.7rem 1.25rem;
  font-size: 0.85rem;
}

.btn-app-store--dark:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.btn-app-store--large {
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
}

/* ── Hero ── */
.hero-home {
  padding: 7.5rem 0 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-home-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.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--red);
}

.hero-home h1 {
  font-family: var(--font);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-home h1 .accent {
  color: var(--brand-blue);
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust span:not(:last-child)::after {
  content: "•";
  margin-left: 0.5rem;
  opacity: 0.5;
}

/* Phone mockup */
.phone-mockup-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup-wrap::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  background: radial-gradient(ellipse at center, var(--red-glow) 0%, transparent 70%);
  pointer-events: none;
}

.phone-mockup {
  position: relative;
  width: 280px;
  background: #1c1c22;
  border-radius: 2.5rem;
  padding: 0.75rem;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px var(--red-glow);
}

.phone-notch {
  width: 90px;
  height: 24px;
  background: #0a0a0c;
  border-radius: 0 0 1rem 1rem;
  margin: 0 auto 0.5rem;
}

.phone-screen {
  background: #111116;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1.25rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.phone-app-header {
  padding: 0.5rem 1.25rem 1rem;
  text-align: center;
}

.phone-app-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.phone-awareness {
  margin: 0 1rem 1rem;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 1rem;
  text-align: center;
}

.phone-awareness-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.phone-awareness-status {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}

.phone-map-card {
  margin: 0 1rem 1rem;
  padding: 0.85rem;
  background: var(--bg-card);
  border-radius: 0.85rem;
  border: 1px solid var(--border);
}

.phone-map-card h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.phone-map-preview {
  height: 100px;
  background:
    linear-gradient(rgba(229, 57, 53, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 57, 53, 0.08) 1px, transparent 1px);
  background-size: 16px 16px;
  background-color: #0d0d12;
  border-radius: 0.5rem;
  position: relative;
}

.phone-map-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red-glow);
}

.phone-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 1rem 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border-radius: 0.75rem;
  font-size: 0.8rem;
  color: var(--white);
}

.phone-toggle {
  width: 44px;
  height: 24px;
  background: var(--green);
  border-radius: 999px;
  position: relative;
}

.phone-toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
}

.phone-panic {
  margin: auto 1rem 1.25rem;
  padding: 1rem;
  background: var(--red);
  border-radius: 1rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 24px var(--red-glow);
}

/* ── Section shared ── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 3rem;
  text-align: center;
}

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

/* ── Features ── */
.features-section {
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.feature-card {
  padding: 1.5rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: background 0.2s, border-color 0.2s;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.feature-icon--green { background: rgba(34, 197, 94, 0.15); color: var(--green); }
.feature-icon--blue { background: rgba(59, 130, 246, 0.15); color: var(--blue); }
.feature-icon--amber { background: rgba(245, 158, 11, 0.15); color: var(--amber); }
.feature-icon--purple { background: rgba(168, 85, 247, 0.15); color: var(--purple); }
.feature-icon--red { background: rgba(229, 57, 53, 0.15); color: var(--red); }

.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── How it works ── */
.how-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  position: relative;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}

.step-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 1.75rem;
  right: -0.75rem;
  color: var(--text-dim);
  font-size: 1rem;
  opacity: 0.5;
}

.step-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.step-icon-wrap svg {
  width: 1.5rem;
  height: 1.5rem;
}

.step-icon-wrap--purple { background: rgba(168, 85, 247, 0.15); color: var(--purple); }
.step-icon-wrap--green { background: rgba(34, 197, 94, 0.15); color: var(--green); }
.step-icon-wrap--blue { background: rgba(59, 130, 246, 0.15); color: var(--blue); }
.step-icon-wrap--amber { background: rgba(245, 158, 11, 0.15); color: var(--amber); }
.step-icon-wrap--red { background: rgba(229, 57, 53, 0.15); color: var(--red); }

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.step-item h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.step-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ── Privacy ── */
.privacy-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

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

.privacy-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 320px;
}

.privacy-shield {
  position: relative;
  width: 220px;
  height: 260px;
}

.privacy-shield svg.shield-bg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px var(--red-glow));
}

.privacy-orbit {
  position: absolute;
  inset: -20%;
  border: 1px solid rgba(229, 57, 53, 0.15);
  border-radius: 50%;
  animation: orbit-spin 20s linear infinite;
}

.privacy-orbit--2 {
  inset: -35%;
  animation-direction: reverse;
  animation-duration: 28s;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.privacy-orbit-icon {
  position: absolute;
  width: 2rem;
  height: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.privacy-orbit-icon:nth-child(1) { top: 5%; left: 50%; transform: translateX(-50%); }
.privacy-orbit-icon:nth-child(2) { bottom: 15%; left: 5%; }
.privacy-orbit-icon:nth-child(3) { bottom: 15%; right: 5%; }

.privacy-content .section-label {
  text-align: left;
}

.privacy-content .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.privacy-content > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

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

.privacy-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text);
}

.privacy-list .no-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(229, 57, 53, 0.15);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  padding: 1.5rem 0;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer--short {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.faq-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Standalone pages ── */
.page-main {
  padding: 7rem 0 4rem;
  min-height: calc(100vh - 12rem);
}

.page-content {
  max-width: 42rem;
  margin: 0 auto;
}

.legal-document {
  max-width: 48rem;
}

.legal-document h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.legal-document .legal-updated {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.legal-document h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 2rem 0 1rem;
}

.legal-document h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 1.25rem 0 0.65rem;
}

.legal-document p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-document ul {
  margin: 0 0 1rem 1.25rem;
  color: var(--text-muted);
}

.legal-document li {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.35rem;
}

.legal-document hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.legal-document a {
  color: var(--brand-blue);
}

.legal-document a:hover {
  color: #347bb7;
}

.legal-document strong {
  color: var(--text);
  font-weight: 600;
}

.page-content h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.page-content .placeholder-note {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.contact-details {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.contact-details h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.contact-details a {
  color: var(--brand-blue);
}

.contact-details a:hover {
  color: #347bb7;
}

/* ── Bottom CTA ── */
.cta-section {
  padding: 3rem 0 5rem;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
}

.cta-box .store-badges {
  flex-shrink: 0;
}

.cta-box h2 {
  font-family: var(--font);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.cta-box h2 .accent {
  color: var(--brand-blue);
}

.cta-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Footer ── */
.home-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .home-logo {
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #347bb7;
}

.footer-bottom {
  text-align: right;
  font-size: 0.78rem;
  color: var(--text-dim);
}

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

  .steps-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .step-item {
    flex: 0 0 calc(33.333% - 1.5rem);
  }

  .step-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-home-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-home-desc {
    margin-left: auto;
    margin-right: auto;
  }

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

  .phone-mockup-wrap {
    order: -1;
  }

  .privacy-content .section-label,
  .privacy-content .section-title {
    text-align: center;
  }

  .privacy-list {
    align-items: center;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .home-header {
    padding: 0.85rem 1.25rem;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .home-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(18rem, 85vw);
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .home-nav.is-open {
    transform: translateX(0);
  }

  .home-nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .home-nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .home-nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
  }

  .home-nav-links a:hover,
  .home-nav-links a:focus-visible {
    color: #347bb7;
  }

  .store-badges--header {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
  }

  .store-badges--header .store-badge {
    height: 2.5rem;
    width: auto;
    margin: 0 auto;
  }

  .hero-home {
    padding: 5.5rem 0 3rem;
    min-height: auto;
  }

  .hero-home h1 {
    font-size: 1.85rem;
  }

  .hero-home-desc {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.65rem;
  }

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

  .store-badges--hero .store-badge {
    height: 2.5rem;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
  }

  .hero-trust span:not(:last-child)::after {
    display: none;
  }

  .phone-mockup {
    width: 250px;
  }

  .phone-screen {
    min-height: 480px;
  }

  .features-section,
  .how-section,
  .privacy-section,
  .faq-section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-desc {
    margin-bottom: 2rem;
    font-size: 0.9rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .steps-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .step-item {
    flex: none;
    width: 100%;
    padding: 0;
  }

  .privacy-grid {
    gap: 2rem;
  }

  .privacy-visual {
    min-height: 220px;
  }

  .privacy-shield {
    width: 180px;
    height: 210px;
  }

  .faq-question {
    font-size: 1rem;
  }

  .cta-section {
    padding: 2rem 0 3rem;
  }

  .cta-box {
    padding: 1.75rem 1.25rem;
    gap: 1.5rem;
  }

  .store-badges--cta {
    justify-content: center;
    width: 100%;
  }

  .page-main {
    padding: 5.5rem 0 3rem;
  }

  .legal-document h2 {
    font-size: 1.05rem;
  }

  .home-footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }

  .footer-links a:hover,
  .footer-links a:focus-visible {
    color: #347bb7;
  }
}
