:root {
  --bg: #000000;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.06);
  --primary: #008cff;
  --primary-2: #36a5ff;
  --shadow: 0 14px 60px rgba(0, 140, 255, 0.18);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: black;
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.8);
  color: var(--text);
  transform: translateY(-200%);
  transition: transform 120ms ease;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid var(--line);
}

.navbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}


.brand-text {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 24px;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(0, 140, 255, 0.65);
  outline-offset: 2px;
}

.menu-toggle-icon {
  width: 18px;
  height: 12px;
  display: block;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat;
  opacity: 0.9;
}

.menu {
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.82);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0 0 12px 0;
  list-style: none;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 500;
}

.menu-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: rgba(0, 140, 255, 0.25);
  color: #001220;
}

.btn-primary:hover {
  filter: brightness(1.05);
  color: #001220;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn-glow {
  box-shadow: 0 12px 46px rgba(0, 140, 255, 0.25);
}

/* Desktop nav */
@media (min-width: 992px) {
  .navbar-wrap {
    padding: 18px 12px;
  }

  .menu-toggle {
    display: none;
  }

  .menu {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    width: auto;
    margin-top: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu[hidden] {
    display: flex !important;
  }

  .menu-list {
    flex-direction: row;
    align-items: center;
    margin: 0;
    gap: 6px;
  }

  .menu-link {
    padding: 10px 12px;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 56px 0 56px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
}

/* soft animated orbs */
.hero::before {
  background:
    radial-gradient(220px 220px at 18% 28%, rgba(0, 140, 255, 0.20), transparent 60%),
    radial-gradient(280px 280px at 72% 18%, rgba(0, 140, 255, 0.16), transparent 62%),
    radial-gradient(320px 320px at 62% 78%, rgba(0, 140, 255, 0.12), transparent 64%);
  filter: blur(10px);
  opacity: 0.75;
  transform: translate3d(0, 0, 0);
  animation: heroFloatA 18s ease-in-out infinite;
}

.hero::after {
  background:
    radial-gradient(260px 260px at 22% 72%, rgba(54, 165, 255, 0.12), transparent 62%),
    radial-gradient(240px 240px at 88% 58%, rgba(0, 140, 255, 0.10), transparent 62%);
  filter: blur(14px);
  opacity: 0.55;
  transform: translate3d(0, 0, 0);
  animation: heroFloatB 24s ease-in-out infinite;
}

@keyframes heroFloatA {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  50% {
    transform: translate3d(1.2%, 1.4%, 0) scale(1.03);
  }
  100% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
}

@keyframes heroFloatB {
  0% {
    transform: translate3d(1.6%, -0.6%, 0) scale(1);
  }
  50% {
    transform: translate3d(-1.2%, 1.2%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(1.6%, -0.6%, 0) scale(1);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  margin: 0 0 10px 0;
  color: rgba(0, 140, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-title {
  margin: 0 0 14px 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
}

.hero-accent {
  display: block;
  margin-top: 10px;
  color: var(--primary);
}

.hero-subtitle {
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-phone {
  color: var(--text);
  border-bottom: 1px solid rgba(0, 140, 255, 0.55);
}

.hero-phone:hover {
  color: var(--primary);
  border-bottom-color: rgba(0, 140, 255, 0.9);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-visual {
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.01);
}

@media (min-width: 992px) {
  .hero {
    padding: 84px 0 84px;
  }

  .hero-img {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after {
    animation: none !important;
  }
}

/* Sections */
.section {
  padding: 56px 0;
  border-top: 0;
}

.section-head {
  margin-bottom: 18px;
}

.section-title {
  margin: 0 0 12px 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  font-size: clamp(1.6rem, 4.8vw, 2.25rem);
}

.section-lead p {
  margin: 0 0 8px 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-body {
  margin: 0 0 14px 0;
  color: var(--muted);
}

.cycle-item {
  will-change: transform, filter;
  transition:
    transform 650ms cubic-bezier(0.22, 0.8, 0.22, 1),
    filter 650ms ease,
    font-variation-settings 650ms ease,
    opacity 650ms ease,
    color 650ms ease;
  transform: translateZ(0) scale(1);
  opacity: 0.92;
  font-variation-settings: "wght" var(--wght-base, 600);
  line-height: 1.18;
  position: relative;
  z-index: 0;
}

.cycle-item.is-active {
  transform: translateZ(0) scale(var(--scale, 1.06));
  opacity: 1;
  font-variation-settings: "wght" var(--wght-active, 820);
  filter: drop-shadow(0 14px 38px rgba(0, 140, 255, 0.18));
}

/* Platform attention cycle tuning */
#platform .section-title.cycle-item {
  /* Make all lines start the SAME size/weight */
  font-size: clamp(1.25rem, 3.0vw, 1.85rem);
  font-weight: 600;
  --wght-base: 600;
  --wght-active: 900;
  transform-origin: left center;
}

#platform .section-lead p.cycle-item {
  font-size: clamp(1.25rem, 3.0vw, 1.85rem);
  font-weight: 600;
  --wght-base: 600;
  --wght-active: 900;
  transform-origin: left center;
}

/* Reduce vertical "jump" feeling by tightening spacing in the animated stack */
#platform .section-lead p {
  margin: 0 0 12px 0;
}

/* Active styling: primary color only (no checkmark / no background bar) */
#platform .cycle-item.is-active {
  color: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
  .cycle-item {
    transition: none;
    filter: none !important;
    transform: none !important;
    opacity: 1;
  }
}

.section-body-wide {
  max-width: 68ch;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 140, 255, 0.22);
  background: rgba(0, 140, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

@media (min-width: 992px) {
  .section {
    padding: 84px 0;
  }
}

/* Media blocks (image + content) */
.media-block {
  padding: 10px 0;
}

.media-eyebrow {
  margin: 0 0 8px 0;
  color: rgba(0, 140, 255, 0.9);
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.media-title {
  margin: 0 0 12px 0;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
}

.media-text {
  margin: 0 0 12px 0;
  color: var(--muted);
}

.media-visual {
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Light sections (white background) */
.section-light {
  --light-bg: #f7fbff;
  background: var(--light-bg);
  color: #0b0f14;
}

.section-light .section-lead p,
.section-light .section-body {
  color: rgba(11, 15, 20, 0.72);
}

.section-light .section-title {
  color: #0b0f14;
}

/* Smooth dark -> light transitions */
.section-light {
  position: relative;
}

.section-light::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 56px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--light-bg, #fff));
}

.section-light::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--light-bg, #fff), rgba(0, 0, 0, 0));
}

.section-light > .container {
  position: relative;
  z-index: 1;
}

/* Features (dark bento grid) */
.features-dark {
  position: relative;
  background: radial-gradient(
      900px 420px at 20% 10%,
      rgba(0, 140, 255, 0.18),
      transparent 55%
    ),
    radial-gradient(
      860px 480px at 90% 40%,
      rgba(0, 140, 255, 0.12),
      transparent 60%
    ),
    #000;
}

.features-dark .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.features-dark .section-body {
  color: rgba(255, 255, 255, 0.72);
}

.feature-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .feature-grid {
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .feature-grid {
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.feature-card {
  position: relative;
  padding: 18px 16px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 84px;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(220px 120px at 10% 0%, rgba(0, 140, 255, 0.35), transparent 60%);
  opacity: 0;
  transition: opacity 140ms ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 140, 255, 0.28);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(0, 140, 255, 0.28);
  background: rgba(0, 140, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.feature-title {
  position: relative;
  z-index: 1;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
  font-size: 1rem;
}

@media (min-width: 992px) {
  .feature-card-wide {
    grid-column: span 2;
  }
}

.feature-card-accent {
  border-color: rgba(0, 140, 255, 0.34);
  background: radial-gradient(
      260px 140px at 10% 10%,
      rgba(0, 140, 255, 0.28),
      transparent 65%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03));
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 140, 255, 0.22);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #001220;
  box-shadow: var(--shadow);
  font-weight: 650;
  letter-spacing: -0.01em;
  text-align: center;
}

.cta-pill:hover {
  filter: brightness(1.05);
  color: #001220;
}

.cta-pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.cta-pill strong {
  font-weight: 800;
}

/* Resources CTA alignment */
.section-cta {
  margin-top: 22px;
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .feature-card {
    padding: 18px 16px;
  }
}

/* Solutions grid */
.solution-card {
  height: 100%;
  padding: 18px 16px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 46px rgba(0, 0, 0, 0.06);
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.solution-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 140, 255, 0.22);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.08);
}

.solution-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(0, 140, 255, 0.22);
  background: rgba(0, 140, 255, 0.08);
  color: rgba(0, 140, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 12px;
}

.solution-title {
  margin: 0 0 8px 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(11, 15, 20, 0.92);
  font-size: 1.05rem;
  text-transform: none;
}

.solution-text {
  margin: 0;
  color: rgba(11, 15, 20, 0.72);
}

/* Solutions dark variant */
.solutions-dark {
  position: relative;
  background: radial-gradient(
      900px 420px at 25% 0%,
      rgba(0, 140, 255, 0.16),
      transparent 58%
    ),
    radial-gradient(
      860px 520px at 95% 70%,
      rgba(0, 140, 255, 0.10),
      transparent 62%
    ),
    transparent;
}

.solutions-dark .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.solutions-dark .section-body {
  color: rgba(255, 255, 255, 0.72);
}

.solutions-dark .solution-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
}

.solutions-dark .solution-card:hover {
  border-color: rgba(0, 140, 255, 0.26);
  box-shadow: 0 22px 86px rgba(0, 0, 0, 0.58);
}

.solutions-dark .solution-icon {
  border-color: rgba(0, 140, 255, 0.28);
  background: rgba(0, 140, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
}

.solutions-dark .solution-title {
  color: rgba(255, 255, 255, 0.92);
}

.solutions-dark .solution-text {
  color: rgba(255, 255, 255, 0.72);
}

/* FAQ */
.faq {
  max-width: 980px;
}

.faq-layout {
  display: grid;
  gap: 18px;
}

.faq-head {
  margin-bottom: 0;
}

.faq-item {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 46px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(11, 15, 20, 0.92);
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  border: 1px solid rgba(0, 140, 255, 0.22);
  background: rgba(0, 140, 255, 0.08);
  color: rgba(0, 140, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.faq-item[open] .faq-q::after {
  content: "–";
}

.faq-a {
  padding: 0 16px 16px 16px;
  color: rgba(11, 15, 20, 0.72);
}

/* FAQ dark variant */
.faq-dark {
  position: relative;
  background: radial-gradient(
      900px 460px at 20% 0%,
      rgba(0, 140, 255, 0.16),
      transparent 60%
    ),
    radial-gradient(
      860px 520px at 90% 60%,
      rgba(0, 140, 255, 0.10),
      transparent 62%
    ),
    transparent;
}

.faq-dark .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.faq-dark .faq {
  max-width: 980px;
}

.faq-dark .faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
}

.faq-dark .faq-q {
  color: rgba(255, 255, 255, 0.92);
}

.faq-dark .faq-q::after {
  border-color: rgba(0, 140, 255, 0.28);
  background: rgba(0, 140, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.faq-dark .faq-a {
  color: rgba(255, 255, 255, 0.72);
}

.faq-dark .faq-item[open] .faq-q {
  background: rgba(0, 140, 255, 0.06);
}

.faq-dark .faq-item:has(summary:focus-visible) {
  outline: 2px solid rgba(0, 140, 255, 0.55);
  outline-offset: 3px;
}

@media (min-width: 992px) {
  .faq-layout {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
    gap: 24px;
  }

  .faq-head {
    position: sticky;
    top: 92px;
    align-self: start;
  }
}

/* Disclaimer + footer */
.disclaimer {
  padding: 70px 0 22px;
  background: transparent;
  border-top: 1px solid var(--line);
  color: var(--text);
}

.disclaimer-card {
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.disclaimer-text {
  margin: 0 0 10px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.disclaimer-text:last-child {
  margin-bottom: 0;
}

.disclaimer-text strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.site-footer {
  padding: 18px 0 26px;
  background: transparent;

}

.footer-brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.footer-meta {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.footer-heading {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
}

.footer-links {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-links-cols {
  grid-template-columns: 1fr 1fr;
  column-gap: 18px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
}

.footer-link:hover {
  color: rgba(0, 140, 255, 0.95);
}

section#why-netorderpro

 {
    background: radial-gradient(900px 240px at 50% 0%, rgba(0, 140, 255, 0.18), transparent 60%), rgba(0, 0, 0, 0.65);
}
section#platform {
  background: radial-gradient(900px 240px at 50% 0%, rgba(0, 140, 255, 0.18), transparent 60%), rgba(0, 0, 0, 0.65);
}

@media (min-width: 992px) {
  .site-footer {
    padding: 28px 0 70px;
  }
}

/* CTA section */
.cta-section {
  position: relative;
  padding: 54px 0;
  background: radial-gradient(
      900px 240px at 50% 0%,
      rgba(0, 140, 255, 0.18),
      transparent 60%
    ),
    rgba(0, 0, 0, 0.65);
  border-top: 0;
}

.cta-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 64px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.65));
  z-index: 0;
}

.cta-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.cta-title {
  margin: 0 0 10px 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  font-size: clamp(1.25rem, 3.8vw, 1.8rem);
}

.cta-accent {
  color: var(--primary);
}

.cta-text {
  margin: 0 auto 18px auto;
  max-width: 78ch;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  justify-content: center;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.32);
  padding: 10px 22px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--text);
}

/* Demo form (inside CTA section) */
.demo-form {
  margin-top: 18px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.demo-label {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.demo-input {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 14px;
}

.demo-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.demo-input:focus {
  border-color: rgba(0, 140, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 140, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.92);
}

.demo-consent {
  margin-top: 12px;
}

.demo-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
}

.demo-check-input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--primary);
}

.demo-check-text {
  color: rgba(255, 255, 255, 0.78);
}

.demo-privacy {
  margin: 10px 0 0 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.demo-success {
  margin-top: 14px;
}

.demo-success-card {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 140, 255, 0.28);
  background: rgba(0, 140, 255, 0.10);
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 992px) {
  .cta-section {
    padding: 66px 0;
  }
}

/* Why NetOrderPro (steps) */
.step-card {
  height: 100%;
  padding: 18px 16px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.45);
}

.step-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 140, 255, 0.12);
  border: 1px solid rgba(0, 140, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.step-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.15;
}

.step-text {
  margin: 0;
  color: var(--muted);
}

/* Providers (photo + content) */
.provider-block {
  padding: 10px 0;
}

.provider-photo {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.provider-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}


