:root {
  --bg: #f7f7fb;
  --surface: #ffffff;
  --surface-alt: #f1fbf6;
  --surface-soft: #f7fdf9;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --success: #067647;
  --radius: 18px;
  --shadow-soft: 0 14px 32px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 30px 60px rgba(37, 99, 235, 0.24);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--surface-alt);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--text);
  color: #fff;
  padding: 8px 12px;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
  border-radius: 8px;
}

.social-float {
  position: fixed;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: grid;
  gap: 8px;
}

.social-float a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #0b1220;
  border: 1px solid #1f2937;
  color: #f8fafc;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 16px rgba(2, 6, 23, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
  position: relative;
}

.social-float a:hover {
  transform: translateX(3px);
  background: #111827;
}

.social-float a i {
  font-size: 1rem;
  line-height: 1;
}

.social-float a::after {
  content: attr(data-name);
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: #0b1220;
  color: #f8fafc;
  border: 1px solid #1f2937;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.social-float a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.customer-service-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0b1220;
  color: #f8fafc;
  border: 1px solid #1f2937;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

.customer-service-float:hover {
  transform: translateY(-2px);
  background: #111827;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 0;
  transition: top 0.25s ease, margin 0.25s ease, border-radius 0.25s ease, background 0.25s ease;
}

main {
  padding-top: 82px;
}

.nav-wrap {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
}

.logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.logo-text {
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.site-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.site-nav a:not(.btn):hover {
  color: var(--primary);
}

.menu-toggle {
  grid-column: 3;
  justify-self: end;
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(29, 78, 216, 0.32);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.btn-muted {
  background: #f2f4f7;
  color: #344054;
  border-color: #e4e7ec;
  box-shadow: none;
}

.btn-muted:hover {
  background: #eaecf0;
  border-color: #d0d5dd;
  color: #1d2939;
  box-shadow: none;
}

.header-action {
  grid-column: 3;
  justify-self: end;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: 999px;
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
}

.btn-outline:hover {
  color: #fff;
}

.btn-light {
  background: #fff;
  border-color: #fff;
  color: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f8faff);
}

.hero-panel {
  position: relative;
  z-index: 2;
  padding: 38px;
  border-radius: 28px;
  border: 1px solid #e4e9f7;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96));
  box-shadow: 0 24px 55px rgba(37, 99, 235, 0.16);
}

.site-header.is-scrolled {
  top: 10px;
  margin-left: 50px;
  margin-right: 50px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(26px);
  z-index: 1;
}

.hero-glow-left {
  width: 280px;
  height: 280px;
  background: rgba(37, 99, 235, 0.2);
  left: -120px;
  top: 110px;
}

.hero-glow-right {
  width: 340px;
  height: 340px;
  background: rgba(56, 189, 248, 0.16);
  right: -160px;
  top: 20px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
}

.muted {
  color: var(--muted);
}

.hero-actions {
  margin: 24px 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-note span {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #d8e0f4;
  border-radius: 999px;
  padding: 6px 12px;
}

.hero-metrics {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-metrics article {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #dde5f6;
  border-radius: 12px;
  padding: 12px;
}

.hero-metrics strong {
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.hero-metrics p {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: #344054;
}

.hero-media {
  padding: 14px;
  border: 1px solid #d8e1f5;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
}

.dashboard-shell {
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(160deg, #0f172a, #1e3a8a 45%, #2563eb 70%, #38bdf8);
  color: #eaf0ff;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.dashboard-title strong {
  display: block;
  font-size: 1rem;
}

.dashboard-title span {
  font-size: 0.83rem;
  color: rgba(234, 240, 255, 0.8);
}

.dashboard-chip {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  background: #dbeafe;
  padding: 5px 10px;
  border-radius: 999px;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.kpi-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 10px;
}

.kpi-card p {
  margin: 0 0 2px;
  font-size: 0.75rem;
  color: rgba(234, 240, 255, 0.85);
}

.kpi-card strong {
  font-size: 1.02rem;
}

.kpi-card span {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.kpi-card .up {
  color: #93c5fd;
}

.kpi-card .warn {
  color: #fcd34d;
}

.dashboard-visuals {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
}

.chart-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 10px;
}

.chart-card h3 {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0;
  color: rgba(234, 240, 255, 0.95);
}

.line-chart {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 6px;
  height: 74px;
}

.line-segment {
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #93c5fd, #3b82f6);
}

.line-segment.s1 { height: 34%; }
.line-segment.s2 { height: 52%; }
.line-segment.s3 { height: 44%; }
.line-segment.s4 { height: 72%; }
.line-segment.s5 { height: 88%; }

.bar-chart {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 74px;
}

.bar-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #bfdbfe, #2563eb);
}

.hero-modern {
  background: #ffffff;
  padding-top: 56px;
}

.hero-ref-wrap {
  position: relative;
}

.hero-bg-outline {
  position: absolute;
  top: -2px;
  left: min(38%, 420px);
  right: -120px;
  display: grid;
  gap: 16px;
  pointer-events: none;
  opacity: 0.85;
}

.outline-row {
  overflow: hidden;
  white-space: nowrap;
}

.outline-track {
  display: inline-flex;
  gap: clamp(18px, 2.4vw, 34px);
  animation: marquee-left 28s linear infinite;
}

.outline-row.reverse .outline-track {
  animation-name: marquee-right;
  animation-duration: 30s;
}

.outline-track span {
  display: inline-block;
  font-size: clamp(2rem, 5.2vw, 4.1rem);
  font-family: "Inter", "Arial Black", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    -1px -1px 0 #0f172a,
    0 -1px 0 #0f172a,
    1px -1px 0 #0f172a,
    1px 0 0 #0f172a,
    1px 1px 0 #0f172a,
    0 1px 0 #0f172a,
    -1px 1px 0 #0f172a,
    -1px 0 0 #0f172a;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-35%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-20%);
  }
  to {
    transform: translateX(0);
  }
}

.hero-ref-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.95fr;
  gap: 14px;
  align-items: end;
}

.hero-ref-left h1 {
  margin: 12px 0 20px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 520px;
}

.hero-ref-badge {
  width: fit-content;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: #0f172a;
  color: #93c5fd;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-ref-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -8px;
  background: linear-gradient(140deg, #cbd5e1, #94a3b8);
}

.hero-ref-social strong {
  display: block;
  font-size: 1.05rem;
}

.hero-ref-social p {
  margin: 0;
  color: #667085;
}

.hero-ref-form {
  max-width: 340px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e6e9f2;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
}

.hero-ref-form h3 {
  margin: 0 0 2px;
}

.hero-ref-form p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: #667085;
}

.hero-ref-form input {
  margin-bottom: 10px;
}

.hero-ref-btn {
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, #121826, #0b1220);
  border-color: #121826;
  box-shadow: none;
}

.hero-ref-btn:hover {
  background: #0a1020;
  border-color: #0a1020;
}

.hero-ref-chart {
  min-height: 520px;
  border-radius: 22px;
  padding: 24px;
  color: #0f172a;
  background: transparent;
  border: 1px solid #dbeafe;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.hero-ref-chart:hover {
  color: #ffffff;
  background:
    radial-gradient(circle at 70% 15%, rgba(96, 165, 250, 0.22), transparent 45%),
    linear-gradient(160deg, #0f172a, #1e3a8a 58%, #1d4ed8);
  border-color: #1d4ed8;
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.22);
}

.hero-ref-chart-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-ref-chart-top h3 {
  margin: 0;
  font-size: 1.35rem;
  color: inherit;
}

.hero-ref-chart-top span {
  color: #2563eb;
  font-size: 0.9rem;
}

.hero-ref-label {
  margin: 16px 0 8px;
  color: #475569;
}

.hero-ref-value {
  margin: 0 0 16px;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1;
  font-weight: 800;
}

.hero-ref-graph {
  position: relative;
  flex: 1;
  border-radius: 14px;
  border: 1px solid #dbeafe;
  background: linear-gradient(180deg, #f8fbff, #eff6ff);
  padding: 12px 10px 28px;
  overflow: hidden;
}

.graph-grid {
  position: absolute;
  inset: 10px 10px 24px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(
      to top,
      rgba(148, 163, 184, 0.18) 0,
      rgba(148, 163, 184, 0.18) 1px,
      transparent 1px,
      transparent 24px
    );
  pointer-events: none;
}

.hero-ref-bars {
  height: 100%;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  opacity: 0.35;
}

.hero-ref-bars span {
  flex: 1;
  height: var(--v);
  border-radius: 8px 8px 3px 3px;
  min-height: 22px;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  opacity: 0.8;
}

.hero-ref-line {
  position: absolute;
  inset: 14px 10px 24px;
  width: calc(100% - 20px);
  height: calc(100% - 38px);
}

.hero-ref-line .graph-area {
  fill: url(#areaFill);
}

.hero-ref-line polyline {
  fill: none;
  stroke: url(#lineStroke);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.25));
}

.hero-ref-line .dot {
  fill: #2563eb;
  stroke: #ffffff;
  stroke-width: 1.8;
}

.hero-ref-line .dot.d3 {
  fill: #1d4ed8;
}

.graph-x-labels {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 7px;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
}

.hero-ref-note {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 0.92rem;
}

.hero-ref-chart:hover .hero-ref-chart-top span,
.hero-ref-chart:hover .hero-ref-label,
.hero-ref-chart:hover .hero-ref-note {
  color: #bfdbfe;
}

.hero-ref-chart:hover .hero-ref-graph {
  border-color: rgba(191, 219, 254, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.hero-ref-chart:hover .hero-ref-bars span {
  background: linear-gradient(180deg, #93c5fd, #60a5fa);
  opacity: 0.7;
}

.hero-ref-chart:hover .hero-ref-line polyline {
  stroke: #dbeafe;
}

.hero-ref-chart:hover .hero-ref-line .dot {
  fill: #dbeafe;
  stroke: #1d4ed8;
}

.hero-ref-chart:hover .graph-x-labels {
  color: #dbeafe;
}

.hero-ref-alerts {
  display: grid;
  gap: 14px;
}

.alert-item {
  min-height: 98px;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 14px 14px 14px 12px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff) padding-box,
    linear-gradient(135deg, #dbeafe, #bfdbfe) border-box;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  backdrop-filter: blur(4px);
}

.alert-item::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2563eb;
}

.bubble {
  width: min(88%, 300px);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  animation: bubbleSequence 8s ease-in-out infinite;
}

.bubble.left {
  justify-self: start;
  transform-origin: left center;
}

.bubble.right {
  justify-self: end;
  margin-right: -6px;
  transform-origin: right center;
  flex-direction: row-reverse;
  text-align: right;
  background:
    linear-gradient(180deg, #111827, #0b1220) padding-box,
    linear-gradient(135deg, #374151, #1f2937) border-box;
  border-color: transparent;
}

.bubble.right::after {
  left: 14px;
  right: auto;
  background: #93c5fd;
}

.hero-ref-alerts .bubble:nth-child(2) {
  animation-delay: 2s;
}

.hero-ref-alerts .bubble:nth-child(3) {
  animation-delay: 4s;
}

.hero-ref-alerts .bubble:nth-child(4) {
  animation-delay: 6s;
}

.bubble-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: 0 0 30px;
  background: linear-gradient(180deg, #dbeafe, #bfdbfe);
  border: 1px solid #bfdbfe;
  margin-top: 1px;
  position: relative;
}

.bubble-dot::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #2563eb;
}

.bubble.left::before,
.bubble.right::before {
  content: "";
  position: absolute;
  top: 22px;
  width: 10px;
  height: 10px;
  background: inherit;
  border: 1px solid inherit;
  border-top: 0;
  border-left: 0;
}

.bubble.left::before {
  left: -6px;
  transform: rotate(135deg);
  border-color: #dbeafe;
}

.bubble.right::before {
  right: -6px;
  transform: rotate(-45deg);
  border-color: #374151;
}

.bubble-time {
  display: inline-flex;
  margin-bottom: 5px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  color: #1e3a8a;
  background: #eff6ff;
  border: 1px solid #dbeafe;
}

.alert-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.alert-item p {
  margin: 0;
  color: #667085;
  font-size: 0.84rem;
}

.bubble.right strong {
  color: #f8fafc;
}

.bubble.right p {
  color: #d1d5db;
}

.bubble.right .bubble-time {
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(147, 197, 253, 0.3);
}

@keyframes bubbleSequence {
  0%,
  10% {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  14%,
  40% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  52%,
  100% {
    opacity: 0;
    transform: translateY(-6px) scale(0.99);
  }
}

.trust-bar {
  border-top: 0;
  border-bottom: 0;
  background: #ffffff;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 26px;
  padding: 18px 0;
  font-weight: 600;
  color: #344054;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  background: #2563eb;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.15);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 34px;
}

.section-head.left {
  text-align: left;
  margin-inline: 0;
}

.section-sub {
  margin: 6px auto 0;
  max-width: 760px;
}

.reveal-start {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scanner-module {
  background: linear-gradient(180deg, #04070d, #090f1a);
}

.scanner-grid {
  width: min(1260px, 96%);
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 26px;
  align-items: center;
}

.scanner-copy {
  color: #f8fafc;
}

.scanner-badge {
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.14);
  color: #60a5fa;
  font-size: 0.84rem;
  font-weight: 700;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  letter-spacing: 0.01em;
}

.scanner-copy h2 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 4.1vw, 3.5rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.scanner-copy h2 span {
  color: #60a5fa;
}

.scanner-sub {
  margin: 0 0 24px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 640px;
}

.scanner-points {
  display: grid;
  gap: 12px;
}

.scanner-points article {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.scanner-points i {
  margin-top: 3px;
  color: #60a5fa;
  font-size: 1rem;
}

.scanner-points h3 {
  margin: 0 0 4px;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: #f8fafc;
}

.scanner-points p {
  margin: 0;
  font-size: 0.96rem;
  color: #94a3b8;
  line-height: 1.6;
}

.scanner-media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #1e293b;
  box-shadow: 0 20px 44px rgba(2, 6, 23, 0.45);
}

.scanner-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.setup-steps .section-head {
  margin-bottom: 28px;
}

.steps-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.flow-step {
  position: relative;
  text-align: center;
  --delay: 0s;
}

.steps-flow .flow-step:nth-child(1) {
  --delay: 0s;
}

.steps-flow .flow-step:nth-child(2) {
  --delay: 1.5s;
}

.steps-flow .flow-step:nth-child(3) {
  --delay: 3s;
}

.steps-flow .flow-step:nth-child(4) {
  --delay: 4.5s;
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(50% + 38px);
  width: calc(100% - 76px);
  height: 2px;
  background: linear-gradient(90deg, #bfdbfe, #60a5fa);
}

.flow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 27px;
  right: -2px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #60a5fa;
  border-right: 2px solid #60a5fa;
  transform: rotate(45deg);
}

.flow-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 2px solid #2563eb;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1e3a8a;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.16);
  animation: flowBlink 6s linear infinite;
  animation-delay: var(--delay);
}

.flow-copy h3 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 1.1rem;
  color: #0f172a;
  animation: flowTitleBlink 6s linear infinite;
  animation-delay: var(--delay);
}

.flow-copy p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #64748b;
}

@keyframes flowBlink {
  0%,
  18% {
    background: #ffffff;
    border-color: #2563eb;
    color: #1e3a8a;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.16);
  }
  24%,
  58% {
    background: #2563eb;
    border-color: #1d4ed8;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.38);
  }
  64%,
  100% {
    background: #ffffff;
    border-color: #2563eb;
    color: #1e3a8a;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.16);
  }
}

@keyframes flowTitleBlink {
  0%,
  18% {
    color: #0f172a;
  }
  24%,
  58% {
    color: #1d4ed8;
  }
  64%,
  100% {
    color: #0f172a;
  }
}

.advantages-hub {
  background: #ffffff;
}

.hub-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 220px minmax(230px, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 18px 16px;
  align-items: center;
  justify-items: center;
  position: relative;
}

.hub-center {
  display: grid;
  place-items: center;
  grid-column: 2;
  grid-row: 2;
  z-index: 5;
}

.hub-logo-wrap {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dbeafe;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
  display: grid;
  place-items: center;
  position: relative;
}

.hub-logo-wrap::before,
.hub-logo-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hub-logo-wrap::before {
  inset: -16px;
  border: 1px dashed rgba(37, 99, 235, 0.28);
}

.hub-logo-wrap::after {
  inset: -28px;
  border: 1px solid rgba(37, 99, 235, 0.16);
}

.hub-logo-wrap img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.hub-item {
  position: relative;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(2, 6, 23, 0.05);
  width: min(100%, 320px);
  min-height: 92px;
  z-index: 2;
  overflow: visible;
  transition: transform 0.28s ease, box-shadow 0.3s ease, border-color 0.24s ease, background 0.24s ease, opacity 0.24s ease, filter 0.24s ease;
}

.hub-item h3 {
  margin: 0 0 4px;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 1.02rem;
  color: #0f172a;
  transition: color 0.24s ease;
}

.hub-item p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  transition: color 0.24s ease;
}

.hub-item::after {
  content: "";
  position: absolute;
  z-index: 1;
  background: linear-gradient(90deg, #93c5fd, #2563eb);
  opacity: 0.78;
  transition: opacity 0.24s ease, filter 0.24s ease, box-shadow 0.24s ease;
}

.hub-item::before {
  content: "";
  position: absolute;
  z-index: 1;
  background: linear-gradient(180deg, #93c5fd, #2563eb);
  opacity: 0.78;
  transition: opacity 0.24s ease, filter 0.24s ease, box-shadow 0.24s ease;
}

.hub-grid:hover .hub-item {
  opacity: 0.9;
}

.hub-item:hover,
.hub-item:focus-within {
  transform: translateY(-4px);
  border-color: #a5b4fc;
  background:
    linear-gradient(120deg, rgba(59, 130, 246, 0.1), rgba(129, 140, 248, 0.11), rgba(56, 189, 248, 0.11)),
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow:
    0 16px 28px rgba(37, 99, 235, 0.16),
    0 0 0 1px rgba(129, 140, 248, 0.22);
  opacity: 1;
  animation: hubCardPop 1.3s ease-in-out infinite alternate;
}

.hub-item:hover h3,
.hub-item:focus-within h3 {
  color: #1d4ed8;
}

.hub-item:hover p,
.hub-item:focus-within p {
  color: #475569;
}

.hub-item:hover::after,
.hub-item:hover::before,
.hub-item:focus-within::after,
.hub-item:focus-within::before {
  opacity: 1;
  filter: saturate(1.45);
  box-shadow:
    0 0 10px rgba(59, 130, 246, 0.45),
    0 0 16px rgba(129, 140, 248, 0.35);
}

.hub-item h3::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #93c5fd);
  transition: width 0.28s ease;
}

.hub-item:hover h3::after,
.hub-item:focus-within h3::after {
  width: 48px;
}

.hub-item.left-top {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  margin-right: 2px;
}

.hub-item.left-top::after {
  top: 50%;
  right: -92px;
  transform: translateY(-50%);
  width: 92px;
  height: 10px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(191, 219, 254, 0) 0 8px,
      rgba(147, 197, 253, 0.85) 8px 16px,
      rgba(37, 99, 235, 0.95) 16px 24px
    );
  background-size: 120px 10px;
  animation: arrowFlowRight 1.2s linear infinite;
  clip-path: polygon(0 35%, calc(100% - 10px) 35%, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, calc(100% - 10px) 65%, 0 65%);
}

.hub-item.left-top::before {
  top: 50%;
  right: -92px;
  width: 2px;
  height: 124px;
}

.hub-item.left-mid {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
  margin-right: 2px;
}

.hub-item.left-mid::after {
  top: 50%;
  right: -92px;
  transform: translateY(-50%);
  width: 92px;
  height: 10px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(191, 219, 254, 0) 0 8px,
      rgba(147, 197, 253, 0.85) 8px 16px,
      rgba(37, 99, 235, 0.95) 16px 24px
    );
  background-size: 120px 10px;
  animation: arrowFlowRight 1.2s linear infinite;
  clip-path: polygon(0 35%, calc(100% - 10px) 35%, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, calc(100% - 10px) 65%, 0 65%);
}

.hub-item.left-mid::before {
  display: none;
}

.hub-item.left-bottom {
  grid-column: 1;
  grid-row: 3;
  justify-self: end;
  margin-right: 2px;
}

.hub-item.left-bottom::after {
  top: 50%;
  right: -92px;
  transform: translateY(-50%);
  width: 92px;
  height: 10px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(191, 219, 254, 0) 0 8px,
      rgba(147, 197, 253, 0.85) 8px 16px,
      rgba(37, 99, 235, 0.95) 16px 24px
    );
  background-size: 120px 10px;
  animation: arrowFlowRight 1.2s linear infinite;
  clip-path: polygon(0 35%, calc(100% - 10px) 35%, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, calc(100% - 10px) 65%, 0 65%);
}

.hub-item.left-bottom::before {
  right: -92px;
  bottom: 50%;
  width: 2px;
  height: 124px;
}

.hub-item.right-top {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  margin-left: 2px;
}

.hub-item.right-top::after {
  top: 50%;
  left: -92px;
  transform: translateY(-50%);
  width: 92px;
  height: 10px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(37, 99, 235, 0.95) 0 8px,
      rgba(147, 197, 253, 0.85) 8px 16px,
      rgba(191, 219, 254, 0) 16px 24px
    );
  background-size: 120px 10px;
  animation: arrowFlowLeft 1.2s linear infinite;
  clip-path: polygon(10px 35%, 100% 35%, 100% 65%, 10px 65%, 10px 100%, 0 50%, 10px 0);
}

.hub-item.right-top::before {
  top: 50%;
  left: -92px;
  width: 2px;
  height: 124px;
  background: linear-gradient(180deg, #93c5fd, #2563eb);
}

.hub-item.right-mid {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
  margin-left: 2px;
}

.hub-item.right-mid::after {
  top: 50%;
  left: -92px;
  transform: translateY(-50%);
  width: 92px;
  height: 10px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(37, 99, 235, 0.95) 0 8px,
      rgba(147, 197, 253, 0.85) 8px 16px,
      rgba(191, 219, 254, 0) 16px 24px
    );
  background-size: 120px 10px;
  animation: arrowFlowLeft 1.2s linear infinite;
  clip-path: polygon(10px 35%, 100% 35%, 100% 65%, 10px 65%, 10px 100%, 0 50%, 10px 0);
}

.hub-item.right-mid::before {
  display: none;
}

.hub-item.right-bottom {
  grid-column: 3;
  grid-row: 3;
  justify-self: start;
  margin-left: 2px;
}

.hub-item.right-bottom::after {
  top: 50%;
  left: -92px;
  transform: translateY(-50%);
  width: 92px;
  height: 10px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(37, 99, 235, 0.95) 0 8px,
      rgba(147, 197, 253, 0.85) 8px 16px,
      rgba(191, 219, 254, 0) 16px 24px
    );
  background-size: 120px 10px;
  animation: arrowFlowLeft 1.2s linear infinite;
  clip-path: polygon(10px 35%, 100% 35%, 100% 65%, 10px 65%, 10px 100%, 0 50%, 10px 0);
}

@keyframes hubCardPop {
  0% {
    filter: saturate(1) brightness(1);
  }
  100% {
    filter: saturate(1.1) brightness(1.03);
  }
}

@keyframes arrowFlowRight {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 120px 0;
  }
}

@keyframes arrowFlowLeft {
  0% {
    background-position: 120px 0;
  }
  100% {
    background-position: 0 0;
  }
}

.hub-item.right-bottom::before {
  left: -92px;
  bottom: 50%;
  width: 2px;
  height: 124px;
  background: linear-gradient(180deg, #93c5fd, #2563eb);
}

.form-wrap {
  max-width: 860px;
}

form {
  margin-top: 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 500;
  font-size: 0.94rem;
  color: #1e293b;
  margin-bottom: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #dbe7ff;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 6px 16px rgba(37, 99, 235, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.24s ease, transform 0.2s ease;
}

input:hover,
textarea:hover {
  border-color: #bfd6ff;
}

input:focus,
textarea:focus,
.toggle-btn:focus,
.faq-question:focus {
  outline: 2px solid #adc0ff;
  outline-offset: 2px;
  border-color: #6ea0ff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

input::placeholder,
textarea::placeholder {
  color: #9aa9c2;
  font-weight: 300;
  font-size: 0.9rem;
}

.form-message {
  margin: 14px 0 0;
  font-weight: 600;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: #b42318;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lead-popup.open {
  opacity: 1;
  pointer-events: auto;
}

.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.56);
  backdrop-filter: blur(4px);
}

.lead-popup-panel {
  position: relative;
  width: min(660px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  border-radius: 18px;
  border: 1px solid #dbe7ff;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 28px 50px rgba(2, 6, 23, 0.28);
  padding: 22px 20px 18px;
}

.lead-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #dbe7ff;
  background: #ffffff;
  color: #0f172a;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.lead-popup-sub {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 0.9rem;
}

.popup-form {
  margin-top: 10px;
}

.popup-form-grid {
  margin-bottom: 2px;
}

.popup-submit {
  width: 100%;
}

body.popup-open {
  overflow: hidden;
}

.pricing-packages {
  padding-top: 40px;
}

.reviews-marquee {
  position: relative;
  margin: 0 0 22px;
  padding: 10px 0;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.reviews-marquee:hover {
  cursor: none;
}

.reviews-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  background: rgba(59, 130, 246, 0.18);
  box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.08);
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.reviews-marquee.is-hovering .reviews-cursor {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: cursorPulse 1.2s ease-in-out infinite;
}

.reviews-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  padding: 0 12px;
  animation: reviewsSlide 54s linear infinite;
}

.profit-impact {
  width: 100vw;
  margin: 8px 0 28px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
  background:
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.14), transparent 42%),
    linear-gradient(180deg, #050910 0%, #060b14 54%, #070f1d 100%);
  color: #e2e8f0;
  padding: 42px clamp(90px, 8vw, 112px);
}

