/* Tarweej — shared styles (Tailwind via CDN handles utilities) */
:root {
  --bg-deep: #050706;
  --bg-panel: #080B0A;
  --teal: #19C7B5;
  --teal-mid: #10BFAE;
  --teal-bright: #2DD4BF;
  --text: #F8FAFC;
  --muted: #94A3B8;
  --border: rgba(25, 199, 181, 0.18);
  --glow: rgba(25, 199, 181, 0.35);
  --font-ar: "Cairo", "IBM Plex Sans Arabic", system-ui, sans-serif;
  --font-en: "Inter", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
html[lang="ar"] body { font-family: var(--font-ar); }
html[lang="en"] body { font-family: var(--font-en); }

body {
  background: var(--bg-deep);
  color: var(--text);
  min-height: 100vh;
}

::selection {
  background: rgba(25, 199, 181, 0.35);
  color: #fff;
}

*:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  z-index: 100;
  background: var(--teal);
  color: #04110f;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* Decorative background */
.bg-mesh {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.bg-mesh::before {
  content: "";
  position: absolute;
  width: 42rem;
  height: 42rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(25, 199, 181, 0.14), transparent 65%);
  top: -12rem;
  inset-inline-end: -10rem;
  filter: blur(10px);
}
.bg-mesh::after {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1), transparent 70%);
  bottom: 10%;
  inset-inline-start: -8rem;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(25, 199, 181, 0.12);
  border-radius: 9999px;
  animation: spin 48s linear infinite;
}
.orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--teal);
  box-shadow: 0 0 12px var(--glow);
  top: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
}
.star-deco {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--teal-bright);
  clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
  filter: drop-shadow(0 0 8px var(--glow));
  opacity: 0.85;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-soft {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.04); }
}
@keyframes float-msg {
  0% { transform: translate(0, 0); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translate(var(--tx, 80px), var(--ty, -60px)); opacity: 0; }
}
@keyframes dash-flow {
  to { stroke-dashoffset: -40; }
}

.animate-pulse-soft { animation: pulse-soft 3.5s ease-in-out infinite; }
.float-msg { animation: float-msg 4.5s ease-in-out infinite; }

/* Navbar */
.site-nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(5, 7, 6, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(148, 163, 184, 0.12);
}
.nav-link {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--teal-bright); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #19C7B5, #10BFAE);
  color: #04110f;
  font-weight: 700;
  padding: 0.7rem 1.25rem;
  border-radius: 0.85rem;
  box-shadow: 0 0 24px rgba(25, 199, 181, 0.25);
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(25, 199, 181, 0.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  padding: 0.7rem 1.25rem;
  border-radius: 0.85rem;
  background: rgba(8, 11, 10, 0.5);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(25, 199, 181, 0.45);
  background: rgba(25, 199, 181, 0.08);
}

