@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600&display=swap');

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

:root {
  /* Single accent — high-vis aviation orange */
  --orange:        #E8742A;
  --orange-hover:  #D56620;
  --orange-soft:   rgba(232, 116, 42, 0.10);
  --orange-border: rgba(232, 116, 42, 0.35);

  /* Flat neutrals only — no gradients */
  --bg:            #0C1520;
  --bg-alt:        #111D2B;
  --bg-card:       #162030;
  --bg-card-hover: #1C2A3E;

  --text-1:        #F0F6FF;
  --text-2:        #9AAEC6;
  --text-3:        #5F7992;

  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --radius-card:   16px;
  --radius-btn:    10px;

  /* Fixed vertical rhythm + max width */
  --max-w:         1120px;
  --section-py:    6rem;     /* desktop section vertical padding */
  --section-px:    2rem;     /* desktop section horizontal padding */
}

html { scroll-behavior: smooth; }

body {
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text-1);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus { outline: none; }
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ─── NAV ───────────────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-px);
  height: 68px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-1);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo svg { color: var(--orange); }
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-2);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
}
.nav-links a:hover { color: var(--text-1); text-decoration: none; }
.nav-links .nav-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── MOBILE MENU TOGGLE ───────────────────────────────── */

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  z-index: 110;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle:hover { border-color: var(--border-strong); }
.menu-toggle:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.menu-toggle-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.15s ease;
}
.menu-toggle-bar:nth-child(1) { transform: translate(-50%, -7px); }
.menu-toggle-bar:nth-child(2) { transform: translate(-50%, 0); }
.menu-toggle-bar:nth-child(3) { transform: translate(-50%, 7px); }

body.menu-open .menu-toggle-bar:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
body.menu-open .menu-toggle-bar:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle-bar:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

/* ─── MOBILE MENU DRAWER ───────────────────────────────── */

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 20, 0.75);
  z-index: 105;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.mobile-menu-backdrop[hidden] { display: none; }
body.menu-open .mobile-menu-backdrop { opacity: 1; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 86vw);
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  z-index: 108;
  padding: 5.25rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.2s ease;
  visibility: hidden;
}
body.menu-open .mobile-menu {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0 0 1.5rem;
  padding: 0;
}
.mobile-menu-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem;
  color: var(--text-1);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:focus-visible {
  background: var(--bg-card);
  color: var(--orange);
  text-decoration: none;
  outline: none;
}
.mobile-menu-cta {
  margin-top: auto;
  min-height: 48px;
}

body.menu-open { overflow: hidden; }

/* ─── BUTTONS ───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-hover);
  text-decoration: none;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-1);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--bg-card);
  text-decoration: none;
  color: var(--text-1);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  padding: 0.7rem 0.25rem;
}
.btn-ghost:hover { color: var(--text-1); text-decoration: none; }

.btn-full { width: 100%; padding: 0.95rem 1.5rem; font-size: 0.95rem; }
.btn-large { padding: 1rem 1.75rem; font-size: 1rem; }

/* ─── SECTION RHYTHM ────────────────────────────────────── */

section {
  padding: var(--section-py) var(--section-px);
}

.section-header {
  text-align: center;
  margin: 0 auto 3.5rem;
  max-width: 640px;
}

.section-label {
  display: inline-block;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text-1);
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ─── HERO ──────────────────────────────────────────────── */

.hero {
  padding: var(--section-py) var(--section-px);
  background: var(--bg);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid var(--orange-border);
  border-radius: 100px;
  padding: 0.4rem 0.95rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-1);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 540px;
}

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

.hero-note {
  font-size: 0.85rem !important;
  color: var(--text-3) !important;
  margin-bottom: 0 !important;
}

/* ─── PHONE MOCKUP (flat, no glow/gradient) ─────────────── */

.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.phone-frame {
  width: clamp(220px, 80vw, 320px);
  max-width: 100%;
  aspect-ratio: 9 / 19;
  background: #0D1824;
  border-radius: 36px;
  border: 1px solid var(--border-strong);
  padding: 16px 12px 20px;
  position: relative;
}

.phone-notch {
  width: 88px;
  height: 20px;
  background: #0D1824;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 12px;
  border: 1px solid var(--border);
  border-top: none;
}

.phone-screen {
  background: var(--bg-alt);
  border-radius: 22px;
  overflow: hidden;
  padding: 14px;
}

.phone-ui { display: flex; flex-direction: column; gap: 10px; }

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-greeting {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-1);
}
.phone-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
}

.phone-card {
  border-radius: 12px;
  padding: 12px;
}
.phone-card.orange {
  background: var(--orange);
}
.phone-card.dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.phone-card-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
}
.phone-card.dark .phone-card-label { color: var(--text-3); }

.phone-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.phone-card-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}
.phone-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}

.phone-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.phone-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.step-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--text-3);
}
.phone-step.done .step-icon {
  background: var(--orange-soft);
  border-color: var(--orange-border);
  color: var(--orange);
}
.step-icon.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.step-icon.dim { opacity: 0.4; }
.phone-step span {
  font-size: 0.5rem;
  color: var(--text-3);
  text-align: center;
  line-height: 1.15;
  hyphens: auto;
}
.phone-step.done span, .phone-step.active span { color: var(--text-2); }

.phone-hours {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 4px 0 8px;
}
.phone-hours span { font-size: 0.75rem; font-weight: 400; color: var(--text-2); }

.phone-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.phone-progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
}

/* ─── STATS BAR ─────────────────────────────────────────── */

.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 2rem var(--section-px);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { text-align: center; flex: 1 1 auto; }
.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-3);
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── HOW IT WORKS ──────────────────────────────────────── */

.how-it-works {
  max-width: var(--max-w);
  margin: 0 auto;
}

