/* =========================================================
   Arresti VPN — shared stylesheet
   Re-skin: change the :root block only.
   ========================================================= */

:root {
  /* ---- Brand colours (from official SVG logos) ---- */
  --navy: #192148;
  --navy-soft: #2a3260;
  --navy-deep: #0f1530;
  --gold-light: #f4d320;
  --gold-mid: #f4a020;
  --gold-deep: #f48f20;
  --gold-gradient: linear-gradient(135deg, #f4d320 0%, #f48f20 100%);

  /* ---- Surfaces ---- */
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-muted: #eef1f7;
  --bg-dark: var(--navy);

  /* ---- Text ---- */
  --text: #1f2440;
  --text-soft: #5a6080;
  --text-mute: #8a8fa8;
  --text-on-dark: #ffffff;
  --text-on-dark-soft: rgba(255,255,255,0.78);

  /* ---- Functional ---- */
  --border: #e4e7ee;
  --border-soft: #eef0f5;
  --success: #1aa86b;
  --danger: #d94545;

  /* ---- TBC highlight (amber, accessible) ---- */
  --tbc-bg: #fff4d6;
  --tbc-border: #f4a020;
  --tbc-text: #6b4500;

  /* ---- Legal banner ---- */
  --legal-bg: #fff7e6;
  --legal-border: #f4a020;

  /* ---- Shape ---- */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* ---- Shadow ---- */
  --shadow-xs: 0 1px 2px rgba(25,33,72,0.05);
  --shadow-sm: 0 2px 6px rgba(25,33,72,0.06);
  --shadow-md: 0 8px 20px rgba(25,33,72,0.08);
  --shadow-lg: 0 20px 40px rgba(25,33,72,0.12);
  --shadow-gold: 0 4px 10px rgba(244,143,32,0.22);
  --shadow-navy: 0 8px 24px rgba(25,33,72,0.18);

  /* ---- Layout ---- */
  --container: 1200px;
  --gutter: 24px;
  --section-y: 96px;
  --section-y-mobile: 56px;

  /* ---- Type ---- */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
}

/* =========================================================
   Reset / base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 120px; }

/* =========================================================
   Pricing comparison table
   ========================================================= */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-width: 600px;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
  font-size: .95rem;
}
.compare-table thead th {
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  border-bottom: 2px solid var(--border);
}
.compare-table tbody th[scope="row"] {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg-soft);
  border-right: 1px solid var(--border-soft);
  font-size: .95rem;
}
.compare-table .compare-table__us {
  background: rgba(245, 194, 15, 0.10);
  font-weight: 700;
  color: var(--navy);
  border-left: 2px solid #f5c20f;
  border-right: 2px solid #f5c20f;
}
.compare-table thead .compare-table__us {
  background: linear-gradient(135deg, #fff5cf 0%, #ffe9a8 100%);
  color: var(--navy);
}
.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th { border-bottom: 0; }
.compare-table .tick-ok { color: var(--success); font-size: 1.3rem; font-weight: 800; }
.compare-table .tick-no { color: #b94545; font-size: 1.3rem; font-weight: 800; }

/* =========================================================
   Server locations grid
   ========================================================= */
.server-region {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: box-shadow .15s ease, transform .15s ease;
}
.server-region:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.server-region h4 {
  font-size: 1rem;
  margin: 0 0 4px;
  color: var(--navy);
}
.server-region p {
  margin: 0;
  font-size: .9rem;
  color: var(--text-soft);
}

/* =========================================================
   Status indicator pulse animation
   ========================================================= */
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(26,168,107,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(26,168,107,0.10); }
}

/* =========================================================
   Social links row (in footer)
   ========================================================= */
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background .15s ease, transform .15s ease;
}
.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.social-links svg { width: 18px; height: 18px; }

/* =========================================================
   Testimonial / video section
   ========================================================= */
