:root {
  --bg: #0b1020;
  --bg-2: #10162a;
  --panel: rgba(16, 23, 42, 0.76);
  --panel-strong: rgba(18, 27, 49, 0.94);
  --purple: #7c3aed;
  --purple-2: #a855f7;
  --blue: #38bdf8;
  --green: #22c55e;
  --white: #ffffff;
  --text: #d1d5db;
  --muted: #8d96aa;
  --line: rgba(255, 255, 255, 0.12);
  --danger: #fb7185;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(124, 58, 237, 0.28), transparent 28rem),
    radial-gradient(circle at 86% 7%, rgba(34, 197, 94, 0.12), transparent 22rem),
    linear-gradient(180deg, #0b1020 0%, #080c18 46%, #0b1020 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 13, 27, 0.78);
  backdrop-filter: blur(22px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 850;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(124, 58, 237, 0.22));
}

.brand-mark.footer-mark {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #aeb7ca;
  font-size: 0.88rem;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--green);
  color: #04110a;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 14px 44px rgba(34, 197, 94, 0.28);
}

section {
  position: relative;
  padding: 112px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 46px;
  min-height: calc(100vh - 76px);
  padding-top: 54px;
  padding-bottom: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #c7d2fe;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.86);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.85rem, 5.15vw, 4.95rem);
  line-height: 0.95;
  font-weight: 920;
}

h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.25rem, 4.6vw, 4.75rem);
  line-height: 0.98;
  font-weight: 900;
}

h3 {
  color: var(--white);
  font-size: 1.06rem;
  line-height: 1.25;
}

.hero-subtitle,
.section-copy {
  color: var(--text);
  font-size: clamp(1.05rem, 1.7vw, 1.34rem);
  line-height: 1.68;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 24px;
}

.hero-bullets,
.security-list,
.cta-checks {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-bullets {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 660px;
  margin-bottom: 26px;
}

.hero-bullets li,
.cta-checks span,
.security-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  color: #edf2ff;
  font-weight: 700;
}

.hero-bullets li::before,
.cta-checks span::before,
.security-list li::before {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  content: "\2713";
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 1), rgba(74, 222, 128, 1)),
    var(--green);
  color: #031108;
  font-size: 0.94rem;
  font-weight: 950;
  box-shadow:
    0 22px 60px rgba(34, 197, 94, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.cta-button::after {
  margin-left: 12px;
  font-size: 1.2rem;
  content: "\2192";
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 28px 72px rgba(34, 197, 94, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.cta-note {
  margin: 14px 0 0;
  color: #aeb7ca;
  font-size: 0.94rem;
  font-weight: 650;
}

.ghost-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: #edf2ff;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  perspective: 1300px;
}

.glow-plane {
  position: absolute;
  inset: 8% -7% auto auto;
  width: 80%;
  height: 74%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.38), rgba(56, 189, 248, 0.2));
  filter: blur(76px);
  opacity: 0.86;
}