.profit-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.profit-kicker {
  width: fit-content;
  margin: 0 auto 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  background: rgba(30, 64, 175, 0.14);
  color: #bfdbfe;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profit-head h3 {
  margin: 0 0 10px;
  color: #f8fafc;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.profit-head h3 span {
  color: #60a5fa;
}

.profit-head > p {
  margin: 0 0 15px;
  color: #b8c7dd;
  font-size: 0.92rem;
  line-height: 1.62;
}

.profit-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 14px;
}

.profit-main-card {
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 68% 0%, rgba(59, 130, 246, 0.24), transparent 54%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.56), rgba(2, 6, 23, 0.74));
  padding: 16px 16px 14px;
}

.profit-live {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
}

.profit-live p,
.profit-live small {
  margin: 0;
  color: #bdcde2;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}

.profit-live p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  font-weight: 600;
}

.profit-live p::before {
  content: "↗";
  color: #60a5fa;
  font-size: 0.92rem;
  line-height: 1;
}

.profit-live small {
  color: #8ea0bc;
  font-weight: 500;
}

.profit-big {
  display: block;
  color: #eff6ff;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  font-weight: 700;
  line-height: 1.03;
  margin: 8px 0 6px;
}

.profit-note {
  margin: 0 0 14px;
  color: #93a5bf;
  font-size: 0.84rem;
  line-height: 1.45;
  font-weight: 500;
}