.testimonial-section {
  position: relative;
  background:
    radial-gradient(circle at 80% 15%, rgba(244,160,32,0.16), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(244,160,32,0.10), transparent 50%),
    linear-gradient(160deg, #1d2654 0%, #232b58 55%, #2a3260 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: .55;
  pointer-events: none;
}
.testimonial-section > .container { position: relative; z-index: 1; }
.testimonial-section h2 { color: #fff; margin-bottom: 32px; }
.testimonial-section .stars {
  display: inline-flex; gap: 4px; margin-bottom: 12px;
}
.testimonial-section .stars svg { width: 24px; height: 24px; fill: #f5c20f; }
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* =========================================================
   Sticky mobile sign-up bar
   ========================================================= */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 2px solid #f5c20f;
  padding: 12px 16px;
  z-index: 55;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
}
.sticky-mobile-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-mobile-cta__price {
  color: #fff;
  font-size: .92rem;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}
.sticky-mobile-cta__price strong {
  display: block;
  font-size: 1.05rem;
  color: var(--gold);
}
.sticky-mobile-cta .btn {
  flex-shrink: 0;
  padding: 11px 18px;
  font-size: .92rem;
}
@media (max-width: 700px) {
  .sticky-mobile-cta { display: block; }
  body.has-sticky-cta { padding-bottom: 80px; }
}
/* Hide on sign-up page (no point — they're already there) */
body.no-sticky-cta .sticky-mobile-cta { display: none !important; }

/* =========================================================
   Exit-intent modal
   ========================================================= */
.exit-modal {
  position: fixed;
  inset: 0;
  background: rgba(12,20,50,0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
  padding: 20px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .2s ease;
}
.exit-modal.is-open { display: flex; opacity: 1; }
.exit-modal__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transform: scale(.96);
  transition: transform .2s ease;
}
.exit-modal.is-open .exit-modal__card { transform: scale(1); }
.exit-modal__close {
  position: absolute; top: 12px; right: 12px;
  background: transparent; border: 0; cursor: pointer;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-soft);
}
.exit-modal__close:hover { background: var(--bg-soft); color: var(--navy); }
.exit-modal h2 { font-size: 1.6rem; margin: 0 0 12px; }
.exit-modal p { color: var(--text-soft); margin: 0 0 22px; }
.exit-modal .exit-modal__badge {
  display: inline-block;
  background: #1aa86b;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* =========================================================
   Newsletter prominence banner (homepage)
   ========================================================= */
.newsletter-banner {
  background: linear-gradient(135deg, #fff5cf 0%, #ffe9a8 100%);
  border-top: 1px solid #f3d77a;
  border-bottom: 1px solid #f3d77a;
  padding: 32px 0;
}
.newsletter-banner__inner {
  display: grid;
  gap: 18px;
  align-items: center;
  text-align: center;
}
@media (min-width: 900px) {
  .newsletter-banner__inner { grid-template-columns: 1fr auto; text-align: left; }
}
.newsletter-banner h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 1.25rem;
}
.newsletter-banner p {
  margin: 0;
  color: var(--text);
  font-size: .95rem;
}
.newsletter-banner .badge-10 {
  background: var(--navy);
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .1em;
  padding: 3px 9px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
  font-weight: 700;
}
.newsletter-banner form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-banner input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  background: #fff;
}

/* =========================================================
   Blog post layout — image+title hero, content+sidebar body
   ========================================================= */
.post {
  padding: 48px 0 80px;
}
.post__crumb { font-size: .9rem; color: var(--text-soft); margin-bottom: 18px; }
.post__crumb a { color: var(--gold-deep); text-decoration: none; }
.post__crumb a:hover { text-decoration: underline; }

.post-header-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: stretch;
  margin-bottom: 48px;
}
@media (min-width: 900px) {
  .post-header-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
  }
}

.post-hero-image {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: #192148;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (min-width: 900px) {
  .post-hero-image { aspect-ratio: 4/3; min-height: 340px; }
}

.post-header-text { display: flex; flex-direction: column; justify-content: center; }
.post-tag {
  display: inline-block;
  background: rgba(245, 194, 15, 0.18);
  color: var(--gold-deep);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.post-header-text h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin: 0 0 18px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.post-header-text .post-lead {
  font-size: 1.08rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}

.post-body-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .post-body-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
  }
}

.post-content { min-width: 0; }
.post-content h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 14px;
}
.post-content h2:first-child { margin-top: 0; }
.post-content p,
.post-content ul,
.post-content ol { font-size: 1.04rem; line-height: 1.72; color: var(--text); margin: 0 0 16px; }
.post-content ul, .post-content ol { padding-left: 22px; }
.post-content li { margin-bottom: 8px; }

.post-sidebar { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 900px) {
  .post-sidebar { position: sticky; top: 130px; }
}

.sidebar-cta {
  background: linear-gradient(180deg, #fff5cf 0%, #ffe9a8 100%);
  border: 1px solid #f3d77a;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.sidebar-cta h3 { font-size: 1.15rem; margin: 0 0 8px; color: var(--navy); }
.sidebar-cta p { color: var(--text-soft); font-size: .92rem; margin: 0 0 18px; line-height: 1.5; }
.sidebar-cta .price { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin: 0 0 4px; letter-spacing: -0.01em; }
.sidebar-cta .price-sub { font-size: .82rem; color: var(--text-soft); margin: 0 0 18px; }
.sidebar-cta .sidebar-cta__perks {
  list-style: none; padding: 0; margin: 0 0 18px;
  text-align: left; font-size: .9rem;
}
.sidebar-cta .sidebar-cta__perks li {
  position: relative; padding-left: 22px; margin-bottom: 6px; color: var(--navy);
}
.sidebar-cta .sidebar-cta__perks li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--success); font-weight: 800;
}