.card {
  background: linear-gradient(180deg, rgba(12, 18, 16, 0.95), rgba(8, 11, 10, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 1.25rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: rgba(25, 199, 181, 0.35);
  box-shadow: 0 0 0 1px rgba(25, 199, 181, 0.08), 0 18px 40px rgba(0, 0, 0, 0.35);
}
.card-glow {
  box-shadow: 0 0 40px rgba(25, 199, 181, 0.08);
  border-color: rgba(25, 199, 181, 0.22);
}

.section-pad { padding: 5rem 0; }
@media (min-width: 768px) { .section-pad { padding: 6.5rem 0; } }

.trust-banner {
  border-y: 1px solid rgba(25, 199, 181, 0.15);
  background: linear-gradient(90deg, rgba(25, 199, 181, 0.06), transparent 40%, rgba(25, 199, 181, 0.06));
}

/* Dashboard mock */
.dash-panel {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(25, 199, 181, 0.25);
  background:
    radial-gradient(circle at 80% 20%, rgba(25, 199, 181, 0.12), transparent 40%),
    linear-gradient(160deg, #0c1412, #070a09);
  box-shadow: 0 0 60px rgba(25, 199, 181, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.target-ring {
  border: 2px solid rgba(25, 199, 181, 0.35);
  border-radius: 9999px;
}
.target-ring-inner {
  border: 2px solid rgba(25, 199, 181, 0.55);
  border-radius: 9999px;
}
.target-core {
  background: var(--teal);
  border-radius: 9999px;
  box-shadow: 0 0 20px var(--glow);
}

/* Timeline */
.timeline-line {
  display: none;
}
@media (min-width: 1024px) {
  .timeline-line {
    display: block;
    position: absolute;
    top: 2.25rem;
    inset-inline: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(25, 199, 181, 0.45), transparent);
  }
  .timeline-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 8px,
      rgba(45, 212, 191, 0.7) 8px,
      rgba(45, 212, 191, 0.7) 16px
    );
    animation: dash-flow 1.2s linear infinite;
    mask: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  }
}

/* Accordion */
.faq-item button[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq-item.open .faq-panel { grid-template-rows: 1fr; }
.faq-panel > div { overflow: hidden; }

/* Forms */
.form-input {
  width: 100%;
  background: rgba(8, 11, 10, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.85rem;
  padding: 0.75rem 1rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  border-color: rgba(25, 199, 181, 0.55);
  box-shadow: 0 0 0 3px rgba(25, 199, 181, 0.15);
  outline: none;
}
.form-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Compare */
.compare-bad { border-color: rgba(248, 113, 113, 0.25); }
.compare-good { border-color: rgba(25, 199, 181, 0.35); }

/* Back to top */
#backToTop {
  position: fixed;
  inset-inline-end: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  background: rgba(8, 11, 10, 0.9);
  border: 1px solid rgba(25, 199, 181, 0.35);
  color: var(--teal-bright);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 0 20px rgba(25, 199, 181, 0.2);
}
#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

/* Legal */
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal-bright);
  margin: 2rem 0 0.75rem;
}
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.25rem 0 0.5rem;
  color: #e2e8f0;
}
.legal-content p, .legal-content li {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 0.65rem;
}
.legal-content ul { list-style: disc; padding-inline-start: 1.25rem; margin-bottom: 1rem; }
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(8, 11, 10, 0.6);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(5, 7, 6, 0.96);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
}
[dir="rtl"] .mobile-menu { transform: translateX(-100%); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  color: var(--text);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orbit, .animate-pulse-soft, .float-msg, .timeline-line::after, .reveal {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

.map-placeholder {
  min-height: 220px;
  border-radius: 1.25rem;
  border: 1px dashed rgba(25, 199, 181, 0.35);
  background:
    radial-gradient(circle at 40% 40%, rgba(25, 199, 181, 0.08), transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(148, 163, 184, 0.06) 20px),
    repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(148, 163, 184, 0.06) 20px),
    #080B0A;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 1.5rem;
}

/* ——— Footer redesign ——— */
.site-footer {
  position: relative;
  margin-top: 2rem;
  border-top: 1px solid rgba(25, 199, 181, 0.14);
  background:
    linear-gradient(180deg, rgba(8, 11, 10, 0.4), rgba(5, 7, 6, 0.98)),
    #050706;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  inset-inline: 10%;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.55), transparent);
  box-shadow: 0 0 40px 8px rgba(25, 199, 181, 0.12);
}
.footer-logo-wrap {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(25, 199, 181, 0.28);
  background: radial-gradient(circle at 30% 30%, rgba(25, 199, 181, 0.18), rgba(8, 11, 10, 0.9));
  box-shadow: 0 0 24px rgba(25, 199, 181, 0.12);
}
.footer-heading {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e2e8f0;
  margin-bottom: 1rem;
}
.footer-links {
  display: grid;
  gap: 0.65rem;
  font-size: 0.9rem;
}
.footer-links a {
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
}
.footer-links a:hover {
  color: var(--teal-bright);
  transform: translateX(var(--hover-shift, -2px));
}
[dir="ltr"] .footer-links a:hover { --hover-shift: 2px; }
.footer-contact {
  display: grid;
  gap: 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-contact a {
  color: #e2e8f0;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--teal-bright); }
.footer-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.15rem;
}
.footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-bright);
  background: rgba(25, 199, 181, 0.08);
  border: 1px solid rgba(25, 199, 181, 0.22);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.footer-chip:hover {
  background: rgba(25, 199, 181, 0.16);
  border-color: rgba(25, 199, 181, 0.4);
  transform: translateY(-1px);
}
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ——— Legal meta polish ——— */
.legal-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  font-size: 0.875rem;
  color: var(--muted);
  border: 1px solid rgba(25, 199, 181, 0.16);
  border-radius: 1.25rem;
  padding: 1.1rem 1.2rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 199, 181, 0.08), transparent 45%),
    rgba(8, 11, 10, 0.75);
}
@media (min-width: 640px) {
  .legal-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .legal-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.legal-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.08);
}
.legal-meta-item strong,
.legal-meta-item a {
  color: #f1f5f9;
  font-weight: 600;
  font-size: 0.9rem;
  word-break: break-word;
}

