/* ============================================================
   index.css — Scan IT Buy IT (performance-optimized)
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --navy:        #0B1F3A;
  --navy-deep:   #071322;
  --navy-mid:    #0F2845;
  --orange:      #E8590C;
  --orange-lite: #F9A96C;
  --orange-bg:   #FEF0E7;
  --orange-bdr:  #F9C4A0;
  --orange-dark: #C94C08;
  --cream:       #F8F4F0;
  --white:       #ffffff;
  --text-dark:   #0B1F3A;
  --text-mid:    #3A5068;
  --text-muted:  #5C6E7E;
  --text-light:  #6B8090;
  --border:      #E8EDF2;
  --border-mid:  #D0D9E2;
  --blue-bg:     #E6F1FB;
  --green-bg:    #EBF9F3;
  --purple-bg:   #F0ECFE;
  --nav-text:    #8BAABF;
  --nav-dim:     #6B8DA5;
  --font-head:   'Syne', 'Segoe UI', system-ui, sans-serif;
  --font-body:   'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --radius-sm:   7px;
  --radius-md:   11px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --shadow-card: 0 6px 24px rgba(232, 89, 12, 0.10);
  --shadow-sm:   0 2px 8px rgba(11, 31, 58, 0.08);
  --shadow-nav:  0 1px 0 rgba(255, 255, 255, 0.06);
  --transition:  0.22s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Avoid font-weight synthesis when the requested weight isn't loaded */
  font-synthesis: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* Default lazy-decode for any non-eager image */
img { content-visibility: auto; }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
abbr[title] { text-decoration: none; color: var(--orange); }
address { font-style: normal; }

/* ── Accessibility ──────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2.5px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/*
  PERFORMANCE: content-visibility lets the browser skip rendering work for
  off-screen sections until they scroll into view. `contain-intrinsic-size`
  reserves space so the scrollbar doesn't jump. Applied via .cv-auto so we
  opt-in only for below-the-fold sections.
*/
.cv-auto {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Page Wrapper ───────────────────────────────────────────── */
.pg {
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Announcement Bar ───────────────────────────────────────── */
.announce-bar {
  background: var(--orange-bg);
  border-bottom: 1px solid var(--orange-bdr);
  padding: 9px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--orange-dark);
  font-weight: 500;
}

.announce-bar a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announce-bar a:hover { color: var(--orange-dark); }

/* ── Site Header ────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  box-shadow: var(--shadow-nav);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  font-family: var(--font-head);
  flex-shrink: 0;
}

.logo-mark img { width: 80px;}

.logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  font-family: var(--font-head);
}

.logo-text em {
  color: var(--orange);
  font-style: normal;
  display: block;
}

/* Primary Nav */
.primary-nav ul {
  display: flex;
  gap: 2px;
  align-items: center;
}

.primary-nav a {
  color: var(--nav-text);
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* Header CTA */
.btn-header-cta {
  background: var(--orange);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  /* transform changes get composited — cheap. background is paint-only. */
  transition: background-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-header-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav.open { display: block; }

.mobile-nav ul {
  padding: 12px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav a {
  color: var(--nav-text);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: block;
  transition: color var(--transition), background-color var(--transition);
}

.mobile-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.btn-mobile-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  text-align: center;
  margin-top: 6px;
}

/* ── Hero Section ───────────────────────────────────────────── */
/*
  Fixed: original had `padding: 1px 1px 1px` with `min-height: 100vh` which
  pushed content to the top and wasted viewport space. Restored sensible
  vertical padding so content is centred and the hero is not oversized.
*/
.hero {
  background: var(--cream);
  padding: 96px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-bg);
  color: #C4430A;
  border: 1px solid var(--orange-bdr);
  padding: 6px 15px;
  border-radius: var(--radius-xl);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--font-body);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.6s infinite;
}

/* opacity-only animation — runs on the compositor, no layout/paint cost */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-heading {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -1px;
  /* Hint to the browser that this text is large/important to lay out early */
  text-wrap: balance;
}

.hero-heading em {
  color: var(--orange);
  font-style: normal;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-main {
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color var(--transition), transform var(--transition);
}

.btn-main:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: var(--white);
  color: var(--text-dark);
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--border-mid);
  transition: border-color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item svg { color: var(--orange); flex-shrink: 0; }

/* Hero Decorative Elements */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  /* Promote to its own layer so the soft radials don't re-paint during scroll */
  transform: translateZ(0);
}

.deco-circle { position: absolute; border-radius: 50%; }

.deco-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 89, 12, 0.07), transparent 70%);
  top: -180px;
  right: -180px;
}