.sidebar-related {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.sidebar-related h4 {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 700;
  margin: 0 0 12px;
}
.sidebar-related ul { list-style: none; padding: 0; margin: 0; }
.sidebar-related li { margin: 0; }
.sidebar-related a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--border-soft);
  color: var(--navy);
  text-decoration: none;
  font-size: .92rem;
  line-height: 1.4;
  transition: color .15s ease, padding .15s ease;
}
.sidebar-related li:first-child a { border-top: 0; padding-top: 0; }
.sidebar-related a:hover { color: var(--gold-deep); padding-left: 4px; }

/* =========================================================
   Back-to-top floating button
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #f5c20f;
  color: #192148;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.20), 0 0 0 1px rgba(0,0,0,0.04);
  z-index: 60;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s, background .15s ease, box-shadow .15s ease;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); visibility: visible; }
.back-to-top:hover { background: #ffd11a; box-shadow: 0 14px 30px rgba(0,0,0,0.22); transform: translateY(-2px); }
.back-to-top:focus-visible { outline: 2px solid #192148; outline-offset: 3px; }
.back-to-top svg { width: 22px; height: 22px; stroke: currentColor; }
@media (max-width: 700px) {
  .back-to-top { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity .15s ease; }
  .back-to-top:hover { transform: none; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--gold-deep); }
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .5em;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25rem; }
li { margin-bottom: .35em; }
strong, b { font-weight: 700; color: var(--navy); }
small { color: var(--text-soft); font-size: .85em; }
hr { border: 0; border-top: 1px solid var(--border-soft); margin: 2.5rem 0; }

/* =========================================================
   Layout helpers
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-y-mobile) 0; }
.section--tight { padding: calc(var(--section-y-mobile) * 0.6) 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--navy); color: var(--text-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--text-on-dark); }
.section--dark a { color: var(--gold-light); }
.section--dark a:hover { color: #ffffff; }

@media (min-width: 768px) {
  .section { padding: var(--section-y) 0; }
  .section--tight { padding: calc(var(--section-y) * 0.6) 0; }
}

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .75rem;
}
.section--dark .eyebrow { color: var(--gold-light); }
.lead { font-size: 1.18rem; color: var(--text-soft); max-width: 56ch; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
  /* horizontal padding inherited from .container — do not override */
}
.site-header__logo img { height: 34px; width: auto; }
.site-nav { display: none; }
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: .96rem;
}
.site-nav a:hover { color: var(--gold-deep); }
.site-header__cta { display: flex; align-items: center; gap: 14px; }
.site-header__cta .nav-login { display: none; font-weight: 500; color: var(--text); }

@media (min-width: 900px) {
  .site-nav { display: block; }
  .site-header__cta .nav-login { display: inline-block; }
}

/* Mobile menu toggle */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.menu-toggle svg { width: 20px; height: 20px; }
@media (min-width: 900px) { .menu-toggle { display: none; } }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border-soft);
  background: var(--bg);
  padding: 16px 0 24px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li { margin: 0; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-soft);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  white-space: nowrap;
  min-height: 44px;
  letter-spacing: 0.01em;
}
.btn:active { transform: translateY(1px); }
/* Size modifiers collapse to base — all buttons identical across the site */
.btn--sm, .btn--lg { padding: 13px 28px; font-size: 1rem; border-radius: 10px; }
.btn--primary {
  background: #f5c20f;
  color: var(--navy);
  box-shadow: 0 2px 0 rgba(0,0,0,0.04);
}
.btn--primary:hover { color: var(--navy); background: #ffd11a; box-shadow: 0 4px 10px rgba(245,194,15,0.32); }
.btn--primary:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
.btn--secondary {
  background: var(--navy);
  color: #fff;
}
.btn--secondary:hover { background: var(--navy-soft); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn--ghost:hover { background: var(--bg-soft); color: var(--navy); }
.btn--on-dark {
  background: #fff;
  color: var(--navy);
}
.btn--on-dark:hover { background: var(--bg-soft); }
.btn--lg { padding: 16px 28px; font-size: 1.05rem; }
.btn--sm { padding: 9px 16px; font-size: .88rem; }
.btn--block { display: flex; width: 100%; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% -10%, rgba(244,160,32,0.18), transparent 45%),
    radial-gradient(circle at -10% 110%, rgba(25,33,72,0.08), transparent 45%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero { padding: 96px 0 80px; }
  .hero__inner { grid-template-columns: 1.05fr 1fr; gap: 64px; }
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 18px;
}
.hero__title .accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 1.18rem;
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 52ch;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  font-size: .9rem;
  color: var(--text-soft);
}
.hero__trust .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  font-weight: 500;
  color: var(--text);
}
.hero__trust .pill svg { width: 16px; height: 16px; }