/* ——— Global UI polish ——— */
.trust-banner {
  backdrop-filter: blur(8px);
}
.site-nav {
  backdrop-filter: blur(0);
}
.site-nav.scrolled {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.card {
  backdrop-filter: blur(6px);
}
.btn-primary {
  letter-spacing: 0.01em;
}
.section-pad {
  position: relative;
}
.dash-panel {
  transform: translateZ(0);
}
@media (min-width: 1024px) {
  .dash-panel {
    transform: perspective(1200px) rotateY(-2deg);
  }
  [dir="ltr"] .dash-panel {
    transform: perspective(1200px) rotateY(2deg);
  }
}

/* Contact info cards */
.contact-info-card {
  transition: transform 0.2s, border-color 0.2s;
}
.contact-info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 199, 181, 0.35);
}

/* Soft page background grain */
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ——— Layout system & responsive polish ——— */
:root {
  --container: 72rem;
  --page-x: 1rem;
  --nav-h: 4.25rem;
  --banner-h: 2.5rem;
  --header-offset: calc(var(--nav-h) + var(--banner-h));
}
@media (min-width: 640px) {
  :root { --page-x: 1.5rem; --banner-h: 2.75rem; }
}
@media (min-width: 1024px) {
  :root { --page-x: 2rem; --nav-h: 4.5rem; }
}

.container-site {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--page-x);
}

/* Trust banner */
.trust-banner {
  position: relative;
  z-index: 45;
  min-height: var(--banner-h);
  display: flex;
  align-items: center;
}
.trust-banner .trust-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.55rem var(--page-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(45, 212, 191, 0.92);
}
@media (min-width: 640px) {
  .trust-banner .trust-inner { font-size: 0.8125rem; }
}