.steps-row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  transition: border-color 0.15s ease;
}
.step-card:hover {
  border-color: var(--border-strong);
}
.step-card.highlighted {
  border-color: var(--orange-border);
  background: var(--bg-card);
}
.step-card.highlighted:hover { border-color: var(--orange); }

.step-number {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.step-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.step-card p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.6;
}
.step-arrow {
  align-self: center;
  color: var(--text-3);
  font-size: 1.25rem;
  padding: 0 0.25rem;
  flex-shrink: 0;
}

/* ─── FEATURES ──────────────────────────────────────────── */

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.85rem;
  transition: border-color 0.15s ease;
}
.feature-card:hover {
  border-color: var(--border-strong);
}
.feature-card.large {
  grid-column: span 1;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid var(--orange-border);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.6;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

/* ─── PRICING ───────────────────────────────────────────── */

.pricing-section {
  background: var(--bg);
}

.pricing-container {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(1rem, 4vw, 2.25rem) clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing-card.featured {
  border-color: var(--orange);
  background: var(--bg-card);
}

.pricing-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  width: fit-content;
}
.free-tag { background: rgba(255, 255, 255, 0.05); color: var(--text-2); border: 1px solid var(--border); }
.pro-tag { background: var(--orange-soft); color: var(--orange); border: 1px solid var(--orange-border); }

.pricing-price {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text-1);
  line-height: 1.1;
}
.pricing-once {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: 0;
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  margin-bottom: 0.5rem;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.pricing-features li::before {
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.pricing-features li.check::before { content: '+'; color: var(--orange); }
.pricing-features li.cross { opacity: 0.45; }
.pricing-features li.cross::before { content: '-'; color: var(--text-3); }

.pricing-small {
  font-size: 0.8rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ─── CTA ───────────────────────────────────────────────── */

.cta-section {
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner .hero-badge { margin: 0 auto 1.5rem; }
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text-1);
}
.cta-inner p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ─── KEY FACTS (declarative prose block for LLMs / AI answer engines) ─── */

.key-facts {
  padding: clamp(4rem, 8vw, 6rem) var(--section-px);
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.key-facts-inner {
  max-width: 780px;
  margin: 0 auto;
}
.key-facts h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-1);
  margin-bottom: 1.5rem;
}
.key-facts p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 1rem;
}
.key-facts strong {
  color: var(--text-1);
  font-weight: 600;
}
.key-facts a {
  color: var(--accent, #E8742A);
  text-decoration: underline;
}

/* ─── FOOTER ────────────────────────────────────────────── */

footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 2.5rem var(--section-px);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
}
.footer-logo:hover { color: var(--text-1); text-decoration: none; }
.footer-logo svg { color: var(--orange); }
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-3);
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
}
.footer-links a:hover { color: var(--text-2); }
.footer-copy {
  max-width: var(--max-w);
  margin: 0 auto;
  color: var(--text-3);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ─── LEGAL PAGES ───────────────────────────────────────── */

.legal-nav {
  padding: 1.25rem var(--section-px);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.legal-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-2);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
}
.legal-nav a:hover { color: var(--text-1); }

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem var(--section-px) 6rem;
}
.legal-page h1 {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: var(--text-1);
}
.legal-page .last-updated {
  color: var(--text-3);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  display: block;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2.5rem 0 0.75rem;
  color: var(--text-1);
  letter-spacing: -0.01em;
}
.legal-page p, .legal-page li {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.legal-page ul, .legal-page ol { padding-left: 1.5rem; }
.legal-page ul li, .legal-page ol li { margin-bottom: 0.5rem; }
.legal-page a { color: var(--orange); }
.legal-page a:hover { text-decoration: underline; }

.safety-box {
  background: var(--bg-card);
  border: 1px solid var(--orange-border);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.safety-box p {
  color: var(--text-1);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* ─── SUPPORT PAGE ──────────────────────────────────────── */

.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
}
.contact-box p { margin: 0; font-size: 0.95rem; color: var(--text-2); line-height: 1.6; }
.contact-box a { color: var(--orange); font-weight: 600; }

.faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.15s ease;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.faq-item p { font-size: 0.92rem; color: var(--text-2); line-height: 1.6; margin: 0; }

/* ─── CONTACT PAGE ──────────────────────────────────────── */

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: border-color 0.15s ease;
}
.contact-card:hover {
  border-color: var(--border-strong);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid var(--orange-border);
}

.contact-card-body h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-1);
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}
.contact-card-body p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.contact-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}
.contact-link:hover { text-decoration: underline; }

.response-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-3);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}
.response-note svg { flex-shrink: 0; }

/* ─── RESPONSIVE ────────────────────────────────────────── */

@media (max-width: 960px) {
  :root {
    --section-py: 4.5rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider { display: none; }
  .stats-inner { gap: 2rem; }
}

@media (max-width: 720px) {
  :root {
    --section-py: 4rem;
    --section-px: 1.5rem;
  }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .stats-bar { padding: 1.75rem 1.5rem; }
  .stats-inner {
    text-align: center;
    justify-items: center;
  }
  .stat { display: flex; flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-container { grid-template-columns: 1fr; max-width: min(420px, 90vw); margin: 0 auto; }
  .steps-row { flex-direction: column; align-items: center; gap: 1rem; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .step-card { max-width: 100%; width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-links { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .step-card { min-width: 0; max-width: 100%; }
  .step-arrow { transform: rotate(90deg); }
  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  :root { --section-px: 1.25rem; }
  .hero-content h1 { font-size: 2.15rem; }
  .section-header h2 { font-size: 1.75rem; }
  .pricing-card { padding: 1.75rem 1.5rem; }
  .feature-card { padding: 1.5rem; }
}