.deco-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(11, 31, 58, 0.05), transparent 70%);
  bottom: -100px;
  left: -80px;
}

/*
  PERFORMANCE: the old version painted two full-viewport linear-gradients
  (the grid) on every repaint. Switched to a single SVG data-URI tile
  background — one decoded image, tiled by the GPU. Cheaper and sharper.
*/
.deco-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><path d='M40 0H0v40' fill='none' stroke='%230B1F3A' stroke-opacity='0.04' stroke-width='1'/></svg>");
  background-size: 40px 40px;
}

/* ── Stats Strip ────────────────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  padding: 28px 24px;
}

.stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.stat { text-align: center; padding: 10px 40px; }

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.stat-n {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--orange-lite);
  font-family: var(--font-head);
  letter-spacing: -0.5px;
}

.stat-l {
  display: block;
  font-size: 11.5px;
  color: var(--nav-dim);
  margin-top: 3px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ── Shared Section Styles ──────────────────────────────────── */
.sec { padding: 80px 24px; background: var(--white); }
.sec.tinted { background: var(--cream); }
.sec-inner { max-width: 900px; margin: 0 auto; }
.sec-hd { text-align: center; margin-bottom: 52px; }

.sec-pill {
  display: inline-block;
  background: var(--orange-bg);
  color: #C4430A;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: var(--radius-xl);
  margin-bottom: 12px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.sec-hd h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  text-wrap: balance;
}

.sec-hd p {
  font-size: 15.5px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Features Grid ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  /*
    Original transitioned border, box-shadow, AND transform. box-shadow
    transitions cause expensive paints on every frame. Drop it on
    transition (the shadow still appears on hover, just snaps in) and
    keep the cheap composited transform.
  */
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.ci {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 16px;
}

.ci-o { background: var(--orange-bg); }
.ci-b { background: var(--blue-bg); }
.ci-g { background: var(--green-bg); }
.ci-p { background: var(--purple-bg); }

.card h3 {
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── How It Works ───────────────────────────────────────────── */
.steps-list {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  margin: 0 auto;
  counter-reset: steps;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.step-item:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--orange-bdr);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  text-align: right;
  padding-top: 2px;
  letter-spacing: -1px;
}

.step-body h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: var(--orange-lite);
  transform: translateY(-3px);
}

.testimonial-card blockquote p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-card blockquote p::before {
  content: '"';
  color: var(--orange);
  font-size: 28px;
  line-height: 0;
  vertical-align: -10px;
  margin-right: 4px;
  font-family: Georgia, serif;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card figcaption strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-card figcaption span {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

.faq-item dt h3 {
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.faq-item dd {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CTA / Download Section ─────────────────────────────────── */
.cta-sec {
  background: var(--navy);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-deco {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--orange);
  border-radius: 50%;
  top: -280px;
  right: -160px;
  opacity: 0.05;
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-sec h2 {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-wrap: balance;
}

.cta-sec p {
  font-size: 16px;
  color: var(--nav-text);
  margin-bottom: 32px;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  padding: 15px 34px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15.5px;
  display: inline-block;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
  margin-bottom: 24px;
}

.btn-orange:hover {
  background: var(--orange-lite);
  color: var(--navy);
  transform: translateY(-2px);
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  transition: background-color var(--transition), border-color var(--transition);
}

.store-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ── Contact Section (shared with contactus.html) ───────────── */
.contact-inner { max-width: 680px; }
.contact-form { margin-top: 8px; }

.contact-form fieldset {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14.5px;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 89, 12, 0.12);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #9BAABB; }

.form-check { display: flex; align-items: center; gap: 10px; }

.form-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  border: 1.5px solid var(--border-mid);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--orange);
}

.form-check label {
  font-size: 13.5px;
  color: var(--text-muted);
}

.form-check a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-submit {
  margin-top: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 13px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  transition: background-color var(--transition), transform var(--transition);
}

.btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* ── Site Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  padding: 52px 40px 24px;
  margin-top: auto;
}

.ft-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ft-brand { flex: 1; min-width: 180px; }

.ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.logo-mark-sm {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-head);
  flex-shrink: 0;
}

.brand-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-head);
}

.brand-name em { color: var(--orange); font-style: normal; }