.dashboard {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(100%, 620px);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(9, 14, 29, 0.9);
  box-shadow: var(--shadow), 0 0 72px rgba(124, 58, 237, 0.2);
  transform: rotateX(4deg) rotateY(-8deg) rotateZ(1deg);
  transform-style: preserve-3d;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.traffic {
  display: flex;
  gap: 7px;
}

.traffic span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.traffic span:nth-child(1) {
  background: #fb7185;
}

.traffic span:nth-child(2) {
  background: #facc15;
}

.traffic span:nth-child(3) {
  background: var(--green);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  color: #bbf7d0;
  font-size: 0.78rem;
  font-weight: 850;
}

.status-pill::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.dashboard-body {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 14px;
  padding: 18px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mini-card,
.chart-card,
.agenda-card,
.payment-card,
.float-card,
.pain-card,
.step-card,
.feature-card,
.testimonial-card,
.unit-card,
.security-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.mini-card {
  padding: 13px;
}

.mini-card span,
.payment-card span,
.agenda-item span,
.feature-card small {
  display: block;
  color: #9ca8bd;
  font-size: 0.72rem;
  font-weight: 750;
}

.mini-card strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.15rem;
}

.chart-card {
  padding: 16px;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.chart-head strong,
.agenda-card strong,
.payment-card strong {
  color: var(--white);
}

.chart {
  display: flex;
  align-items: end;
  height: 156px;
  gap: 10px;
}

.bar {
  flex: 1;
  min-width: 0;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #22c55e, #7c3aed);
  box-shadow: 0 0 22px rgba(34, 197, 94, 0.22);
  animation: grow 1200ms ease both;
  transform-origin: bottom;
}

.bar:nth-child(1) {
  height: 38%;
}

.bar:nth-child(2) {
  height: 52%;
  animation-delay: 80ms;
}

.bar:nth-child(3) {
  height: 47%;
  animation-delay: 150ms;
}

.bar:nth-child(4) {
  height: 68%;
  animation-delay: 230ms;
}

.bar:nth-child(5) {
  height: 78%;
  animation-delay: 310ms;
}

.bar:nth-child(6) {
  height: 92%;
  animation-delay: 390ms;
}

@keyframes grow {
  from {
    transform: scaleY(0.12);
    opacity: 0.45;
  }
}

.agenda-card,
.payment-card {
  padding: 16px;
}

.agenda-list {
  display: grid;
  gap: 10px;
  margin-top: 15px;
}

.agenda-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.tag {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
  font-size: 0.68rem;
  font-weight: 850;
}

.payment-card {
  margin-top: 14px;
}

.payment-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: #e8eefc;
  font-weight: 750;
}

.float-card {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: 42px;
  width: 250px;
  padding: 16px;
  background: rgba(6, 11, 24, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  animation: float 5s ease-in-out infinite;
}

.float-card strong {
  display: block;
  color: var(--white);
  font-size: 1.9rem;
}

.float-card span {
  color: #aeb7ca;
  font-weight: 700;
}

@keyframes float {
  50% {
    transform: translateY(-12px);
  }
}

.section-header {
  max-width: 790px;
  margin-bottom: 50px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header.center .eyebrow {
  justify-content: center;
}

.pain {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pain-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

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

.pain-card {
  padding: 18px;
  min-height: 118px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.pain-card:hover,
.feature-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.55);
  background: rgba(18, 27, 49, 0.94);
}

.pain-card b {
  display: grid;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(251, 113, 133, 0.12);
  color: var(--danger);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.ba-panel {
  min-height: 390px;
  padding: 22px;
}

.ba-panel.before {
  background:
    linear-gradient(rgba(251, 113, 133, 0.1), rgba(251, 113, 133, 0.02)),
    rgba(255, 255, 255, 0.025);
}

.ba-panel.after {
  background:
    linear-gradient(rgba(34, 197, 94, 0.1), rgba(124, 58, 237, 0.06)),
    rgba(255, 255, 255, 0.045);
}

.ba-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.messy-note {
  margin: 12px 0;
  padding: 14px;
  border: 1px solid rgba(251, 113, 133, 0.22);
  border-radius: 7px;
  background: rgba(251, 113, 133, 0.08);
  color: #fecdd3;
  transform: rotate(-1.4deg);
}

.clean-kpi {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  padding: 14px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 7px;
  background: rgba(34, 197, 94, 0.08);
}

.clean-kpi strong {
  color: var(--white);
}

.steps {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.06), transparent);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.steps-grid::before {
  position: absolute;
  top: 54px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.9), rgba(34, 197, 94, 0.85), transparent);
  content: "";
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 26px;
  background: rgba(11, 16, 32, 0.88);
}

.step-number {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(124, 58, 237, 0.5);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(56, 189, 248, 0.12));
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 0 38px rgba(124, 58, 237, 0.24);
}

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

.feature-card {
  padding: 20px;
  min-height: 210px;
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.32), rgba(56, 189, 248, 0.14)),
    rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1.15rem;
}

.feature-card p,
.step-card p,
.pain-card p,
.testimonial-card p,
.security-card p {
  margin-bottom: 0;
  color: #aeb7ca;
  line-height: 1.6;
}

.money {
  overflow: hidden;
}

.money-band {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.18), transparent 22rem),
    linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(21, 30, 56, 0.96) 52%, rgba(14, 165, 233, 0.38));
  box-shadow: var(--shadow);
}

.money-band h2 {
  max-width: 580px;
}

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

.number-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.number-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.number-card span {
  display: block;
  margin-top: 8px;
  color: #dbeafe;
  font-weight: 800;
}

.revenue-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(6, 11, 24, 0.44);
}

.line-chart {
  position: relative;
  height: 270px;
  margin-top: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 25%, 16.66% 100%;
}

