: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;
}

.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-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;
}

.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;
}
[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); }
}

@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: 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) {
  .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;
}

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