.ft-tagline { font-size: 12.5px; color: #3A5A70; margin-bottom: 14px; }
.ft-address { font-size: 12.5px; color: #456070; line-height: 1.8; }

.ft-address a {
  color: var(--nav-dim);
  transition: color var(--transition);
}

.ft-address a:hover { color: var(--white); }

.ft-nav { display: flex; gap: 48px; flex-wrap: wrap; }

.ft-nav-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: #3A5A70;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.ft-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-nav-col a {
  color: var(--nav-dim);
  font-size: 13.5px;
  font-weight: 500;
  transition: color var(--transition);
}

.ft-nav-col a:hover { color: var(--white); }

/* Footer Social (shared) */
.ft-social h4 {
  font-size: 12px;
  font-weight: 700;
  color: #3A5A70;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.social-row { display: flex; gap: 8px; }

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nav-dim);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.social-link:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* Privacy Accordion (shared with privacy.html) */
.privacy-section {
  max-width: 980px;
  margin: 28px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}

.privacy-section details { border-radius: var(--radius-sm); }

.privacy-section summary {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--nav-dim);
  cursor: pointer;
  padding: 10px 0;
  user-select: none;
  list-style: none;
  transition: color var(--transition);
}

.privacy-section summary::before { content: '▸ '; color: var(--orange); font-size: 11px; }
details[open] summary::before { content: '▾ '; }
.privacy-section summary:hover { color: var(--white); }

.privacy-body {
  padding: 18px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.privacy-body h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--nav-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: -6px;
}

.privacy-body p { font-size: 13px; color: #3A5A70; line-height: 1.7; }

.privacy-body a {
  color: var(--orange-lite);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Footer Bottom Bar */
.ft-bottom {
  max-width: 980px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.ft-bottom p { font-size: 12px; color: #2E4A5A; }

/* ── Responsive Breakpoints ─────────────────────────────────── */

/* Tablet */
@media (max-width: 860px) {
  .header-inner { padding: 14px 24px; }
  .btn-header-cta { display: none; }
  .ft-nav { gap: 32px; }
}

/* Mobile */
@media (max-width: 620px) {
  .header-inner { padding: 13px 18px; }
  .primary-nav, .btn-header-cta { display: none; }
  .menu-toggle { display: flex; }

  .hero { padding: 64px 20px 56px; }
  .hero-heading { font-size: 34px; letter-spacing: -0.5px; }
  .hero-sub { font-size: 15.5px; }

  .stat { padding: 12px 20px; min-width: 45%; }
  .stat-divider { display: none; }

  .sec { padding: 56px 20px; }
  .sec-hd h2 { font-size: 26px; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .site-footer { padding: 40px 20px 20px; }
  .ft-inner { flex-direction: column; gap: 28px; }
  .ft-nav { gap: 28px; }
  .ft-bottom { flex-direction: column; text-align: center; gap: 6px; }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero-heading { font-size: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; align-items: center; }
  .btn-main, .btn-outline { width: 100%; justify-content: center; }
}

/* ============================================================
   Privacy Page — #privacy-page (shared)
   ============================================================ */
#privacy-page {
  background: var(--cream);
  min-height: 60vh;
  padding: 60px 24px 80px;
}

#privacy-page .pp-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 52px 56px;
  box-shadow: 0 4px 32px rgba(11, 31, 58, 0.07);
}

#privacy-page .page-badge {
  display: inline-block;
  background: var(--orange-bg);
  color: #C4430A;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

#privacy-page h1 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 10px;
}

#privacy-page .meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1.5px solid var(--border);
}

.pp-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.pp-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.pp-block h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.pp-block h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--orange);
  border-radius: 3px;
  flex-shrink: 0;
}

.pp-block p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; }

.pp-block ul {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pp-block ul li {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
}

.pp-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--orange-bdr);
  border-radius: 50%;
}

.pp-block ul li strong { color: var(--text-dark); font-weight: 600; }

.highlight {
  background: var(--orange-bg);
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 14px;
  color: #8B3A0A;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 16px;
}

#privacy-page a[href^="mailto"] {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

#privacy-page a[href^="mailto"]:hover { color: var(--orange-dark); }

@media (max-width: 720px) {
  #privacy-page { padding: 36px 16px 60px; }
  #privacy-page .pp-card { padding: 32px 24px; border-radius: 14px; }
  #privacy-page h1 { font-size: 26px; }
  .pp-block { margin-bottom: 24px; padding-bottom: 24px; }
}

/* ── Print Styles ───────────────────────────────────────────── */
@media print {
  .site-header,
  .announce-bar,
  .cta-sec,
  .ft-social,
  .btn-row,
  .store-badges,
  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  body { font-size: 12pt; color: #000; background: #fff; }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #555;
  }

  /* Don't waste ink on backgrounds when printing */
  .hero, .sec.tinted, .stats-strip { background: #fff !important; }
}

#app-content { position: relative; z-index: 1; }