/* Hero visual (right side, inline SVG-driven mockup) */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  width: 100%;
  max-width: 440px;
}
.device-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.device-card__brand { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); }
.device-card__brand img { height: 26px; width: 26px; }
.device-card__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600;
  color: var(--success);
}
.device-card__status::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 4px rgba(26,168,107,.18);
}
.device-card__map {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
  position: relative;
  min-height: 180px;
}
.device-card__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--border-soft);
}
.device-card__row:first-child { border-top: none; }
.device-card__row .label { color: var(--text-soft); font-size: .9rem; }
.device-card__row .value { color: var(--navy); font-weight: 600; font-size: .95rem; }
.device-card__cta {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* =========================================================
   Feature grid / cards
   ========================================================= */
.grid {
  display: grid;
  gap: 24px;
}
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid--3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: 1fr 1fr 1fr; } }

.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid--4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: transform .15s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff5cf 0%, #ffe6a8 100%);
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-soft); margin-bottom: 0; }

/* =========================================================
   Section header
   ========================================================= */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head--left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--text-soft); font-size: 1.1rem; margin-bottom: 0; }

/* =========================================================
   Split (feature row alternating)
   ========================================================= */
.split {
  display: grid;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--border-soft);
}
.split:first-of-type { border-top: 0; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 72px; padding: 72px 0; }
  .split--reverse > :first-child { order: 2; }
}
.split__visual {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
}

/* =========================================================
   Pricing
   ========================================================= */
.pricing-wrap {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px;
  min-height: 460px;
  margin-bottom: 24px;
}
.price-note {
  text-align: center;
  color: var(--text-soft);
  font-size: .92rem;
  margin-top: 18px;
}
.price-note strong { color: var(--navy); }

/* Prominent trust-icon badges for pricing trust cards */
.card--trust { text-align: center; padding: 32px 28px; }
.card--trust .trust-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  box-shadow:
    0 0 0 6px rgba(25,33,72,0.06),
    0 10px 22px rgba(25,33,72,0.16);
}
.card--trust .trust-icon svg { width: 28px; height: 28px; }
.card--trust h3 { margin-bottom: 10px; }
.card--trust p { color: var(--text-soft); }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials { display: grid; gap: 24px; }
@media (min-width: 700px) { .testimonials { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .testimonials { grid-template-columns: 1fr 1fr 1fr; } }
.testimonial {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: Georgia, serif;
  position: absolute;
  top: 8px; left: 16px;
  font-size: 3rem; line-height: 1;
  color: var(--gold-deep);
  opacity: .35;
}
.testimonial h4 { font-size: 1.05rem; margin-bottom: 12px; }
.testimonial p { color: var(--text); font-size: .98rem; }
.testimonial__author {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  font-size: .9rem; color: var(--text-soft);
}
.testimonial__stars {
  display: inline-flex; gap: 2px; color: var(--gold-deep); margin-bottom: 10px;
}

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 0;
  transition: box-shadow .15s ease;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem; line-height: 1; color: var(--gold-deep);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: '\2212'; }
.faq .faq__body {
  padding: 0 24px 22px;
  color: var(--text-soft);
}
.faq .faq__body p:last-child { margin-bottom: 0; }

/* =========================================================
   Forms
   ========================================================= */
