:root {
  --bg: #f3f6fb;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --ink: #0e1a31;
  --muted: #57627a;
  --line: #dbe5f2;
  --brand: #0b1530;
  --brand-2: #1e3a8a;
  --accent: #0ea5e9;
  --accent-2: #f97316;
  --ok: #16a34a;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --shadow-lg: 0 28px 62px rgba(15, 23, 42, 0.14);
  --shadow-md: 0 16px 36px rgba(15, 23, 42, 0.1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1240px, 92vw);
  margin-inline: auto;
}

.bg-orb {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(70px);
}
.orb-1 {
  top: -150px;
  left: 18%;
  width: 460px;
  height: 460px;
  background: rgba(37, 99, 235, 0.2);
}
.orb-2 {
  top: 220px;
  right: -110px;
  width: 360px;
  height: 360px;
  background: rgba(14, 165, 233, 0.18);
}
.orb-3 {
  bottom: -140px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: rgba(249, 115, 22, 0.17);
}

.topbar-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 14px;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(219, 229, 242, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  padding: 10px 14px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.topbar-wrap.scrolled .topbar {
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  border-color: rgba(201, 214, 233, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand img {
  width: auto;
  height: 38px;
}
.brand-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand.brand-logo-lockup img {
  width: 27px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 7px 9px rgba(255, 166, 24, 0.18));
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-main a {
  padding: 8px 12px;
  border-radius: 12px;
  color: #334155;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-main a:hover { background: #eef4ff; color: #1e3a8a; }
.nav-main a.active { background: #e9f2ff; color: #1d4ed8; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-drawer {
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: 10px;
  display: none;
}
.mobile-drawer.open { display: block; }
.mobile-drawer a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: #334155;
}
.mobile-drawer a:hover { background: #edf3ff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.22s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-dark { background: var(--brand); color: #fff; }
.btn-dark:hover { background: #111f46; }
.btn-ghost { background: #fff; border-color: var(--line); color: #334155; }
.btn-primary {
  background: linear-gradient(135deg, #0b1530 0%, #1d4ed8 80%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.24);
}
.btn-soft { background: #fff; border-color: #cfe0f4; color: #334155; }
.btn-magnetic {
  position: relative;
  transform: translate3d(0, 0, 0);
  transition: transform .18s ease-out, box-shadow .2s ease, background .2s ease;
}
.btn-magnetic span {
  display: inline-block;
  transition: transform .18s ease-out;
}

.hero {
  padding: 68px 0 44px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 48px;
}
.motion-surface {
  transform-style: preserve-3d;
}
.parallax-layer {
  will-change: transform;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid #cfe0fb;
  padding: 7px 13px;
  background: rgba(255,255,255,0.82);
  color: #1d4ed8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 800;
}

.hero h1 {
  margin-top: 16px;
  font-size: clamp(44px, 5.9vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.026em;
}

.hero p {
  margin-top: 18px;
  max-width: 700px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

.stats-row {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.stats-row article {
  border-radius: 18px;
  border: 1px solid #d9e3f1;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
  padding: 16px;
}
.stats-row strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  line-height: 1;
}
.stats-row span {
  margin-top: 6px;
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
}

.hero-visual {
  border-radius: var(--radius-xl);
  border: 1px solid #d8e2f0;
  background: #fff;
  box-shadow: var(--shadow-lg);
  padding: 20px;
  animation: floaty 6.8s ease-in-out infinite;
}
.visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.visual-head h3 { font-size: 20px; }
.tag-up {
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.chart-block {
  border-radius: 16px;
  border: 1px solid #d7e4f4;
  background: linear-gradient(145deg, #edf4ff 0%, #f8fbff 60%, #fff 100%);
  padding: 12px;
}
.chart-block svg { width: 100%; height: 190px; display: block; }

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 12px;
}
.visual-grid div {
  border-radius: 13px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 12px;
}
.visual-grid span { display: block; color: #64748b; font-size: 12px; }
.visual-grid strong { display: block; margin-top: 4px; font-size: 22px; }

.section {
  padding: 96px 0;
}
.section-framed {
  border-top: 1px solid #d8e2ef;
}
.section-band {
  width: 100%;
  position: relative;
}
.band-a {
  background: linear-gradient(180deg, #f7faff 0%, #f2f7ff 100%);
}
.band-b {
  background: linear-gradient(180deg, #0b1329 0%, #101a38 100%);
}
.band-c {
  background: linear-gradient(180deg, #0d1934 0%, #111f44 55%, #142853 100%);
}

.band-b .section-framed {
  border-top-color: rgba(198, 214, 242, 0.22);
}
.band-b .section-kicker {
  color: #7dd3fc;
}
.band-b .section-head h2 {
  color: #f8fbff;
}
.band-b .section-head p {
  color: #c9d7ef;
}
.band-b .coverage-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(214, 226, 246, 0.85);
}

.band-c .section-framed {
  border-top-color: rgba(200, 216, 242, 0.26);
}
.band-c .section-kicker {
  color: #7dd3fc;
}
.band-c .section-head h2 {
  color: #f8fbff;
}
.band-c .section-head p {
  color: #c9d7ef;
}
.band-c .step {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(214, 226, 246, 0.9);
}
.band-c .image-panel {
  background: rgba(255, 255, 255, 0.97);
}

.testimonial {
  margin-top: 20px;
  border-radius: 18px;
  border: 1px solid #1f3560;
  background: linear-gradient(150deg, #101f44 0%, #172d5f 100%);
  padding: 22px;
  box-shadow: var(--shadow-md);
}
.testimonial p { font-size: 18px; color: #f8fbff; }
.testimonial small { display: block; margin-top: 10px; color: #b9c9e7; }

.compliance-pill {
  border-radius: 999px;
  border: 1px solid #cfe0f5;
  background: #fff;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #1e3a8a;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #1d4ed8;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 12px;
  font-weight: 800;
}
.section-kicker.center { display: block; text-align: center; }

.section-head {
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.03;
  letter-spacing: -0.018em;
}
.section-head p {
  margin-top: 14px;
  color: #64748b;
  max-width: 780px;
  line-height: 1.65;
}

.logo-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.logo-pill {
  border-radius: 16px;
  border: 1px dashed #c9d6e8;
  background: #fff;
  padding: 13px;
  text-align: center;
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.trust-card {
  border-radius: 20px;
  border: 1px solid #dbe4ef;
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}
.trust-card h3 { font-size: 19px; }
.trust-card p { margin-top: 8px; color: #64748b; font-size: 14px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.feature-card {
  border-radius: 20px;
  border: 1px solid #dbe4ef;
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border-color: #c7d8ee;
}
.icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 12px;
}
.icon-blue { background: linear-gradient(135deg, #1d4ed8, #0ea5e9); }
.icon-orange { background: linear-gradient(135deg, #f97316, #ef4444); }
.icon-green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.icon-indigo { background: linear-gradient(135deg, #4338ca, #2563eb); }
.feature-card h3 { font-size: 18px; }
.feature-card p { margin-top: 10px; color: #64748b; font-size: 15px; line-height: 1.6; }

.visual-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.image-panel {
  border-radius: var(--radius-xl);
  border: 1px solid #d8e2ef;
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow-md);
  min-height: 290px;
  position: relative;
  overflow: hidden;
}
.image-panel::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.2), rgba(37,99,235,0));
}
.mock-window {
  border-radius: 14px;
  border: 1px solid #dbe5f2;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 12px;
}
.mock-top {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.mock-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #c8d6e8;
}
.mock-lines { display: grid; gap: 7px; }
.mock-lines i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dbe8fb, #edf4ff);
}
.mock-lines i:nth-child(1) { width: 62%; }
.mock-lines i:nth-child(2) { width: 92%; }
.mock-lines i:nth-child(3) { width: 84%; }
.mock-lines i:nth-child(4) { width: 56%; }

.step-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.step {
  border-radius: 18px;
  border: 1px solid #d8e2ef;
  background: #fff;
  padding: 18px;
}
.step b {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #e8f1ff;
  color: #1d4ed8;
  margin-bottom: 9px;
  font-size: 12px;
}
.step h4 { font-size: 16px; margin-bottom: 6px; }
.step p { color: #64748b; font-size: 13px; }

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.coverage-card {
  border-radius: 20px;
  border: 1px solid #dbe4ef;
  background: #fff;
  padding: 24px;
}
.coverage-card h3 { font-size: 19px; }
.coverage-card ul {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  color: #4f5f78;
  display: grid;
  gap: 8px;
  font-size: 15px;
}

.function-showcase .section-head {
  margin-bottom: 34px;
}
.function-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid #dbe5f3;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}
.function-row + .function-row {
  margin-top: 18px;
}
.function-row.reverse .function-copy {
  order: 2;
}
.function-row.reverse .function-media {
  order: 1;
}
.function-chip {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #e8f1ff;
  color: #1d4ed8;
}
.function-copy h3 {
  margin-top: 10px;
  font-size: clamp(24px, 3.3vw, 34px);
  line-height: 1.03;
  letter-spacing: -.015em;
}
.function-copy p {
  margin-top: 12px;
  color: #5a667d;
  font-size: 16px;
  line-height: 1.62;
}
.function-copy ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #42516a;
  display: grid;
  gap: 8px;
  font-size: 15px;
}

.function-media {
  min-height: 230px;
  position: relative;
}
.floating-shot {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid #d3e2f4;
  background: linear-gradient(145deg, #eef5ff 0%, #fbfdff 75%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  padding: 16px;
  transform-style: preserve-3d;
}
.floating-shot .mock-window {
  transform: translateZ(30px);
}
.shot-sales {
  background: linear-gradient(145deg, #edf4ff 0%, #f8fbff 75%);
}
.shot-purchase {
  background: linear-gradient(145deg, #eef9f8 0%, #f8fbff 75%);
}
.shot-control {
  background: linear-gradient(145deg, #f3efff 0%, #f8fbff 75%);
}

.tilt-card {
  perspective: 900px;
}

.compliance-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid #d9e3f0;
  background: #fff;
  border-radius: 16px;
  padding: 15px 18px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: #1e293b;
  position: relative;
  padding-right: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: #1d4ed8;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin-top: 10px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.58;
}

.pricing-cta {
  text-align: center;
  border-radius: 30px;
  border: 1px solid #d7e1ef;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  padding: 56px 24px;
}
.pricing-cta h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: -.018em;
}
.pricing-cta p { margin-top: 10px; color: #64748b; }
.pricing-cta .hero-actions { justify-content: center; }

.motion-slider {
  margin-top: 26px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #d9e4f4;
  background: linear-gradient(145deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.11);
  padding: 28px;
  min-height: 344px;
}
.motion-slide {
  position: absolute;
  inset: 28px;
  opacity: 0;
  transform: translateX(36px) scale(0.98);
  pointer-events: none;
  transition: opacity .46s ease, transform .46s ease;
  border-radius: 18px;
  border: 1px solid #d8e4f6;
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
}
.motion-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.motion-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  color: #fff;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.motion-slide h3 {
  margin-top: 10px;
  font-size: 30px;
  letter-spacing: -.02em;
}
.motion-slide p {
  margin-top: 8px;
  max-width: 680px;
  color: #52627c;
  font-size: 15px;
}
.motion-slide ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #30445f;
  display: grid;
  gap: 7px;
  font-size: 14px;
}
.motion-controls {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.motion-arrow {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid #cfe0f6;
  background: #fff;
  color: #1e3a8a;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.motion-arrow:hover {
  background: #edf4ff;
  transform: translateY(-1px);
}
.motion-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.motion-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #b8c8df;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.motion-dot.is-active {
  transform: scale(1.25);
  background: #1d4ed8;
}

.scene-slider {
  margin-top: 20px;
  border-radius: 28px;
  border: 1px solid #d4e3f8;
  background: linear-gradient(165deg, #ffffff 0%, #f2f8ff 42%, #eef4ff 100%);
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}
.scene-track {
  position: relative;
  min-height: 290px;
}
.scene-card {
  position: absolute;
  inset: 0;
  padding: 34px 30px 28px;
  opacity: 0;
  transform: translateX(46px) scale(0.98);
  pointer-events: none;
  transition: opacity .5s ease, transform .5s ease;
}
.scene-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.scene-tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #cfe0f6;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #1d4ed8;
  text-transform: uppercase;
}
.scene-card h3 {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
  letter-spacing: -.018em;
  max-width: 760px;
}
.scene-card p {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.62;
  color: #3e4d66;
}
.scene-glow {
  position: absolute;
  right: -90px;
  top: -90px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(18px);
  z-index: 1;
}
.glow-a { background: radial-gradient(circle, rgba(14, 165, 233, 0.30) 0%, rgba(14, 165, 233, 0) 70%); }
.glow-b { background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, rgba(37, 99, 235, 0) 70%); }
.glow-c { background: radial-gradient(circle, rgba(249, 115, 22, 0.26) 0%, rgba(249, 115, 22, 0) 70%); }
.scene-controls {
  border-top: 1px solid #d9e5f6;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.78);
}
.scene-arrow {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #cbdbf3;
  background: #fff;
  color: #1e3a8a;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}
.scene-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.scene-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #b8cae2;
  cursor: pointer;
}
.scene-dot.is-active {
  width: 22px;
  background: #1d4ed8;
}

.footer {
  margin-top: 72px;
  border-top: 1px solid #1d315a;
  background: linear-gradient(180deg, #0a1227 0%, #0f1b3a 100%);
  padding: 44px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}
.footer-brand img { height: 38px; width: auto; }
.footer-brand .brand-logo-lockup { color: #fff; }
.footer-brand .brand-logo-lockup img { width: 27px; height: 38px; object-fit: contain; }
.footer-brand p {
  margin-top: 10px;
  color: #b7c7e4;
  font-size: 14px;
  max-width: 350px;
}
.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8ad5ff;
  margin-bottom: 10px;
}
.footer-col a {
  display: block;
  color: #d7e4fb;
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-col a:hover { color: #ffffff; }

.footer-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(179, 205, 244, 0.22);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #b7c7e4;
  font-size: 13px;
}

/* Shared premium footer */
.cv-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 0;
  border-top: 0;
  padding: 0 0 30px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 8%, rgba(49, 87, 232, 0.42), transparent 27%),
    radial-gradient(circle at 8% 74%, rgba(18, 169, 199, 0.14), transparent 24%),
    linear-gradient(155deg, #050d1c, #0a1a38 62%, #08162f);
}
.cv-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(149, 174, 218, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(149, 174, 218, 0.16) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 90px;
  align-items: end;
  border-bottom: 1px solid rgba(159, 184, 226, 0.2);
  padding: 105px 0 88px;
}
.footer-cta > div:first-child > span {
  color: #7fa4ed;
  font: 800 9px "Manrope", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-cta h2 {
  max-width: 780px;
  margin-top: 20px;
  color: #fff;
  font: 600 clamp(44px, 5.5vw, 76px)/1.01 "Sora", sans-serif;
  letter-spacing: -0.055em;
}
.footer-cta h2 em {
  display: block;
  color: #7f9fff;
  font-style: normal;
}
.footer-cta > div:last-child > p {
  max-width: 520px;
  color: #aab9d1;
  font-size: 13px;
  line-height: 1.85;
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.footer-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.footer-button:hover { transform: translateY(-2px); }
.footer-button-primary { color: #08152d; background: #fff; }
.footer-button-primary:hover { background: #dfe8ff; }
.footer-button-secondary { border-color: rgba(151, 177, 221, 0.32); color: #fff; background: rgba(255, 255, 255, 0.05); }
.footer-button-secondary:hover { border-color: #7899dc; background: rgba(104, 137, 210, 0.16); }
.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 100px;
  padding: 68px 0 62px;
}
.footer-brand-block .cv-wordmark-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font: 700 22px "Sora", sans-serif;
  letter-spacing: -0.04em;
}
.footer-brand-block .cv-wordmark-logo {
  width: 29px;
  height: 41px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(255, 166, 24, 0.2));
}
.footer-brand-block > p {
  max-width: 400px;
  margin-top: 21px;
  color: #91a3c0;
  font-size: 12px;
  line-height: 1.8;
}
.footer-email {
  display: inline-flex;
  gap: 18px;
  margin-top: 27px;
  border-bottom: 1px solid rgba(139, 166, 216, 0.35);
  padding-bottom: 7px;
  color: #dce7fb;
  font-size: 11px;
  font-weight: 800;
}
.footer-email:hover { color: #fff; border-color: #7fa4ed; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}
.cv-footer .footer-col h3 {
  margin-bottom: 21px;
  color: #7898d4;
  font: 800 9px "Manrope", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cv-footer .footer-col a {
  display: block;
  width: fit-content;
  margin-bottom: 13px;
  color: #c0cde1;
  font-size: 11px;
  line-height: 1.45;
}
.cv-footer .footer-col a:hover { color: #fff; transform: translateX(2px); }
[dir="rtl"] .cv-footer .footer-col a:hover { transform: translateX(-2px); }
.footer-base {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid rgba(159, 184, 226, 0.2);
  padding-top: 25px;
  color: #7f91ad;
  font-size: 9px;
  line-height: 1.5;
}
.footer-status { display: inline-flex; align-items: center; gap: 9px; }
.footer-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c49a;
  box-shadow: 0 0 0 5px rgba(34, 196, 154, 0.1);
}
.footer-language {
  display: inline-flex;
  gap: 10px;
  border: 1px solid rgba(143, 169, 215, 0.25);
  border-radius: 999px;
  padding: 8px 12px;
  color: #d9e4f6;
  font-size: 10px;
  font-weight: 800;
}
.footer-language:hover { border-color: #7899dc; color: #fff; }
[dir="rtl"] .footer-cta h2,
[dir="rtl"] .footer-brand-block .cv-wordmark-footer {
  font-family: "Tajawal", sans-serif;
  letter-spacing: 0;
}
@media (max-width: 1000px) {
  .footer-cta { grid-template-columns: 1fr; gap: 35px; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
  .footer-brand-block > p { max-width: 620px; }
}
@media (max-width: 680px) {
  .cv-footer { padding-bottom: 24px; }
  .footer-cta { padding: 78px 0 65px; }
  .footer-cta h2 { font-size: clamp(39px, 11.5vw, 53px); }
  .footer-cta-actions { display: grid; }
  .footer-button { width: 100%; }
  .footer-main { padding: 53px 0 47px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-base { grid-template-columns: 1fr; gap: 17px; align-items: start; }
  .footer-language { width: fit-content; }
}

.page-hero {
  padding: 70px 0 28px;
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.page-hero p {
  margin-top: 16px;
  max-width: 820px;
  color: #64748b;
  font-size: 18px;
  line-height: 1.62;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.plan-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid #dbe5f2;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.plan-card.featured {
  border-color: #a5b4fc;
  box-shadow: 0 20px 38px rgba(67, 56, 202, 0.18);
}
.plan-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.plan-head h3 { font-size: 24px; }
.plan-head span { color: #64748b; font-size: 13px; }
.plan-price {
  margin-top: 12px;
  font-size: 40px;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1;
}
.plan-price span {
  margin-left: 5px;
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}
.plan-feature-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #4f5f78;
  display: grid;
  gap: 8px;
  font-size: 15px;
}
.plan-card .btn { margin-top: 18px; width: 100%; }

.comparison-wrap {
  border-radius: 20px;
  overflow: auto;
  border: 1px solid rgba(214, 227, 248, 0.55);
  background: rgba(255, 255, 255, 0.95);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e3edf8;
  text-align: left;
  font-size: 14px;
}
.comparison-table th {
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child {
  color: #1e293b;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.contact-card {
  border-radius: 20px;
  border: 1px solid #dbe5f2;
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}
.contact-card h3 { font-size: 20px; }
.contact-card p {
  margin-top: 10px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.58;
}
.contact-card a {
  margin-top: 10px;
  display: inline-block;
  color: #1d4ed8;
  font-weight: 700;
}
.contact-card-value {
  margin-top: 10px;
  display: inline-block;
  color: #1d4ed8;
  font-weight: 700;
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-field span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #c7d8f5;
}
.form-field.full { grid-column: 1 / -1; }
.input-like {
  border: 1px solid rgba(210, 224, 246, 0.7);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
  color: #334155;
  font-size: 14px;
  padding: 12px 14px;
  width: 100%;
  font-family: inherit;
}
.input-like.full { grid-column: 1 / -1; min-height: 90px; }
.input-like:focus {
  outline: 0;
  border-color: #7fb5f4;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.16);
}
.form-status {
  margin: 2px 0 0;
  font-size: 13px;
  color: #93c5fd;
  display: none;
}
.form-status.is-visible {
  display: block;
}
.form-delivery-note {
  margin: 0;
  color: #aebfda;
  font-size: 12px;
  line-height: 1.6;
}

.note-box {
  border-radius: 20px;
  border: 1px solid rgba(210, 224, 246, 0.7);
  background: rgba(255, 255, 255, 0.96);
  padding: 20px;
}
.note-box h3 { font-size: 20px; }
.note-box ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #5a6a85;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

[dir="rtl"] body {
  text-align: right;
}
[dir="rtl"] .nav-main,
[dir="rtl"] .nav-actions,
[dir="rtl"] .hero-actions,
[dir="rtl"] .footer-note {
  direction: rtl;
}

/* Locale typography: component shorthands must not reintroduce Latin display fonts. */
html[lang="ar"] body,html[lang="ar"] body :where(h1,h2,h3,h4,h5,h6,p,span,a,button,label,input,select,textarea,summary,th,td,strong,small,b,li){font-family:"Tajawal",sans-serif!important;letter-spacing:0}
html[lang="fa"] body,html[lang="fa"] body :where(h1,h2,h3,h4,h5,h6,p,span,a,button,label,input,select,textarea,summary,th,td,strong,small,b,li){font-family:"Vazirmatn",sans-serif!important;letter-spacing:0}
html[lang="ar"] .cv-wordmark>span,html[lang="fa"] .cv-wordmark>span{font-family:"Sora",sans-serif!important}
.language-picker{position:relative}.language-trigger{display:inline-flex;align-items:center;gap:8px}.language-trigger svg{transition:transform .2s ease}.language-picker.open .language-trigger svg{transform:rotate(180deg)}
.nav-actions .language-picker .language-menu{position:absolute!important;right:0;top:calc(100% + 10px);z-index:30;display:grid!important;visibility:hidden!important;min-width:175px;gap:3px;border:1px solid #d8e1ed;border-radius:16px;padding:7px;opacity:0!important;pointer-events:none;background:rgba(255,255,255,.98);box-shadow:0 22px 55px rgba(10,28,59,.18);transform:translateY(-6px);transition:opacity .2s ease,transform .2s ease,visibility .2s ease}.nav-actions .language-picker.open .language-menu{visibility:visible!important;opacity:1!important;pointer-events:auto;transform:none}.language-menu a{display:flex;justify-content:space-between;border-radius:10px;padding:10px 12px;color:#34435a;font-size:11px;font-weight:700}.language-menu a:hover,.language-menu a[aria-current="true"]{color:#2148c9;background:#edf2ff}.language-menu a[aria-current="true"]::after{content:"✓";color:#1ca77d}.mobile-language-links{display:flex!important;gap:7px!important;padding-top:8px!important}.mobile-language-links a{flex:1;text-align:center}[dir="rtl"] .nav-actions .language-picker .language-menu{right:auto;left:0}
@media(max-width:680px){.language-picker{display:none}.mobile-language-links{display:flex!important}}
[dir="rtl"] .faq-item summary {
  padding-right: 0;
  padding-left: 18px;
}
[dir="rtl"] .faq-item summary::after {
  right: auto;
  left: 0;
}
[dir="rtl"] .coverage-card ul,
[dir="rtl"] .function-copy ul,
[dir="rtl"] .plan-feature-list,
[dir="rtl"] .note-box ul {
  padding-left: 0;
  padding-right: 18px;
}
[dir="rtl"] .comparison-table th,
[dir="rtl"] .comparison-table td {
  text-align: right;
}
[dir="rtl"] .motion-slide ul {
  padding-left: 0;
  padding-right: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Premium mobile navigation */
.menu-toggle-glyph {
  position: relative;
  display: grid;
  width: 18px;
  height: 14px;
  align-content: center;
  gap: 5px;
}
.menu-toggle-glyph i {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform .3s cubic-bezier(.22,1,.36,1), translate .3s ease, background .3s ease;
}

@keyframes mobileNavEnter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  body.mobile-nav-open { overflow: hidden; }
  body.mobile-nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(3, 9, 22, .48);
    backdrop-filter: blur(8px);
    animation: mobileNavBackdrop .25s ease both;
  }
  @keyframes mobileNavBackdrop { from { opacity: 0; } to { opacity: 1; } }

  .topbar-wrap.mobile-open .topbar {
    border-color: rgba(244, 165, 35, .34);
    box-shadow: 0 18px 48px rgba(3, 10, 25, .2);
  }
  .menu-toggle {
    position: relative;
    z-index: 62;
    color: #13213a;
    transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
  }
  .menu-toggle:hover { transform: translateY(-1px); }
  .menu-toggle[aria-expanded="true"] {
    color: #111b2f;
    border-color: rgba(225, 145, 15, .34);
    background: linear-gradient(135deg, #ffc65a, #f3a51f);
  }
  .menu-toggle[aria-expanded="true"] .menu-toggle-glyph i:first-child { transform: translateY(3.25px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-glyph i:last-child { transform: translateY(-3.25px) rotate(-45deg); }

  .mobile-drawer {
    position: fixed;
    top: 82px;
    inset-inline-end: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 60;
    display: grid;
    visibility: hidden;
    width: min(448px, calc(100vw - 24px));
    max-height: calc(100dvh - 94px);
    margin: 0;
    padding: 20px;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 14px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    opacity: 0;
    pointer-events: none;
    color: #f7f9ff;
    background:
      radial-gradient(circle at 86% 6%, rgba(255, 184, 56, .22), transparent 25%),
      radial-gradient(circle at 8% 72%, rgba(54, 123, 255, .15), transparent 34%),
      linear-gradient(155deg, rgba(15, 30, 56, .985), rgba(5, 14, 31, .99));
    box-shadow: 0 34px 90px rgba(0, 8, 25, .4), inset 0 1px rgba(255,255,255,.08);
    transform: translateY(-10px) scale(.985);
    transform-origin: top center;
    transition: opacity .28s ease, transform .38s cubic-bezier(.22,1,.36,1), visibility .28s ease;
  }
  .mobile-drawer::-webkit-scrollbar { display: none; }
  .mobile-drawer.open {
    display: grid;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .mobile-drawer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, #000, transparent 72%);
  }
  .mobile-drawer > * { position: relative; z-index: 1; }

  .mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 24px;
    color: rgba(221, 230, 247, .68);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
  }
  .mobile-drawer-head i {
    width: 38px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,185,55,.15), #ffb937);
  }

  .mobile-drawer-nav {
    display: grid;
    align-content: start;
    gap: 5px;
    padding-block: 3px;
  }
  .mobile-drawer .mobile-nav-link {
    display: grid;
    min-height: 52px;
    grid-template-columns: 34px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 9px;
    padding: 7px 9px;
    border: 1px solid transparent;
    border-radius: 15px;
    color: rgba(244, 247, 255, .82);
    font-size: 17px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease;
  }
  .mobile-drawer.open .mobile-nav-link { animation: mobileNavEnter .42s cubic-bezier(.22,1,.36,1) both; }
  .mobile-drawer.open .mobile-nav-link:nth-child(1) { animation-delay: .04s; }
  .mobile-drawer.open .mobile-nav-link:nth-child(2) { animation-delay: .075s; }
  .mobile-drawer.open .mobile-nav-link:nth-child(3) { animation-delay: .11s; }
  .mobile-drawer.open .mobile-nav-link:nth-child(4) { animation-delay: .145s; }
  .mobile-drawer.open .mobile-nav-link:nth-child(5) { animation-delay: .18s; }
  .mobile-drawer .mobile-nav-link:hover {
    color: #fff;
    border-color: rgba(255,255,255,.1);
    background: rgba(255,255,255,.065);
    transform: translateX(2px);
  }
  [dir="rtl"] .mobile-drawer .mobile-nav-link:hover { transform: translateX(-2px); }
  .mobile-drawer .mobile-nav-link[aria-current="page"] {
    color: #fff;
    border-color: rgba(255, 186, 56, .22);
    background: linear-gradient(90deg, rgba(255, 181, 43, .16), rgba(255,255,255,.045));
    box-shadow: inset 3px 0 #f8b332;
  }
  [dir="rtl"] .mobile-drawer .mobile-nav-link[aria-current="page"] { box-shadow: inset -3px 0 #f8b332; }
  .mobile-nav-index {
    color: rgba(171, 187, 214, .52);
    font: 600 10px/1 "Sora", sans-serif !important;
    letter-spacing: .08em !important;
  }
  .mobile-nav-link[aria-current="page"] .mobile-nav-index { color: #f8b332; }
  .mobile-nav-arrow {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
    color: rgba(234,240,252,.66);
    font-family: "Sora", sans-serif !important;
    font-size: 13px;
  }
  [dir="rtl"] .mobile-nav-arrow { justify-self: start; transform: rotate(180deg); }

  .mobile-drawer-bottom {
    display: grid;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.09);
  }
  .mobile-language-panel { display: grid; gap: 8px; }
  .mobile-panel-label {
    color: rgba(179, 195, 220, .66);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .mobile-drawer .mobile-language-links {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px !important;
    padding: 0 !important;
  }
  .mobile-drawer .mobile-language-links a {
    display: grid;
    min-width: 0;
    gap: 4px;
    padding: 8px 6px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    color: rgba(223,231,246,.7);
    background: rgba(255,255,255,.035);
    text-align: center;
    font-size: 11px;
    font-weight: 600;
  }
  .mobile-drawer .mobile-language-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
  .mobile-drawer .mobile-language-links a[aria-current="page"] {
    color: #111b2e;
    border-color: rgba(255, 195, 83, .8);
    background: linear-gradient(135deg, #ffd06e, #f3aa2b);
    box-shadow: 0 8px 24px rgba(239, 162, 31, .18);
  }
  .mobile-lang-code {
    color: inherit;
    font: 700 8px/1 "Sora", sans-serif !important;
    letter-spacing: .14em !important;
    opacity: .62;
  }
  .mobile-access-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }
  .mobile-access-head p {
    max-width: 235px;
    color: rgba(190,204,226,.62);
    font-size: 10px;
    line-height: 1.5;
    text-align: end;
  }
  .mobile-auth-actions {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    gap: 7px;
  }
  .mobile-drawer .mobile-auth-actions a {
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 700;
  }
  .mobile-signin {
    color: #eef3ff !important;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.055);
  }
  .mobile-start {
    color: #111b2e !important;
    border: 1px solid rgba(255, 203, 108, .75);
    background: linear-gradient(135deg, #ffd171, #f2a31e);
    box-shadow: 0 12px 30px rgba(239, 157, 20, .2);
  }
  .mobile-signin:hover { background: rgba(255,255,255,.1) !important; }
  .mobile-start:hover { filter: brightness(1.04); transform: translateY(-1px); }
}

@media (max-width: 640px) {
  .mobile-drawer {
    top: 76px;
    inset-inline: 12px;
    width: auto;
    max-height: calc(100dvh - 88px);
    padding: 17px;
    border-radius: 24px;
  }
}

@media (max-width: 360px) {
  .mobile-drawer { padding: 14px; gap: 10px; }
  .mobile-drawer .mobile-nav-link { min-height: 46px; font-size: 15px; }
  .mobile-access-head p { display: none; }
  .mobile-auth-actions { grid-template-columns: 1fr; }
}

/* Light palette keeps the mobile sheet continuous with the marketing site. */
@media (max-width: 1080px) {
  body.mobile-nav-open::after {
    background: rgba(19, 31, 52, .16);
    backdrop-filter: blur(7px) saturate(.9);
  }
  .mobile-drawer {
    color: #13213a;
    border-color: rgba(20, 38, 67, .13);
    background:
      radial-gradient(circle at 88% 4%, rgba(255, 184, 52, .22), transparent 26%),
      radial-gradient(circle at 5% 76%, rgba(69, 126, 226, .1), transparent 34%),
      linear-gradient(155deg, rgba(255, 255, 255, .985), rgba(244, 247, 252, .99));
    box-shadow: 0 34px 90px rgba(16, 31, 55, .2), inset 0 1px rgba(255,255,255,.95);
  }
  .mobile-drawer::before {
    background-image: linear-gradient(rgba(24,43,73,.032) 1px, transparent 1px), linear-gradient(90deg, rgba(24,43,73,.032) 1px, transparent 1px);
  }
  .mobile-drawer-head { color: rgba(50, 69, 98, .62); }
  .mobile-drawer-head i { background: linear-gradient(90deg, rgba(224,145,14,.12), #eba526); }
  .mobile-drawer .mobile-nav-link {
    color: rgba(25, 42, 69, .78);
  }
  .mobile-drawer .mobile-nav-link:hover {
    color: #101d33;
    border-color: rgba(23, 44, 78, .09);
    background: rgba(17, 42, 78, .045);
  }
  .mobile-drawer .mobile-nav-link[aria-current="page"] {
    color: #101c31;
    border-color: rgba(220, 145, 20, .24);
    background: linear-gradient(90deg, rgba(255, 190, 69, .2), rgba(255,255,255,.56));
    box-shadow: inset 3px 0 #e9a323, 0 8px 24px rgba(38, 54, 80, .055);
  }
  [dir="rtl"] .mobile-drawer .mobile-nav-link[aria-current="page"] {
    box-shadow: inset -3px 0 #e9a323, 0 8px 24px rgba(38, 54, 80, .055);
  }
  .mobile-nav-index { color: rgba(72, 93, 125, .48); }
  .mobile-nav-link[aria-current="page"] .mobile-nav-index { color: #d98c0d; }
  .mobile-nav-arrow {
    color: rgba(40, 61, 92, .62);
    border-color: rgba(25, 47, 80, .1);
    background: rgba(255,255,255,.48);
  }
  .mobile-drawer-bottom { border-top-color: rgba(25, 47, 80, .1); }
  .mobile-panel-label { color: rgba(55, 76, 107, .62); }
  .mobile-drawer .mobile-language-links a {
    color: rgba(42, 61, 91, .72);
    border-color: rgba(23, 45, 79, .11);
    background: rgba(255,255,255,.66);
  }
  .mobile-drawer .mobile-language-links a:hover {
    color: #101d33;
    background: #fff;
  }
  .mobile-drawer .mobile-language-links a[aria-current="page"] {
    color: #111b2e;
    border-color: rgba(220, 145, 20, .42);
    background: linear-gradient(135deg, #ffd474, #f3ad30);
    box-shadow: 0 8px 24px rgba(206, 130, 7, .16);
  }
  .mobile-access-head p { color: rgba(56, 76, 108, .62); }
  .mobile-signin {
    color: #172640 !important;
    border-color: rgba(23, 45, 79, .13);
    background: rgba(255,255,255,.74);
  }
  .mobile-signin:hover { background: #fff !important; }
  .mobile-start {
    color: #111b2e !important;
    border-color: rgba(220, 145, 20, .44);
    background: linear-gradient(135deg, #ffd474, #f1a624);
    box-shadow: 0 12px 30px rgba(207, 131, 8, .17);
  }
}

@media (max-width: 1140px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-grid,
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid,
  .coverage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 1080px) {
  .nav-main,
  .nav-actions .btn-ghost,
  .nav-actions .btn-dark { display: none; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 920px) {
  .hero,
  .visual-split,
  .step-grid,
  .function-row { grid-template-columns: 1fr; }
  .contact-form-wrap { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero p { font-size: 16px; }
  .hero { padding-top: 42px; }
  .motion-slider { min-height: 374px; }
  .motion-slide { inset: 18px 16px 58px; }
  .motion-slide h3 { font-size: 24px; }

  .function-row.reverse .function-copy,
  .function-row.reverse .function-media {
    order: initial;
  }
  .function-media {
    min-height: 190px;
  }

  .nav-main,
  .nav-actions .btn-ghost,
  .nav-actions .btn-dark { display: none; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .topbar-wrap { padding-top: 10px; }
  .topbar { border-radius: 16px; }
  .brand img { height: 34px; }
  .brand-logo-lockup { font-size: 17px; }
  .brand.brand-logo-lockup img { width: 24px; height: 34px; }
  .btn { padding: 10px 14px; font-size: 13px; border-radius: 12px; }
  .section { padding: 68px 0; }
  .feature-grid,
  .price-grid,
  .contact-grid,
  .trust-grid,
  .coverage-grid,
  .cards-3,
  .form-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-note { flex-direction: column; }
  .motion-slider {
    padding: 12px;
    min-height: 432px;
  }
  .motion-slide {
    inset: 12px 10px 62px;
    padding: 14px;
  }
  .motion-controls {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .scene-track { min-height: 360px; }
  .scene-card { padding: 20px 16px 18px; }
  .scene-card p { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-drawer,
  .mobile-drawer .mobile-nav-link,
  .menu-toggle-glyph i { animation: none !important; transition: none !important; }
  .hero-visual,
  .reveal,
  .motion-slide,
  .btn-magnetic,
  .btn-magnetic span {
    animation: none !important;
    transition: none !important;
  }
}

/* Home premium redesign */
.home-luxe {
  background:
    radial-gradient(circle at 72% 6%, rgba(99, 102, 241, 0.16), rgba(99, 102, 241, 0) 28%),
    radial-gradient(circle at 14% 10%, rgba(14, 165, 233, 0.13), rgba(14, 165, 233, 0) 30%),
    var(--bg);
}

.home-luxe .hero-luxe {
  display: block;
  padding-top: 48px;
}

.home-luxe .hero-panel {
  border-radius: 34px;
  border: 1px solid rgba(211, 225, 246, 0.9);
  background: linear-gradient(150deg, rgba(255,255,255,0.95) 0%, rgba(245,250,255,0.95) 55%, rgba(241,247,255,0.98) 100%);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.13);
  backdrop-filter: blur(10px);
  padding: 34px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
}

.home-luxe .hero-copy {
  min-width: 0;
}

.home-luxe .hero-copy .chip {
  background: rgba(255,255,255,0.84);
}

.home-luxe .hero-copy h1 {
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: .93;
}

.home-luxe .hero-copy p {
  max-width: 720px;
}

.home-luxe .hero-glass-visual {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid #cedff6;
  background: linear-gradient(165deg, rgba(255,255,255,.9) 0%, rgba(238,245,255,.92) 65%, rgba(231,240,255,.9) 100%);
}

.home-luxe .glass-float {
  position: absolute;
  border-radius: 22px;
  border: 1px solid rgba(204, 220, 244, 0.95);
  background: linear-gradient(145deg, rgba(255,255,255,.45), rgba(226,235,252,.22));
  box-shadow: inset 0 0 22px rgba(255,255,255,.5), 0 20px 35px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(8px);
}

.home-luxe .float-a {
  width: 88px;
  height: 88px;
  right: 26px;
  top: 22px;
  transform: rotate(14deg);
}

.home-luxe .float-b {
  width: 62px;
  height: 62px;
  right: 128px;
  top: 68px;
  transform: rotate(-9deg);
}

.home-luxe .glass-notes {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-luxe .glass-note {
  border-radius: 999px;
  border: 1px solid #cfe0f7;
  background: rgba(255,255,255,.82);
  color: #30456a;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
}

.home-luxe .hero-metrics {
  margin-top: 24px;
}

.home-luxe .hero-metrics article {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.home-luxe .hero-dark-strip {
  margin-top: 16px;
  border-radius: 24px;
  border: 1px solid #192f58;
  background: linear-gradient(135deg, #0a1530 0%, #10224b 50%, #132e62 100%);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.16);
  padding: 16px;
}

.home-luxe .hero-dark-strip .logo-strip {
  margin-top: 0;
}

.home-luxe .hero-dark-strip .logo-pill {
  border-color: rgba(159, 186, 233, 0.38);
  background: rgba(255,255,255,.08);
  color: #d9e7ff;
}

.home-luxe .scene-slider {
  margin-top: 24px;
}

/* Public legal and payment-review information */
.legal-hero { padding-top: clamp(9rem, 15vw, 13rem); padding-bottom: clamp(3rem, 6vw, 5rem); max-width: 960px; }
.legal-hero h1 { margin: 1rem 0 1.2rem; font-size: clamp(3rem, 7vw, 6.8rem); line-height: .96; letter-spacing: -.065em; }
.legal-hero > p { max-width: 760px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.75; }
.legal-meta { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.8rem; }
.legal-meta span { padding: .6rem .9rem; border: 1px solid rgba(20, 35, 58, .12); border-radius: 999px; background: rgba(255,255,255,.7); font-size: .78rem; font-weight: 700; }
.legal-document { max-width: 960px; padding-bottom: clamp(6rem, 12vw, 10rem); }
.legal-document section { display: grid; grid-template-columns: minmax(210px, .7fr) minmax(0, 1.5fr); gap: clamp(1.5rem, 5vw, 5rem); padding: 2.1rem 0; border-top: 1px solid rgba(20, 35, 58, .12); }
.legal-document h2 { margin: 0; font-size: 1.05rem; letter-spacing: -.02em; }
.legal-document p { margin: 0; color: var(--muted); line-height: 1.85; }
.legal-contact { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding: 1.4rem 1.6rem; border-radius: 1.25rem; background: #101b31; color: #fff; }
.legal-contact a { color: #ffc55c; font-weight: 700; }
.gateway-company-card { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 6vw, 6rem); margin-top: 2rem; margin-bottom: clamp(4rem, 8vw, 7rem); padding: clamp(2rem, 5vw, 4.5rem); border: 1px solid rgba(20, 35, 58, .12); border-radius: 2rem; background: rgba(255,255,255,.72); box-shadow: 0 24px 70px rgba(20,35,58,.08); }
.gateway-company-card h2 { margin: .8rem 0 1rem; font-size: clamp(1.8rem, 4vw, 3.3rem); line-height: 1.08; letter-spacing: -.04em; }
.gateway-company-card p { color: var(--muted); line-height: 1.75; }
.gateway-company-card dl { margin: 0; }
.gateway-company-card dl div { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; padding: 1rem 0; border-top: 1px solid rgba(20,35,58,.12); }
.gateway-company-card dt { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.gateway-company-card dd { margin: 0; font-weight: 700; }
.legal-nav-cta { display: none; }

@media (max-width: 920px) {
  .home-luxe .hero-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

@media (max-width: 720px) {
  .cv-legal-page .legal-nav-cta { display: inline-flex; margin-inline-start: auto; }
  .legal-document section, .gateway-company-card { grid-template-columns: 1fr; }
  .legal-document section { gap: .75rem; }
  .legal-contact { align-items: flex-start; flex-direction: column; }
  .gateway-company-card dl div { grid-template-columns: 1fr; gap: .25rem; }
}