.profit-side-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.profit-mini-card {
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.42), rgba(2, 6, 23, 0.66));
  padding: 12px;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.profit-mini-card p {
  margin: 0 0 4px;
  color: #c2d1e7;
  font-size: 0.78rem;
}

.profit-mini-card strong {
  display: block;
  font-size: 2rem;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  line-height: 1.05;
  color: #93c5fd;
}

.profit-mini-card small {
  color: #8ca1bc;
  font-size: 0.74rem;
  line-height: 1.4;
}

.profit-mini-card.dual {
  justify-content: flex-start;
}

.dual-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.dual-stat span {
  color: #9fb0c8;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dual-stat b {
  display: block;
  margin-bottom: 3px;
  font-size: 1.45rem;
  color: #e2e8f0;
  text-transform: none;
  letter-spacing: 0;
}

.profit-graph {
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 82% 0%, rgba(59, 130, 246, 0.2), transparent 58%),
    rgba(2, 6, 23, 0.5);
  padding: 6px 0 0;
  position: relative;
  overflow: hidden;
}

.profit-graph::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32%;
  left: -35%;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.18), transparent);
  animation: profitSweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

.profit-chart {
  width: 100%;
  height: 240px;
  display: block;
}

.profit-area-main {
  fill: url(#profitAreaMain);
  animation: areaBreath 3.4s ease-in-out infinite;
}

.profit-line-main,
.profit-line-alt {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
}

.profit-line-main {
  stroke: url(#profitLineMain);
  stroke-width: 4;
  filter: drop-shadow(0 0 11px rgba(96, 165, 250, 0.52));
  animation: drawProfitMain 2.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.profit-line-alt {
  stroke: rgba(147, 197, 253, 0.3);
  stroke-width: 1.8;
  animation: drawProfitAlt 3s cubic-bezier(0.22, 1, 0.36, 1) both 0.15s;
}

.profit-end-ring {
  fill: rgba(59, 130, 246, 0.22);
  animation: pulseProfitDot 1.9s ease-in-out infinite;
}

.profit-end-dot {
  fill: #93c5fd;
  stroke: #1e3a8a;
  stroke-width: 2;
  filter: drop-shadow(0 0 7px rgba(147, 197, 253, 0.86));
}

.profit-axis {
  display: none;
}

@keyframes drawProfitMain {
  0% {
    stroke-dashoffset: 760;
    opacity: 0;
  }
  24% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes drawProfitAlt {
  0% {
    stroke-dashoffset: 760;
    opacity: 0;
  }
  28% {
    opacity: 0.7;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.7;
  }
}

@keyframes areaBreath {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes pulseProfitDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.28);
    opacity: 1;
  }
}

@keyframes profitSweep {
  0% {
    left: -35%;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    left: 115%;
    opacity: 0;
  }
}

.review-chip {
  width: 320px;
  min-width: 320px;
  min-height: 116px;
  border: 1px solid #cfe0ff;
  border-radius: 12px;
  background: #ffffff;
  padding: 14px 14px;
  box-shadow: none;
}

.review-chip strong {
  display: block;
  margin-bottom: 3px;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0f172a;
}

.review-chip span {
  color: #475569;
  font-size: 0.81rem;
  line-height: 1.55;
}

@keyframes reviewsSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes cursorPulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.08);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(59, 130, 246, 0.15);
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}