/* Navbar */
.site-nav {
  top: 0;
  min-height: var(--nav-h);
}
.site-nav .nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.75rem var(--page-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--nav-h);
}
.site-nav .nav-links {
  display: none;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
}
@media (min-width: 1100px) {
  .site-nav .nav-links { display: flex; }
}
.nav-link {
  white-space: nowrap;
  padding: 0.45rem 0.65rem;
  border-radius: 0.65rem;
  font-size: 0.84rem;
}
.nav-link:hover,
.nav-link.active {
  background: rgba(25, 199, 181, 0.08);
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.brand-lockup img {
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
}
.brand-lockup .brand-text {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .brand-lockup img { width: 2.5rem; height: 2.5rem; }
  .brand-lockup .brand-text { font-size: 1.05rem; }
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Buttons */
.btn-primary,
.btn-ghost {
  min-height: 2.75rem;
  padding: 0.7rem 1.15rem;
  border-radius: 0.9rem;
  font-size: 0.92rem;
}
@media (max-width: 639px) {
  .btn-stack {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .btn-stack > a,
  .btn-stack > button {
    width: 100%;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-offset) + 1.25rem);
  padding-bottom: 3.5rem;
  min-height: auto;
}
@media (min-width: 1024px) {
  .hero {
    min-height: min(92vh, 920px);
    padding-top: calc(var(--header-offset) + 2rem);
    padding-bottom: 4.5rem;
    display: flex;
    align-items: center;
  }
}
.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.75rem;
  }
}
.hero-copy h1 {
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.hero-copy .lead {
  margin-top: 1.15rem;
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.98rem;
}
@media (min-width: 768px) {
  .hero-copy .lead { font-size: 1.05rem; }
}
.hero-trust-line {
  margin-top: 1.15rem;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 1023px) {
  .hero-visual { order: 2; }
  .hero-copy { order: 1; }
}

/* Hide heavy deco on small screens */
@media (max-width: 767px) {
  .orbit,
  .hero .star-deco,
  .bg-mesh::before,
  .bg-mesh::after {
    display: none !important;
  }
}

/* Dashboard mock */
.dash-panel {
  padding: 1.1rem;
}
@media (min-width: 640px) {
  .dash-panel { padding: 1.35rem; }
}
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
@media (min-width: 480px) {
  .dash-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.dash-metric {
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.32);
  padding: 0.8rem;
  min-width: 0;
}
.dash-metric p:first-child {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.35;
}
.dash-metric .val {
  margin-top: 0.35rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) {
  .dash-metric .val { font-size: 1.25rem; }
}
@media (max-width: 1023px) {
  .dash-panel {
    transform: none !important;
  }
}

/* Sections */
.section-pad {
  padding: 3.5rem 0;
}
@media (min-width: 768px) {
  .section-pad { padding: 5rem 0; }
}
@media (min-width: 1024px) {
  .section-pad { padding: 6rem 0; }
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.section-lead {
  margin-top: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 42rem;
}

/* Trust strip */
.trust-strip {
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 11, 10, 0.65);
}
.trust-strip-grid {
  display: grid;
  gap: 0.85rem;
  padding-block: 1.35rem;
}
@media (min-width: 640px) {
  .trust-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding-block: 1.6rem;
  }
}
@media (min-width: 1100px) {
  .trust-strip-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
  }
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  padding: 0.65rem 0.75rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.08);
}
@media (min-width: 1100px) {
  .trust-item {
    background: transparent;
    border-color: transparent;
    padding: 0;
  }
}

/* Cards grid rhythm */
.card {
  padding: 1.2rem;
}
@media (min-width: 640px) {
  .card { padding: 1.4rem; }
}
.cards-3 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; }
}
.cards-4 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .cards-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.15rem; }
}

/* Timeline steps */
.steps-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

/* Mobile menu polish */
.mobile-menu {
  padding: calc(var(--header-offset) + 0.5rem) var(--page-x) 2rem;
}
.mobile-menu a {
  padding: 0.95rem 0.25rem;
  font-size: 1.02rem;
}
@media (min-width: 1100px) {
  #menuOpen { display: none !important; }
}

/* Legal pages top spacing */
main#main.pt-legal {
  padding-top: calc(var(--header-offset) + 1.5rem);
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  main#main.pt-legal {
    padding-top: calc(var(--header-offset) + 2rem);
    padding-bottom: 5rem;
  }
}

/* FAQ / forms */
.faq-item button {
  gap: 1rem;
  min-height: 3.5rem;
}
.form-input {
  min-height: 2.85rem;
  font-size: 0.95rem;
}
textarea.form-input {
  min-height: 7rem;
}

/* Footer responsive */
@media (max-width: 767px) {
  .site-footer .footer-bottom {
    align-items: flex-start;
  }
}

/* Avoid horizontal overflow */
html, body { overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; }


/* Header stack: banner + nav */
.trust-banner {
  position: fixed !important;
  inset-inline: 0;
  top: 0;
  z-index: 55;
  background: rgba(5, 7, 6, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(25, 199, 181, 0.12);
}
.site-nav {
  top: var(--banner-h) !important;
  z-index: 50;
}


/* Extra mobile refinements */
@media (max-width: 479px) {
  .float-msg { display: none; }
  .dash-panel .relative.py-8 { padding-block: 1.5rem; }
  .brand-lockup .brand-text { max-width: 9.5rem; overflow: hidden; text-overflow: ellipsis; }
}
@media (min-width: 480px) and (max-width: 1099px) {
  .site-nav .nav-actions .btn-primary { padding-inline: 0.9rem; }
}

/* Legal page nav actions alignment */
.site-nav .nav-inner > nav.hidden + div,
.site-nav .nav-inner > .nav-actions {
  margin-inline-start: auto;
}

/* Smooth card tap targets */
@media (hover: none) {
  .card:hover {
    transform: none;
    box-shadow: none;
  }
}