.form { display: grid; gap: 18px; max-width: 560px; }
.form label {
  display: block;
  font-weight: 600; font-size: .92rem; color: var(--navy);
  margin-bottom: 6px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(244,160,32,0.18);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .form-note { font-size: .85rem; color: var(--text-soft); }

/* (Legacy .app-badge styles removed — all store buttons now use the official
   black .store-badge component defined further down for Apple/Google brand compliance.) */

/* =========================================================
   Footer (unified across all pages)
   ========================================================= */
.site-footer {
  background: var(--navy);
  color: var(--text-on-dark-soft);
  padding: 56px 0 24px;
}
.site-footer a { color: var(--text-on-dark-soft); }
.site-footer a:hover { color: var(--gold-light); }

/* Newsletter band — full-width, at the top of footer */
.footer-newsletter {
  display: grid;
  gap: 28px;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 800px) {
  .footer-newsletter { grid-template-columns: 1.1fr 1fr; gap: 48px; }
}
.footer-newsletter h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.footer-newsletter p {
  color: rgba(255,255,255,.78);
  margin-bottom: 0;
  font-size: .98rem;
}
.footer-newsletter h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.footer-newsletter .badge-10 {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: #f5c20f;
  color: var(--navy);
  border-radius: 6px;
  font-weight: 800;
  font-size: .82rem;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  color: #fff;
  font: inherit;
  font-size: .98rem;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #f5c20f;
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(245,194,15,.18);
}
.newsletter-form button { flex-shrink: 0; }
.newsletter-form .form-fineprint {
  flex-basis: 100%;
  margin: 8px 0 0;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.newsletter-form .form-fineprint a { color: rgba(255,255,255,.7); text-decoration: underline; }

/* Footer grid */
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; }
}
.footer-brand img { height: 32px; margin-bottom: 14px; }
.footer-brand .avob {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  font-size: .82rem;
  color: rgba(255,255,255,.78);
  font-weight: 500;
  text-decoration: none;
  transition: color .15s ease, opacity .15s ease;
}
.footer-brand .avob:hover { color: var(--gold-light); }
.footer-brand .avob:hover .avob-logo { opacity: 1; }
.footer-brand .avob-logo {
  height: 28px;
  width: auto;
  /* AVOB logo is dark by default — invert to white so it's visible on navy.
     Slight opacity drop so it doesn't dominate the Arresti wordmark above. */
  filter: brightness(0) invert(1);
  opacity: .8;
  flex-shrink: 0;
}
.footer-col h5 {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .94rem; }

.footer-apps h5 {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
/* Footer: stack the official black badges at consistent width */
.footer-apps .store-badge {
  background: #000;
  border: 0;
  width: 100%;
  max-width: 220px;
  margin-bottom: 10px;
}
.footer-apps .store-badge:last-child { margin-bottom: 0; }
.footer-apps .store-badge:hover { background: #000; opacity: 0.85; }

.footer-meta {
  text-align: center;
  padding-top: 24px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}

/* =========================================================
   TBC placeholder + Legal banner
   ========================================================= */
.tbc {
  background: var(--tbc-bg);
  color: var(--tbc-text);
  border: 1px dashed var(--tbc-border);
  border-radius: 6px;
  padding: 2px 8px;
  font-family: var(--font-mono);
  font-size: .85em;
  font-weight: 600;
}

.legal-banner {
  background: var(--legal-bg);
  border-left: 4px solid var(--legal-border);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
  font-size: .95rem;
}
.legal-banner strong { color: var(--navy); }

/* =========================================================
   Article / Legal / Blog body
   ========================================================= */
.prose {
  max-width: 780px;
  margin: 0 auto;
}
.prose--wide {
  max-width: 960px;
}
.prose h1 { margin-bottom: 12px; }
.prose .meta { color: var(--text-soft); font-size: .92rem; margin-bottom: 32px; }
.prose h2 {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  scroll-margin-top: 80px;
}
.prose h3 {
  margin-top: 1.6rem;
  font-size: 1.2rem;
}
.prose p, .prose li { color: var(--text); }
.prose ol, .prose ul { padding-left: 1.4rem; }
.prose ol > li, .prose ul > li { margin-bottom: .5rem; }
.prose a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--navy); }

/* =========================================================
   CTA strip
   ========================================================= */
.cta-strip {
  background: var(--navy);
  color: #fff;
  padding: 56px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  background-image:
    radial-gradient(circle at 90% -10%, rgba(244,160,32,0.28), transparent 45%),
    radial-gradient(circle at -10% 110%, rgba(244,160,32,0.16), transparent 45%);
}
.cta-strip h2 { color: #fff; margin-bottom: 14px; }
.cta-strip p { color: rgba(255,255,255,.8); max-width: 56ch; margin: 0 auto 24px; font-size: 1.05rem; }

/* =========================================================
   Step list (1, 2, 3)
   ========================================================= */
.steps { display: grid; gap: 32px; }
@media (min-width: 800px) { .steps { grid-template-columns: 1fr 1fr 1fr; } }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--navy);
  font-weight: 800; font-size: 1.1rem;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-soft); margin-bottom: 0; }

/* =========================================================
   Blog cards
   ========================================================= */