.line-chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.line-chart path {
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  animation: draw 1800ms ease forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

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

.testimonial-card {
  padding: 24px;
}

.stars {
  margin-bottom: 18px;
  color: #facc15;
  font-size: 0.86rem;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.person-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--green));
  color: var(--white);
  font-weight: 900;
}

.person strong,
.person span {
  display: block;
}

.person strong {
  color: var(--white);
}

.person span {
  color: #9ca8bd;
  font-size: 0.84rem;
}

.multi-layout,
.security-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.map {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 48%, rgba(56, 189, 248, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  overflow: hidden;
}

.map::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
}

.map-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.9), rgba(124, 58, 237, 0.9), transparent);
  transform-origin: left;
}

.map-line.one {
  top: 42%;
  left: 22%;
  width: 58%;
  transform: rotate(-18deg);
}

.map-line.two {
  top: 53%;
  left: 18%;
  width: 62%;
  transform: rotate(19deg);
}

.map-line.three {
  top: 33%;
  left: 43%;
  width: 34%;
  transform: rotate(72deg);
}

.unit-card {
  position: absolute;
  width: 190px;
  padding: 14px;
  background: rgba(8, 13, 28, 0.88);
}

.unit-card strong {
  display: block;
  color: var(--white);
}

.unit-card span {
  color: #aeb7ca;
  font-size: 0.8rem;
}

.unit-card.u1 {
  top: 42px;
  left: 34px;
}

.unit-card.u2 {
  top: 196px;
  right: 40px;
}

.unit-card.u3 {
  bottom: 42px;
  left: 104px;
}

.unit-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

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

.security-card {
  padding: 22px;
}

.shield {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(34, 197, 94, 0.16), transparent 13rem),
    linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(255, 255, 255, 0.03));
}

.shield-mark {
  display: grid;
  width: 188px;
  height: 220px;
  place-items: center;
  clip-path: polygon(50% 0, 92% 18%, 82% 76%, 50% 100%, 18% 76%, 8% 18%);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.9), rgba(34, 197, 94, 0.7));
  color: var(--white);
  font-size: 4rem;
  font-weight: 950;
  box-shadow: 0 0 80px rgba(34, 197, 94, 0.22);
}

.shield-chip {
  position: absolute;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 12, 26, 0.86);
  color: #e8eefc;
  font-size: 0.82rem;
  font-weight: 850;
}

.shield-chip.c1 {
  top: 54px;
  left: 34px;
}

.shield-chip.c2 {
  top: 118px;
  right: 42px;
}

.shield-chip.c3 {
  bottom: 74px;
  left: 56px;
}

.final-cta {
  padding-top: 70px;
}

.cta-panel {
  overflow: hidden;
  padding: 68px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 14%, rgba(34, 197, 94, 0.22), transparent 18rem),
    radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.34), transparent 20rem),
    linear-gradient(135deg, #121a31, #080d1c);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-panel h2 {
  margin-right: auto;
  margin-left: auto;
  max-width: 820px;
}

.cta-panel .section-copy {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}

.cta-panel .cta-button {
  min-height: 68px;
  margin-top: 18px;
  padding-right: 42px;
  padding-left: 42px;
  font-size: 1.02rem;
}

.cta-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}

.footer {
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca8bd;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.88rem;
  font-weight: 700;
}

.company-id {
  margin: 8px 0 0;
  color: #778299;
  font-size: 0.84rem;
  font-weight: 700;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero,
  .pain-layout,
  .money-band,
  .multi-layout,
  .security-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .dashboard {
    margin: 10px auto 0;
    transform: none;
  }

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

  .float-card {
    right: 20px;
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  section {
    padding: 76px 0;
  }

  .hero {
    padding-top: 50px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.45rem);
  }

  .hero-bullets,
  .metric-row,
  .dashboard-body,
  .pain-grid,
  .before-after,
  .steps-grid,
  .features-grid,
  .numbers-grid,
  .testimonials-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .money-band,
  .cta-panel {
    padding: 30px 18px;
  }

  .float-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 14px;
  }

  .map {
    min-height: 560px;
  }

  .unit-card {
    width: calc(100% - 42px);
    left: 21px !important;
    right: auto !important;
  }

  .unit-card.u1 {
    top: 34px;
  }

  .unit-card.u2 {
    top: 204px;
  }

  .unit-card.u3 {
    bottom: 34px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
