:root {
  /* Primary brand: deep navy */
  --navy: #0a2540;
  --navy-dark: #061a30;
  --navy-darker: #03101f;
  --navy-soft: #f0f4fa;
  --navy-mid: #1a3a5c;

  /* Secondary accent: red (kept for legal-page continuity + American flag pairing) */
  --accent: #c8102e;
  --accent-dark: #9a0c23;
  --accent-soft: #fff5f6;

  --text: #0a1828;
  --muted: #556375;
  --subtle: #7a8696;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --bg-dark: #03101f;
  --border: #e2e7ee;
  --border-strong: #c5cdd9;

  --max-width: 1180px;
  --radius: 6px;
  --shadow-sm: 0 1px 2px rgba(10,37,64,0.06);
  --shadow-md: 0 6px 24px rgba(10,37,64,0.12);
  --shadow-lg: 0 20px 60px rgba(10,37,64,0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 16px; color: var(--text); }
h1 { font-size: 40px; letter-spacing: -0.02em; }
h2 { font-size: 30px; letter-spacing: -0.01em; }
h3 { font-size: 20px; }
p { margin: 0 0 14px; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 14px;
}
.nav-inner > .brand { margin-right: auto; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(10,37,64,0.2);
}
.brand:hover { text-decoration: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  text-decoration: none;
}
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta:hover { background: var(--navy-dark); text-decoration: none; }

.nav-toggle { display: none; }

/* ---------- Language switcher ---------- */
.lang-switch {
  position: relative;
  margin-left: 8px;
}
.lang-btn {
  background: var(--navy-soft);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 7px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.lang-btn:hover { background: #e6edf7; border-color: var(--navy); }
.lang-btn::before {
  content: "\1F310"; /* globe */
  font-size: 15px;
}
.lang-btn::after {
  content: "\25BE";
  font-size: 10px;
  opacity: 0.6;
  margin-left: 2px;
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 6px 0;
  z-index: 200;
  display: none;
}
.lang-menu.open { display: block; }
.lang-option {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  transition: background 0.1s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.lang-option:hover { background: var(--navy-soft); }
.lang-option.active {
  background: var(--navy-soft);
  color: var(--navy);
  font-weight: 600;
}
.lang-option.active::after {
  content: "\2713";
  color: var(--navy);
  font-weight: 700;
}
.lang-option .lang-native { font-weight: 500; }
.lang-option .lang-english { font-size: 12px; color: var(--muted); margin-left: auto; }
.lang-option.active .lang-english { color: var(--navy); opacity: 0.7; }

@media (max-width: 820px) {
  .lang-menu { right: 0; left: auto; min-width: 200px; }
}
/* Always-visible language switcher mount (sibling of .nav-links) */
.lang-mount { display: inline-flex; align-items: center; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 14px; }
  .nav-toggle { display: inline-flex; background: none; border: 1px solid var(--border); border-radius: var(--radius); padding: 6px 10px; font-size: 14px; cursor: pointer; }
}

/* ---------- Hero (navy gradient) ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color: #fff;
  padding: 96px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(200,16,46,0.16), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.05), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 820px;
  color: #fff;
}
.hero .lede {
  font-size: 19px;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.05s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); text-decoration: none; color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); text-decoration: none; color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); text-decoration: none; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; text-decoration: none; }
.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; border-color: #fff; }

@media (max-width: 720px) {
  .hero { padding: 64px 0 64px; }
  .hero h1 { font-size: 36px; }
  .hero .lede { font-size: 17px; }
}

/* ---------- Eyebrow labels ---------- */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}
.eyebrow-light {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  margin-bottom: 18px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
}

/* ---------- Hero badges ---------- */
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .section-lede { color: rgba(255,255,255,0.75); }
.section-title { text-align: center; margin-bottom: 12px; }
.section-lede {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  max-width: 680px;
  margin: 0 auto 48px;
}

/* ---------- Check list ---------- */
.check-list { list-style: none; padding: 0; margin: 18px 0; }
.check-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  color: var(--muted);
  font-size: 16px;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 11px;
  width: 22px;
  height: 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/* ---------- Service grid (home page cards) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-grid.two-up { grid-template-columns: repeat(2, 1fr); }

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transform: translateY(-2px);
}
.service-card .icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-soft);
  color: var(--navy);
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 22px;
}
.service-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
}
.service-card .more {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 900px) {
  .service-grid,
  .service-grid.two-up { grid-template-columns: 1fr; }
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy) 100%);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(200,16,46,0.14), transparent 50%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header .eyebrow {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 5px 12px;
  border-radius: 4px;
}
.page-header h1 {
  font-size: 42px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: #fff;
}
.page-header p {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  max-width: 760px;
  margin: 0;
}

/* ---------- Feature list ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.feature:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.feature .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--navy-soft);
  color: var(--navy);
  border-radius: var(--radius);
  margin-bottom: 14px;
  font-size: 18px;
}
.feature h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--text);
}
.feature p { color: var(--muted); margin: 0; font-size: 15px; }

@media (max-width: 760px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ---------- Pricing / packages ---------- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.pkg {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pkg.featured {
  border-color: var(--navy);
  box-shadow: 0 4px 24px rgba(10,37,64,0.15);
  transform: scale(1.02);
}
.pkg.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px; left: 26px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}
.pkg h3 { margin: 0 0 6px; font-size: 19px; color: var(--text); }
.pkg .pkg-tag { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.pkg .price { font-size: 34px; font-weight: 800; color: var(--navy); margin: 4px 0 18px; }
.pkg .price small { font-size: 14px; color: var(--muted); font-weight: 500; }
.pkg ul { list-style: none; margin: 0 0 24px; padding: 0; flex: 1; }
.pkg li { padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); display: flex; align-items: flex-start; gap: 8px; }
.pkg li:last-child { border-bottom: none; }
.pkg li::before { content: "\2713"; color: var(--navy); font-weight: 700; flex-shrink: 0; }
.pkg .btn { width: 100%; justify-content: center; }

@media (max-width: 960px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg.featured { transform: none; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,16,46,0.18), transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-size: 32px; margin-bottom: 10px; color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 28px; }

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat .num { font-size: 34px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.stat .label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Two-column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col.text-first { grid-template-columns: 1.1fr 0.9fr; }
@media (max-width: 880px) { .two-col, .two-col.text-first { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Phone mockup ---------- */
.product-shot {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  width: 280px;
  height: 560px;
  background: #0a1828;
  border-radius: 38px;
  padding: 14px;
  box-shadow: var(--shadow-lg), 0 0 0 2px #1a3550 inset;
  position: relative;
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #0a1828;
  border-radius: 14px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #f4f6fa;
  border-radius: 26px;
  overflow: hidden;
  padding: 56px 14px 20px;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  padding: 0 6px;
}
.phone-time { font-size: 13px; font-weight: 600; color: var(--navy); }
.phone-title { font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.phone-card {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(10,37,64,0.06);
  border-left: 3px solid #2e8b57;
}
.phone-card-warn {
  border-left-color: var(--accent);
  background: var(--accent-soft);
}
.phone-card-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.phone-card-value { font-size: 14px; font-weight: 600; color: var(--text); }
.phone-card-warn .phone-card-value { color: var(--accent); }
.phone-card-cta {
  display: inline-block;
  margin-top: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .phone-frame { width: 240px; height: 480px; }
  .phone-screen { padding: 48px 12px 16px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: rgba(255,255,255,0.6); }
.footer-grid a:hover { color: #fff; text-decoration: none; }
.footer-brand { font-weight: 700; color: #fff; font-size: 17px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-brand-line { color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.footer-meta {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.footer-meta a { color: rgba(255,255,255,0.6); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Forms ---------- */
.form { max-width: 600px; margin: 0 auto; }
.form-row { margin-bottom: 18px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,37,64,0.12);
}
.form textarea { min-height: 130px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: 16px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 12px; text-align: center; }
@media (max-width: 560px) { .form-row.two { grid-template-columns: 1fr; } }

/* ---------- Service table (compliance pricing) ---------- */
.svc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.svc-table th, .svc-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.svc-table th {
  background: var(--navy-soft);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.svc-table tr:last-child td { border-bottom: none; }
.svc-table tr:hover td { background: var(--bg-alt); }
.svc-table td.price { white-space: nowrap; font-weight: 700; color: var(--navy); font-size: 16px; }
.svc-table td .meta { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}
.step h3 { font-size: 16px; margin-bottom: 6px; color: var(--text); }
.step p { color: var(--muted); font-size: 14px; margin: 0; }
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- App store badges ---------- */
.store-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin: 20px 0; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 11px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.1s;
}
.store-badge:hover { transform: translateY(-1px); text-decoration: none; color: #fff; }
.store-badge .store-icon { font-size: 22px; }
.store-badge .store-text { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge .store-text small { font-size: 10px; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.06em; }
.store-badge .store-text strong { font-size: 16px; font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq details summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary::after {
  content: "+";
  color: var(--navy);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.15s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; color: var(--muted); }

/* ---------- Misc ---------- */
.lede { font-size: 18px; color: var(--muted); }
.callout {
  background: var(--navy-soft);
  border-left: 3px solid var(--navy);
  padding: 16px 20px;
  border-radius: 4px;
  margin: 20px 0;
  color: var(--text);
}
.callout-accent {
  background: var(--accent-soft);
  border-left-color: var(--accent);
}
.divider { border: none; border-top: 1px solid var(--border); margin: 56px 0; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.spacer { height: 32px; }

/* ---------- Real screenshot phone frame (uses actual iPhone capture) ---------- */
.real-phone {
  display: block;
  max-width: 290px;
  width: 100%;
  height: auto;
  border-radius: 38px;
  box-shadow:
    0 0 0 8px #0a1828,
    0 0 0 10px #1a3550,
    0 30px 70px rgba(0,0,0,0.35);
  margin: 0 auto;
}
.real-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
}

/* ---------- Screenshot gallery (FleetScan page) ---------- */
.shot-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 36px;
  align-items: start;
}
.shot {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.shot img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 22px;
  box-shadow:
    0 0 0 5px #0a1828,
    0 0 0 6px #1a3550,
    0 12px 30px rgba(10,37,64,0.25);
  margin-bottom: 18px;
}
.shot-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}
.shot h4 {
  font-size: 15px;
  margin: 0 0 6px;
  color: var(--text);
}
.shot p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 1080px) {
  .shot-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .shot-gallery { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 460px) {
  .shot-gallery { grid-template-columns: 1fr; }
}

/* ---------- Carousel (auto-rotate + drag) ---------- */
.carousel {
  max-width: 720px;
  margin: 40px auto 0;
}
.carousel-viewport {
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.carousel-viewport.dragging { cursor: grabbing; }
.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-track.no-transition { transition: none; }
.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 16px;
}
.carousel-slide img {
  max-width: 290px;
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow:
    0 0 0 7px #0a1828,
    0 0 0 9px #1a3550,
    0 25px 60px rgba(10,37,64,0.35);
  pointer-events: none;
  -webkit-user-drag: none;
}
.carousel-caption {
  text-align: center;
  min-height: 56px;
  padding: 0 20px;
}
.carousel-caption h4 {
  font-size: 17px;
  margin: 0 0 4px;
  color: var(--text);
}
.carousel-caption p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
}
.carousel-btn {
  background: #fff;
  border: 1px solid var(--border-strong);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s, transform 0.05s, color 0.15s;
  padding: 0;
}
.carousel-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.carousel-btn:active { transform: scale(0.94); }
.carousel-dots {
  display: flex;
  gap: 9px;
  align-items: center;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--border-strong);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s, width 0.2s;
}
.carousel-dot:hover { background: var(--navy); }
.carousel-dot.active {
  background: var(--navy);
  width: 24px;
  border-radius: 5px;
}