.blog-grid { display: grid; gap: 28px; }
@media (min-width: 700px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .blog-grid { grid-template-columns: 1fr 1fr 1fr; } }
.blog-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card__cover {
  aspect-ratio: 16 / 9;
  background: var(--gold-gradient);
  position: relative;
}
.blog-card__cover.alt { background: linear-gradient(135deg, #192148 0%, #2a3260 100%); }
.blog-card__cover.alt2 { background: linear-gradient(135deg, #f4a020 0%, #f48f20 100%); }
.blog-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__tag {
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 10px;
}
.blog-card__body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.blog-card__body p { color: var(--text-soft); flex: 1; }
.blog-card__meta {
  margin-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: var(--text-mute);
}

/* =========================================================
   Utility
   ========================================================= */
.text-center { text-align: center; }
.muted { color: var(--text-soft); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: 12px; }
.gap-md { gap: 20px; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }
.hidden-mobile { display: none; }
@media (min-width: 700px) { .hidden-mobile { display: initial; } .hidden-desktop { display: none; } }

/* =========================================================
   Scroll reveal (Intersection Observer)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.25,1), transform .7s cubic-bezier(.2,.7,.25,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="100"] { transition-delay: .1s; }
.reveal[data-delay="200"] { transition-delay: .2s; }
.reveal[data-delay="300"] { transition-delay: .3s; }
.reveal[data-delay="400"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Hero — navy variant with phone + map (new homepage)
   ========================================================= */
.hero-navy {
  position: relative;
  background:
    radial-gradient(circle at 85% 10%, rgba(244,160,32,0.18), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(244,160,32,0.10), transparent 45%),
    linear-gradient(160deg, #0f1530 0%, #192148 55%, #232b58 100%);
  color: var(--text-on-dark);
  overflow: hidden;
  padding: 72px 0 80px;
}
.hero-navy::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.04) 1px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: .6;
  pointer-events: none;
}
.hero-navy .container { position: relative; z-index: 2; }
.hero-navy h1, .hero-navy h2, .hero-navy h3 { color: #fff; }
.hero-navy .eyebrow { color: var(--gold-light); }
.hero-navy__inner {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-navy { padding: 96px 0 96px; }
  .hero-navy__inner { grid-template-columns: 1.05fr 1fr; gap: 64px; }
}
/* Compact hero — for text-only heroes (contact, support, legal, etc.) */
.hero-navy--compact {
  padding: 48px 0 40px;
  min-height: 260px;
  display: flex;
  align-items: center;
}
.hero-navy--compact > .container { width: 100%; }
.hero-navy--compact .hero-navy__title {
  font-size: clamp(2rem, 4.4vw, 2.8rem);
}
.hero-navy--compact .hero-navy__lead {
  font-size: 1.08rem;
}
@media (min-width: 900px) {
  .hero-navy--compact { padding: 64px 0 56px; min-height: 320px; }
}
.hero-navy__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero-navy__title .accent {
  background: linear-gradient(135deg, #f4d320 0%, #f48f20 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-navy__lead {
  font-size: 1.18rem;
  color: rgba(255,255,255,.86);
  margin-bottom: 28px;
  max-width: 52ch;
}
.hero-navy .pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
}
.hero-navy .pill .tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  background: var(--success);
  border-radius: 50%;
  color: #fff;
}
.hero-navy .pill .tick svg { width: 11px; height: 11px; }

/* Phone mockup */
.phone-hero {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 520px;
}
.phone-hero__map {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: .9;
}
.phone-hero__map svg { width: 100%; height: 100%; max-width: 560px; }
.phone-frame {
  position: relative; z-index: 2;
  width: 280px;
  border-radius: 38px;
  background: linear-gradient(180deg, #1a1f3a, #0d1126);
  padding: 14px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 0 2px rgba(255,255,255,0.04);
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
}
.phone-screen {
  position: relative;
  border-radius: 26px;
  background: linear-gradient(160deg, #0a1232 0%, #15205a 60%, #0c1430 100%);
  padding: 52px 18px 22px;
  min-height: 540px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
/* Subtle chevron data-flow pattern (mimics live app) */
.phone-screen::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 56%;
  background-image:
    linear-gradient(to bottom, transparent 0%, rgba(74,134,232,0.10) 60%, rgba(74,134,232,0.18) 100%),
    repeating-linear-gradient(115deg, transparent 0 14px, rgba(94,181,255,0.06) 14px 16px);
  pointer-events: none;
  z-index: 0;
}
.phone-screen > * { position: relative; z-index: 1; }
.phone-screen__brand {
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}
.phone-screen__brand img {
  height: 26px; width: auto;
  filter: brightness(0) invert(1);
}
.phone-screen__status,
.phone-screen__ip {
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 4px;
}
.phone-screen__ip { margin-bottom: 22px; }
.phone-screen__status strong { color: #4ade80; font-weight: 600; }
.phone-screen__ip strong { color: #5eb5ff; font-weight: 600; letter-spacing: .01em; }
.connect-btn {
  position: relative;
  width: 168px; height: 168px;
  margin: 8px auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1a3057 0%, #0c1432 80%);
  box-shadow:
    0 0 0 6px rgba(74, 222, 128, 0.18),
    0 0 0 12px rgba(74, 222, 128, 0.08),
    inset 0 0 0 4px #4ade80;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  animation: pulseRing 2.2s ease-in-out infinite;
}
.connect-btn svg { width: 38px; height: 38px; margin-bottom: 6px; }
.connect-btn .label { font-size: .98rem; font-weight: 700; letter-spacing: .04em; }
.connect-btn .sub { font-size: .58rem; font-weight: 500; letter-spacing: .14em; color: rgba(255,255,255,.55); margin-top: 2px; }
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 6px rgba(74,222,128,.18), 0 0 0 12px rgba(74,222,128,.08), inset 0 0 0 4px #4ade80; }
  50% { box-shadow: 0 0 0 10px rgba(74,222,128,.22), 0 0 0 22px rgba(74,222,128,.05), inset 0 0 0 4px #4ade80; }
}
.country-pill {
  margin: auto 0 6px;
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  background: linear-gradient(135deg, #f4d320, #f48f20);
  color: #0c1432;
  border-radius: 999px;
  font-weight: 700;
  font-size: .82rem;
  white-space: nowrap;
  min-width: 0;
}
.country-pill .flag {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.country-pill .flag svg { width: 22px; height: 22px; display: block; }
.country-pill__text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: .01em;
}
.country-pill .arrow {
  margin-left: 4px;
  font-weight: 700;
  color: rgba(12,20,50,.45);
  font-size: .9rem;
  flex-shrink: 0;
}

/* World-map animated dashed route */
.world-route {
  width: 100%;
  height: auto;
  max-width: 560px;
  opacity: .35;
}
@media (min-width: 900px) {
  .world-route { opacity: .55; }
}

/* =========================================================
   Hero illustration (mascot + devices + globe + beams)
   ========================================================= */
.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-illustration svg { width: 100%; height: auto; display: block; }

.hero-connect-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-connect-btn {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1a3057 0%, #0c1432 80%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  pointer-events: auto;
  cursor: pointer;
  border: none;
  font: inherit;
  box-shadow:
    0 0 0 4px rgba(245,194,15, 0.55),
    0 0 0 10px rgba(245,194,15, 0.18),
    0 18px 38px rgba(0,0,0,0.45);
  animation: pulseGoldRing 2.4s ease-in-out infinite;
  transition: transform .15s ease;
}
.hero-connect-btn:hover { color: #fff; transform: scale(1.04); }
.hero-connect-btn svg { width: 32px; height: 32px; margin-bottom: 4px; }
.hero-connect-btn .label { font-size: .82rem; font-weight: 800; letter-spacing: .06em; color: #fff; }
.hero-connect-btn .sub { font-size: .58rem; font-weight: 500; letter-spacing: .14em; color: rgba(255,255,255,.55); margin-top: 2px; }
@keyframes pulseGoldRing {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245,194,15, 0.55), 0 0 0 10px rgba(245,194,15, 0.18), 0 18px 38px rgba(0,0,0,0.45); }
  50% { box-shadow: 0 0 0 8px rgba(245,194,15, 0.55), 0 0 0 22px rgba(245,194,15, 0.04), 0 18px 38px rgba(0,0,0,0.45); }
}

/* =========================================================
   Trust pill green tick variant
   ========================================================= */
.pill .tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  background: var(--success);
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}
.pill .tick svg { width: 11px; height: 11px; }

/* =========================================================
   Official-style App Store / Google Play badges
   Always solid black per Apple/Google brand guidelines.
   ========================================================= */
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 18px;
  background: #000;
  color: #fff;
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  height: 56px;
  min-width: 200px;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.store-badge:hover { transform: translateY(-1px); color: #fff; opacity: 0.9; box-shadow: 0 6px 14px rgba(0,0,0,.35); }
.store-badge__icon { width: 28px; height: 28px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.store-badge__icon svg { width: 100%; height: 100%; display: block; }
.store-badge__text { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.store-badge__text .small {
  font-size: .7rem;
  color: #fff;
  margin-bottom: 3px;
  font-weight: 400;
  letter-spacing: .02em;
}
.store-badge__text .big {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: .005em;
  color: #fff;
}
.store-badges { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.store-badges--centered { justify-content: center; }

/* =========================================================
   Section dividers and dark-band variants
   ========================================================= */
.section--navy {
  background: linear-gradient(180deg, #192148 0%, #20294f 100%);
  color: var(--text-on-dark);
  position: relative;
}
.section--navy::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: .55;
  pointer-events: none;
}
.section--navy .container { position: relative; z-index: 1; }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy p, .section--navy li { color: rgba(255,255,255,.82); }
.section--navy .eyebrow { color: var(--gold-light); }
.section--navy .card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
}
.section--navy .card h3 { color: #fff; }
.section--navy .card p { color: rgba(255,255,255,.78); }

/* Mascot decoration */
.mascot {
  display: inline-block;
  filter: drop-shadow(0 12px 22px rgba(244,160,32,0.18));
}
.mascot--lg { width: clamp(120px, 18vw, 200px); }
.mascot--sm { width: 56px; }

/* =========================================================
   Zoho Forms embed wrappers
   ========================================================= */
.zf-embed {
  width: 100%;
  background: transparent;
  margin: 0;
}
.zf-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
}
/* Footer subscribe iframe — constrain height so it doesn't dominate the footer */
.zf-embed--footer {
  max-width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  overflow: hidden;
}
.zf-embed--footer iframe { height: 380px; }

/* =========================================================
   Login page — split layout: card + brand panel
   ========================================================= */
.login-layout {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto;
  min-height: 540px;
}
@media (min-width: 900px) {
  .login-layout { grid-template-columns: 1.05fr 1fr; }
}
.login-card {
  padding: 48px 32px;
  display: flex; flex-direction: column; justify-content: center;
  text-align: center;
}
@media (min-width: 700px) { .login-card { padding: 64px 56px; } }
.login-card__icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
}
.login-card h1 {
  font-size: 1.7rem; margin-bottom: 8px;
}
.login-card .muted { margin-bottom: 24px; }
.login-card .signup-line {
  font-size: .95rem;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.login-card .signup-line a {
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.login-card .signup-line a:hover { color: var(--gold-deep); }
.login-card .support-line {
  font-size: .85rem;
  color: var(--text-mute);
  margin-bottom: 0;
}

.login-promo {
  position: relative;
  padding: 48px 36px;
  background:
    radial-gradient(circle at 85% 10%, rgba(244,160,32,0.22), transparent 45%),
    radial-gradient(circle at 0% 110%, rgba(244,160,32,0.10), transparent 50%),
    linear-gradient(160deg, #0f1530 0%, #192148 55%, #232b58 100%);
  color: var(--text-on-dark);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 28px;
  overflow: hidden;
}
@media (min-width: 700px) { .login-promo { padding: 56px 48px; } }
.login-promo::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1.4px);
  background-size: 22px 22px; opacity: .6; pointer-events: none;
}
.login-promo > * { position: relative; z-index: 1; }
.login-promo .eyebrow { color: var(--gold-light); }
.login-promo h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 14px;
}
.login-promo h2 .accent {
  background: linear-gradient(135deg, #f4d320 0%, #f48f20 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Clean checklist on the navy panel (no pill background) */
.login-promo__pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.login-promo__pills li,
.login-promo__pills .pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
  padding: 0;
  color: #fff;
  font-size: .98rem;
  font-weight: 500;
  width: auto;
  border-radius: 0;
  min-height: 0;
}
.login-promo__pills .tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--success);
  border-radius: 50%;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(26,168,107,0.28);
}
.login-promo__pills .tick svg { width: 13px; height: 13px; }
.login-promo__apps h5 {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin: 0 0 12px;
  font-weight: 700;
}
/* Centred brand-panel content + equal-width centred badges on all viewports */
.login-promo { text-align: center; align-items: center; }
.login-promo > div:first-child { width: 100%; }
.login-promo__pills { align-items: center; }
.login-promo__apps { width: 100%; }
.login-promo__apps .store-badges {
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.login-promo__apps .store-badge {
  background: #000;
  border: 0;
  flex: 1 1 0;
  max-width: 200px;
  min-width: 0;
  padding: 0 14px;
  gap: 10px;
  justify-content: center;
}
.login-promo__apps .store-badge .store-badge__text .small { font-size: .62rem; }
.login-promo__apps .store-badge .store-badge__text .big { font-size: 1rem; }

/* =========================================================
   Contact page — form primary, aside secondary
   ========================================================= */
.contact-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1.7fr 1fr; gap: 48px; }
}
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px;
}
@media (min-width: 700px) {
  .contact-form-card { padding: 44px; }
}
.contact-aside {
  background: transparent;
  padding: 0 4px;
}
.contact-aside h3 {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-aside__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.contact-aside__list li { margin: 0; }
.contact-aside__list a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--border-soft);
  text-decoration: none;
  color: var(--navy);
  transition: padding .15s ease, color .15s ease;
}
.contact-aside__list li:last-child a { border-bottom: 1px solid var(--border-soft); }
.contact-aside__list a:hover { padding-left: 6px; color: var(--gold-deep); }
.contact-aside__list strong { display: block; font-weight: 600; font-size: .98rem; margin-bottom: 2px; }
.contact-aside__list span { display: block; color: var(--text-soft); font-size: .85rem; }
.contact-aside__cta {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  text-align: center;
}

/* =========================================================
   Skip link (a11y)
   ========================================================= */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--navy); color: #fff;
  padding: 10px 16px; border-radius: 8px; z-index: 100;
}
.skip-link:focus { left: 16px; color: #fff; }