.price-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid #dbe7ff;
  border-radius: 16px;
  padding: 21px 18px 17px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.16);
  border-color: #bfd6ff;
}

.plan-kicker {
  margin: 0 0 10px;
  color: #2563eb;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0 0 7px;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 1.38rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.price-note {
  margin: 0 0 12px;
  color: #5b6b83;
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 400;
}

.price-card .price {
  margin: 0 0 7px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.price-card .price span {
  display: block;
  margin-top: 4px;
  font-size: 0.84rem;
  font-weight: 400;
  color: #6b7a90;
}

.price-meta {
  margin: 0 0 12px;
  color: #7a8aa2;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.list-title {
  margin: 0 0 10px;
  color: #8b98ab;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card ul {
  margin: 0 0 15px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.price-card li {
  position: relative;
  padding-left: 18px;
  color: #2a3b52;
  line-height: 1.42;
  font-size: 0.86rem;
  font-weight: 400;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 600;
}

.badge {
  position: absolute;
  top: -12px;
  right: 14px;
  background: #2563eb;
  color: #fff;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.price-card.featured {
  border-color: #7fb2ff;
  box-shadow: 0 20px 38px rgba(37, 99, 235, 0.2);
}

.featured-badge {
  background: #0f172a;
}

.price-card.enterprise {
  border-color: #c7dcff;
  box-shadow: 0 16px 30px rgba(59, 130, 246, 0.14);
}

.contact-price {
  font-size: 1.4rem !important;
}

.package-btn {
  width: 100%;
  margin-top: auto;
  justify-content: center;
  border-radius: 11px;
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  border-color: #2563eb;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.package-btn:hover {
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
  border-color: #1d4ed8;
  box-shadow: 0 14px 26px rgba(29, 78, 216, 0.3);
}

.info-card {
  justify-content: center;
  text-align: center;
  border-color: #cfe1ff;
  background:
    radial-gradient(circle at top, rgba(59, 130, 246, 0.08), transparent 55%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.info-card-logo {
  width: 88px;
  height: 88px;
  margin: 2px auto 14px;
  border-radius: 50%;
  border: 1px solid #dbeafe;
  background: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.info-card-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.info-card .price-note {
  margin-bottom: 10px;
}

.info-card .price-meta {
  margin-bottom: 16px;
}

.info-card-btn {
  font-size: 0.82rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.faq-list {
  max-width: 100%;
  margin: 0;
}

.faq-item {
  margin-bottom: 2px;
  border-bottom: 1px solid #e6edf9;
}

.faq-question {
  width: 100%;
  padding: 14px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: #0f172a;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 13px;
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.6;
  font-weight: 400;
}

.faq-brand {
  padding-top: 8px;
  text-align: center;
}

.faq-brand img {
  width: 118px;
  height: 118px;
  margin: 0 auto 12px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(37, 99, 235, 0.2));
}

.faq-brand h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.faq-brand p {
  margin: 0 auto;
  max-width: 260px;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0f172a, #0b1220);
  color: #cbd5e1;
  padding-top: 56px;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(148, 163, 184, 0.28);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.05fr 1.45fr;
  gap: 26px;
  align-items: start;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-brand h3 {
  margin: 0 0 7px;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 1.36rem;
  font-weight: 600;
  color: #f8fafc;
}

.footer-brand p {
  margin: 0 0 14px;
  max-width: 330px;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-brand .btn-light {
  border-radius: 10px;
  font-size: 0.82rem;
  padding: 9px 14px;
  background: #e2e8f0;
  border-color: #e2e8f0;
  color: #0f172a;
  box-shadow: none;
}

.footer-brand .btn-light:hover {
  background: #cbd5e1;
  border-color: #cbd5e1;
  color: #020617;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.footer-grid > div {
  padding-left: 14px;
  border-left: 1px solid rgba(148, 163, 184, 0.24);
}

.footer-grid h4 {
  margin: 0 0 9px;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-grid p,
.footer-grid a {
  margin: 0 0 6px;
  color: #94a3b8;
  font-size: 0.84rem;
  line-height: 1.55;
  font-weight: 400;
}

.site-footer a {
  display: block;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #e2e8f0;
}

.footer-bottom {
  margin-top: 24px;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-bottom a {
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 500;
}

.copyright {
  margin: 0;
  padding: 0;
  color: #94a3b8;
  font-size: 0.84rem;
}

.footer-outline {
  margin: 0;
  padding: 4px 0 12px;
  text-align: center;
}

.footer-outline svg {
  width: min(1240px, 98%);
  height: clamp(68px, 10vw, 126px);
  overflow: visible;
}

.footer-outline text {
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 110px;
  font-weight: 700;
  letter-spacing: 0.05em;
  fill: none;
  stroke: rgba(148, 163, 184, 0.56);
  stroke-width: 1.7;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-miterlimit: 2;
  paint-order: stroke;
  shape-rendering: geometricPrecision;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-ref-grid {
    grid-template-columns: 1fr;
  }

  .hero-bg-outline {
    left: 0;
    top: 8px;
    opacity: 0.32;
  }

  .hero-ref-chart {
    min-height: 430px;
  }

  .steps-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scanner-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .scanner-copy h2 {
    max-width: 640px;
  }

  .scanner-media img {
    min-height: 320px;
  }

  .hub-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hub-center {
    order: -1;
    grid-column: auto;
    grid-row: auto;
  }

  .hub-item {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .hub-item.left-top,
  .hub-item.left-mid,
  .hub-item.left-bottom,
  .hub-item.right-top,
  .hub-item.right-mid,
  .hub-item.right-bottom {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .hub-item::after,
  .hub-item::before {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .hero-panel {
    padding: 24px;
  }

  .dashboard-kpis {
    grid-template-columns: 1fr;
  }

  .dashboard-visuals {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .review-chip {
    width: 300px;
    min-width: 300px;
    min-height: 110px;
  }

  .profit-impact {
    padding: 24px 18px;
  }

  .profit-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-brand {
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand p {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--line);
    padding: 14px 4%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .social-float {
    top: auto;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: rgba(11, 18, 32, 0.9);
    border: 1px solid #1f2937;
    border-radius: 999px;
    padding: 6px;
    gap: 6px;
  }

  .social-float a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    box-shadow: none;
  }

  .social-float a::after {
    display: none;
  }

  .customer-service-float {
    right: 12px;
    bottom: 62px;
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-action {
    display: none;
  }

  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div {
    padding-left: 0;
    border-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .lead-popup-panel {
    padding: 20px 16px 14px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .reviews-marquee {
    margin-bottom: 18px;
  }

  .profit-impact {
    margin-bottom: 20px;
    padding: 16px 14px;
  }

  .profit-head {
    margin-bottom: 16px;
  }

  .profit-live {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .profit-side-grid {
    grid-template-columns: 1fr;
  }

  .profit-chart {
    height: 190px;
  }

  .reviews-marquee:hover {
    cursor: auto;
  }

  .reviews-cursor {
    display: none;
  }

  .review-chip {
    width: 262px;
    min-width: 262px;
    min-height: 104px;
  }

  .faq-question {
    font-size: 0.96rem;
  }

  .scanner-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .steps-flow {
    grid-template-columns: 1fr;
  }

  .flow-step:not(:last-child)::after,
  .flow-step:not(:last-child)::before {
    display: none;
  }

  .scanner-media img {
    min-height: 250px;
  }

  .hub-logo-wrap {
    width: 116px;
    height: 116px;
  }

  .hub-logo-wrap img {
    width: 66px;
    height: 66px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .logo-text {
    font-size: 1.02rem;
  }

  .site-header.is-scrolled {
    margin-left: 14px;
    margin-right: 14px;
  }
}
