:root {
  --bg: #f5f7fb;
  --panel: #ffffff;
  --text: #1d2433;
  --muted: #5d6b82;
  --blue: #41a7d8;
  --blue-deep: #1f7db7;
  --dark: #101828;
  --border: rgba(16, 24, 40, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(2000px, calc(100% - 22px));
  z-index: 100;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

.site-header.scrolled {
  background: rgba(245, 244, 244, 0.7);
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.navbar {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 14px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 180px;
}

.logo-image {
  width: 180px;
  height: auto;
}

.nav-links,
.nav-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.nav-links a,
.link-btn,
.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-header.scrolled .nav-links a,
.site-header.scrolled .link-btn,
.site-header.scrolled .footer-links a {
  color: rgba(17, 24, 39, 0.88);
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.nav-actions {
  gap: 18px;
}

.link-btn {
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.95;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  height: 50px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  box-shadow: none;
  border-radius: 999px;
  min-width: 120px;
}

.btn.primary.small {
  height: 42px;
  padding: 0 20px;
}

.scroll-stack {
  position: relative;
  height: 100vh; /* base value; js/script.js extends this on load */

  background: #0d1320;
}

.scroll-stack > .hero.video,
.scroll-stack > .features,
.scroll-stack > .final-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.scroll-stack > .hero.video,
.scroll-stack > .final-image {
  height: 100vh;
}

.scroll-stack > .hero.video {
  z-index: 1;
}

.scroll-stack > .final-image {
  z-index: 4;
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
}

.scroll-stack > .features {
  z-index: 3;
  height: auto;
  min-height: 100vh;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  transform: translateY(100%);
  will-change: transform;
}

@media (max-width: 980px) {
  .scroll-stack > .hero.video,
  .scroll-stack > .final-image {
    height: 100svh;
  }

  .scroll-stack > .features {
    min-height: 100svh;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
  padding: 110px 0 0;
  overflow: hidden;
  background: #0d1320;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* overwritten in px by js/script.js once it knows the viewport size */
  object-fit: cover;
  filter: brightness(0.45) contrast(1.08);
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(8, 11, 18, 0.32),
    rgba(12, 17, 26, 0.08)
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  display: block;
  padding: 0;
}
.hero-content {
  width: 100%;
  max-width: none;
  margin-bottom: 28px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.eyebrow.dark {
  background: rgba(65, 167, 216, 0.1);
  color: var(--blue-deep);
}

.hero h1 {
  font-size: clamp(40px, 3.6vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.08em;
  color: #fff;
  margin-bottom: 22px;
}

.hero-copy {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.features > .container {
  opacity: 0;
  will-change: transform, opacity;
}

/* Rounded white panel for the floating card. */
.features {
  background: var(--panel);
  border-radius: 40px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  margin-top: -120px; /* overlap hero */
  position: relative;
  z-index: 30;
}

.features .card-section {
  padding: 80px 0;
}

.features .card-section + .card-section {
  border-top: 1px solid var(--border);
}

@media (max-width: 980px) {
  .features {
    margin-top: 0;
    border-radius: 18px;
    box-shadow: none;
  }

  .features .card-section {
    padding: 48px 0;
  }
}

.kiosk-cover {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  aspect-ratio: 355 / 826;
  max-height: 720px;
  padding-top: 48px;
  background: linear-gradient(135deg, #eef5fb 0%, #f8fafc 45%, #eaf3fb 100%);
}

.kiosk-cover.reveal-pending {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1s cubic-bezier(0.16, 0.8, 0.24, 1),
    transform 1.1s cubic-bezier(0.16, 0.8, 0.24, 1);
}

.kiosk-cover.reveal-pending.in-view {
  opacity: 1;
  transform: scale(1);
}

.kiosk-cover picture {
  position: absolute;
  inset: 0;
  display: block;
}

.kiosk-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.kiosk-cover-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 18%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    var(--panel) 100%
  );
  pointer-events: none;
}

@media (min-width: 769px) {
  .kiosk-cover {
    aspect-ratio: 1903 / 826;
    max-height: 640px;
  }
}

.kiosk-cover-content {
  display: none;
}

@media (min-width: 769px) {
  .kiosk-cover-content {
    display: block;
    position: absolute;
    z-index: 2;
    top: 55%;
    left: 5.5%;
    transform: translateY(-50%);
    width: min(38%, 520px);
  }

  .kiosk-cover-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(18px, 3.2vw, 34px);
  }

  .kiosk-cover-brand-logo {
    height: clamp(24px, 2.4vw, 34px);
    width: auto;
    display: block;
  }

  .kiosk-cover-brand-tagline {
    font-size: clamp(10px, 0.85vw, 13px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
  }

  .kiosk-cover-heading {
    font-size: clamp(26px, 2.8vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: clamp(14px, 1.8vw, 22px);
  }

  .kiosk-cover-heading .accent {
    color: var(--blue-deep);
  }

  .kiosk-cover-text {
    font-size: clamp(13px, 1.05vw, 17px);
    line-height: 1.55;
    color: var(--muted);
    margin-bottom: clamp(18px, 2.6vw, 30px);
  }

  .kiosk-cover-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(10px, 1.2vw, 16px);
  }

  .kiosk-cover-btn-primary,
  .kiosk-cover-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: clamp(36px, 3.2vw, 50px);
    padding: 0 clamp(16px, 1.8vw, 26px);
    border-radius: 999px;
    font-size: clamp(12px, 1vw, 15px);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .kiosk-cover-btn-primary:hover,
  .kiosk-cover-btn-ghost:hover {
    transform: translateY(-2px);
  }

  .kiosk-cover-btn-primary {
    background: var(--blue-deep);
    color: #fff;
    box-shadow: 0 10px 24px rgba(31, 125, 183, 0.28);
  }

  .kiosk-cover-btn-primary svg {
    width: 1em;
    height: 1em;
    font-size: clamp(12px, 1vw, 16px);
  }

  .kiosk-cover-btn-ghost {
    background: rgba(255, 255, 255, 0.6);
    color: var(--dark);
    border: 1px solid rgba(16, 24, 40, 0.14);
  }

  .kiosk-cover-btn-ghost svg {
    width: 1em;
    height: 1em;
    font-size: clamp(12px, 1vw, 16px);
    color: var(--blue-deep);
  }
}

@media (min-width: 769px) and (max-width: 1080px) {
  .kiosk-cover-text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kiosk-cover {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.kiosk-showcase {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  min-height: clamp(420px, 52vw, 640px);
  display: flex;
  align-items: center;
}

.kiosk-showcase.reveal-pending {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1s cubic-bezier(0.16, 0.8, 0.24, 1),
    transform 1.1s cubic-bezier(0.16, 0.8, 0.24, 1);
}

.kiosk-showcase.reveal-pending.in-view {
  opacity: 1;
  transform: scale(1);
}

.kiosk-showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1);
  transform-origin: 62% 40%;
  animation: kiosk-showcase-drift 16s ease-in-out infinite alternate;
  animation-play-state: paused;
}

.kiosk-showcase.in-view .kiosk-showcase-img {
  animation-play-state: running;
}

@keyframes kiosk-showcase-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.kiosk-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8, 11, 18, 0.72) 0%,
    rgba(8, 11, 18, 0.45) 42%,
    rgba(8, 11, 18, 0.12) 68%
  );
}

.kiosk-showcase-content {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding-top: 110px;
}

.kiosk-showcase-content .eyebrow {
  margin-bottom: 18px;
}

.kiosk-showcase-heading {
  max-width: 620px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
}

.kiosk-showcase-text {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 30px;
}

.kiosk-showcase-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.kiosk-showcase-btn svg {
  width: 1em;
  height: 1em;
  margin-left: 8px;
}

.kiosk-showcase-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  min-width: 120px;
}

.kiosk-showcase-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.kiosk-showcase-btn-secondary svg {
  width: 1.1em;
  height: 1.1em;
  margin-right: 8px;
}

@media (max-width: 480px) {
  .kiosk-showcase-actions {
    flex-direction: column;
    width: 100%;
  }

  .kiosk-showcase-btn,
  .kiosk-showcase-btn-secondary {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .kiosk-showcase {
    min-height: 520px;
  }

  .kiosk-showcase-img {
    object-position: 65% center;
  }

  .kiosk-showcase-text {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kiosk-showcase {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .kiosk-showcase-img {
    animation: none;
  }
}

.bornes-showcase-intro {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.bornes-showcase-intro h2 {
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.bornes-showcase-intro h2 .accent {
  color: var(--blue);
}

.bornes-showcase-desc {
  color: var(--muted);
  font-size: 18px;
  margin-top: 25px;
}

.bornes-showcase-arrows {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.bornes-showcase-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.bornes-showcase-arrow svg {
  width: 18px;
  height: 18px;
}

.bornes-showcase-arrow:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

.bornes-showcase-card {
  position: relative;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #eef2f8 0%, #e4ecf6 100%);
  overflow: hidden;
}

.bornes-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.bornes-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bornes-slide-body {
  flex: 0 1 380px;
  min-width: 0;
}

.bornes-slide-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--blue) 14%, white);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.bornes-slide-body h3 {
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 10px;
}

.bornes-slide-body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 18px;
}

.bornes-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--blue-deep);
  text-decoration: none;
}

.bornes-slide-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bornes-slide-link:hover svg {
  transform: translateX(4px);
}

.bornes-slide-media {
  flex: 0 1 420px;
  min-width: 0;
  height: clamp(220px, 28vw, 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 24px 48px -20px rgba(15, 23, 42, 0.35);
}

.bornes-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bornes-showcase-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.bornes-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(16, 24, 40, 0.16);
  padding: 0;
  cursor: pointer;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.bornes-dot.is-active {
  width: 28px;
  background: var(--blue);
}

.bornes-showcase-section.reveal-pending {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bornes-showcase-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 780px) {
  .bornes-showcase-intro {
    flex-direction: column;
    align-items: center;
  }

  .bornes-showcase-arrows {
    position: static;
    margin-top: 16px;
  }

  .bornes-slide {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
  }

  .bornes-slide-body {
    max-width: none;
  }

  .bornes-slide-media {
    width: 100%;
    height: clamp(180px, 46vw, 240px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bornes-showcase-section.reveal-pending {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .bornes-slide {
    transition: none;
  }
}

.trust-bar {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: linear-gradient(180deg, #eef5fb 0%, #f8fafc 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar-track {
  position: relative;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 22px 0;
}

.trust-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

.trust-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(65, 167, 216, 0.12);
  color: var(--blue-deep);
  flex-shrink: 0;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.trust-icon svg {
  width: 17px;
  height: 17px;
}

.trust-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.trust-item:hover .trust-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 10px 22px rgba(31, 125, 183, 0.32);
  transform: translateY(-3px) rotate(-8deg) scale(1.08);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-item:hover .trust-label {
  color: var(--dark);
}

.trust-bar-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 40%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  pointer-events: none;
}

.trust-bar.in-view .trust-bar-shine {
  transform: translateX(120%);
  transition: transform 1.1s ease 0.2s;
}

.trust-bar.reveal-pending .trust-icon {
  opacity: 0;
  transform: scale(0.4) rotate(-16deg);
  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: calc(var(--i, 0) * 110ms);
}

.trust-bar.in-view .trust-item .trust-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.trust-bar.reveal-pending .trust-label {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transition-delay: calc(var(--i, 0) * 110ms + 140ms);
}

.trust-bar.in-view .trust-item .trust-label {
  opacity: 1;
  transform: translateY(0);
}

.trust-bar.reveal-pending .trust-divider {
  opacity: 0;
  transform: scaleY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transition-delay: calc(var(--i, 0) * 110ms + 80ms);
}

.trust-bar.in-view .trust-divider {
  opacity: 1;
  transform: scaleY(1);
}

@media (prefers-reduced-motion: reduce) {
  .trust-bar.reveal-pending .trust-icon,
  .trust-bar.reveal-pending .trust-label,
  .trust-bar.reveal-pending .trust-divider {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .trust-bar-shine {
    display: none;
  }

  .trust-item:hover .trust-icon {
    transform: none;
  }
}

@media (max-width: 1180px) {
  .trust-bar-track {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 18px 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .trust-bar-track::-webkit-scrollbar {
    display: none;
  }

  .trust-item {
    padding: 8px 18px;
  }
}

@media (max-width: 520px) {
  .trust-icon {
    width: 32px;
    height: 32px;
  }

  .trust-icon svg {
    width: 15px;
    height: 15px;
  }

  .trust-label {
    font-size: 12.5px;
  }
}

.section-intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-intro h2 {
  font-size: clamp(36px, 3vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.06em;
  color: var(--dark);
}

.section-intro h2 .accent {
  color: var(--blue);
}

.section-intro.center {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro.center p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 10px;
}

.partners-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.partner-marquee {
  --partner-gap: 28px;
  position: relative;
  display: flex;
  gap: var(--partner-gap);
  margin-top: 28px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 64px,
    #000 calc(100% - 64px),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 64px,
    #000 calc(100% - 64px),
    transparent 100%
  );
}

.partner-track {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: var(--partner-gap);
  width: max-content;
  animation: partner-scroll 32s linear infinite;
}

.partner-marquee:hover .partner-track,
.partner-marquee:focus-within .partner-track {
  animation-play-state: paused;
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--partner-gap)));
  }
}

.partner-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 96px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.partner-item:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: rgba(65, 167, 216, 0.45);
  box-shadow:
    0 18px 34px rgba(16, 24, 40, 0.12),
    0 0 0 4px rgba(65, 167, 216, 0.1);
}

.partner-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.partner-item:hover .partner-logo {
  transform: scale(1.06);
}

@media (max-width: 640px) {
  .partner-marquee {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 32px,
      #000 calc(100% - 32px),
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 32px,
      #000 calc(100% - 32px),
      transparent 100%
    );
  }

  .partner-item {
    width: 128px;
    height: 76px;
    border-radius: 14px;
  }

  .partner-logo {
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .partner-track[aria-hidden="true"] {
    display: none;
  }

  .partner-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.feature-card.accent {
  background: linear-gradient(
    180deg,
    rgba(65, 167, 216, 0.08),
    rgba(255, 255, 255, 0.8)
  );
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 25px;
  background: rgba(65, 167, 216, 0.1);
  color: var(--blue-deep);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.about-copy {
  max-width: 460px;
}

.about-copy h2 {
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--dark);
  margin: 16px 0 18px;
}

.about-copy h2 .accent {
  color: var(--blue);
}

.about-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-pills {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.about-pill {
  background: rgba(65, 167, 216, 0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.about-pill:hover {
  transform: translateY(-3px);
  background: rgba(65, 167, 216, 0.16);
  border-color: rgba(65, 167, 216, 0.4);
  box-shadow: 0 10px 20px rgba(65, 167, 216, 0.15);
}

.about-pill-plus {
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 16px;
}

.about-diagram {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.about-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.connector {
  fill: none;
  stroke: rgba(65, 167, 216, 0.4);
  stroke-width: 2;
  stroke-dasharray: 6 6;
  stroke-linecap: round;
  animation: dash-flow 1.1s linear infinite;
  transition:
    stroke 0.3s ease,
    stroke-width 0.3s ease;
}

.connector-active {
  stroke: var(--blue-deep);
  stroke-width: 2.5;
}

@keyframes dash-flow {
  to {
    stroke-dashoffset: -24;
  }
}

.about-cards {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 40px;
}

.about-card:nth-child(2),
.about-card:nth-child(4) {
  margin-top: 30px;
}

.about-card {
  position: relative;
  z-index: 2;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(16, 24, 40, 0.1);
  border-color: rgba(65, 167, 216, 0.3);
}

.about-card-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(65, 167, 216, 0.1);
  color: var(--blue-deep);
  margin-bottom: 14px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-card-icon svg {
  width: 22px;
  height: 22px;
}

.about-card:hover .about-card-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}

.about-card h3 {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 6px;
}

.about-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.about-hub {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  justify-self: center;
  align-self: center;
  position: relative;
  z-index: 3;
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hub-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(65, 167, 216, 0.4);
  animation: hub-pulse 3s ease-out infinite;
}

.about-hub-ring-2 {
  animation-delay: 1.5s;
}

@keyframes hub-pulse {
  0% {
    transform: scale(0.82);
    opacity: 0.8;
  }
  70% {
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.about-hub-badge {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid rgba(65, 167, 216, 0.35);
  box-shadow: 0 16px 32px rgba(31, 125, 183, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  padding: 8px;
}

.about-hub-badge strong {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--blue-deep);
  font-weight: 800;
}

.about-hub-badge em {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

.about-section.reveal-pending .about-card,
.about-section.reveal-pending .about-hub {
  opacity: 0;
}

.about-section.in-view .about-card {
  animation: about-card-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i, 0) * 90ms);
}

.about-section.in-view .about-hub {
  animation: about-hub-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 380ms;
}

.about-section.in-view .about-card.animated,
.about-section.in-view .about-hub.animated {
  animation: none;
  opacity: 1;
}

@keyframes about-card-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes about-hub-in {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.about-section.reveal-pending .about-copy {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-section.in-view .about-copy {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .connector {
    animation: none;
  }

  .about-hub-ring {
    animation: none;
  }
}

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

  .about-copy {
    max-width: none;
  }

  .about-diagram {
    min-height: 0;
  }

  .about-connectors,
  .about-hub {
    display: none;
  }

  .about-card:nth-child(2),
  .about-card:nth-child(4) {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .about-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.solutions-section {
  --stagger-step: 90ms;
}

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

.solution-card {
  position: relative;
  border-radius: 26px;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0;
  filter: blur(20px);
  transform: scale(0.96);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  z-index: 0;
}

.solution-card:hover::before,
.solution-card:focus-within::before {
  opacity: 0.5;
  transform: scale(1.02);
}

.solution-link {
  position: relative;
  z-index: 1;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: inherit;
  background: var(--panel);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transform: perspective(1200px);
  transform-style: preserve-3d;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  will-change: transform;
}

.solution-card:hover .solution-link,
.solution-card:focus-within .solution-link {
  box-shadow:
    0 30px 60px -14px rgba(15, 23, 42, 0.28),
    0 0 0 1px var(--accent-soft, transparent);
  border-color: transparent;
}

.solution-media {
  position: relative;
  display: block;
  aspect-ratio: 764 / 508;
  overflow: hidden;
}

.solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-card:hover .solution-media img,
.solution-card:focus-within .solution-media img {
  transform: scale(1.08);
}

.solution-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(255, 255, 255, 0.32) 50%,
    transparent 58%
  );
  transform: translateX(-130%);
  pointer-events: none;
}

.solution-card:hover .solution-shine,
.solution-card:focus-within .solution-shine {
  transform: translateX(130%);
  transition: transform 0.9s ease;
}

.solution-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px;
  background: var(--panel);
}

.solution-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.solution-tag-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: color-mix(in srgb, var(--accent) 14%, white);
  color: var(--accent);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.4s ease,
    color 0.4s ease;
}

.solution-tag-icon svg {
  width: 18px;
  height: 18px;
}

.solution-card:hover .solution-tag-icon,
.solution-card:focus-within .solution-tag-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.solution-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.solution-cta-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.solution-card:hover .solution-cta-arrow,
.solution-card:focus-within .solution-cta-arrow {
  transform: translateX(5px);
}

.solutions-grid.reveal-pending .solution-card {
  opacity: 0;
  transform: translateY(28px);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease;
  transition-delay: calc(var(--i, 0) * var(--stagger-step));
}

.solutions-grid.in-view .solution-card {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .solutions-grid.reveal-pending .solution-card {
    transform: none;
    opacity: 1;
    transition: none;
  }

  .solution-media img,
  .solution-shine,
  .solution-link {
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .solution-footer {
    padding: 16px 18px;
  }

  .solution-tag {
    font-size: 14px;
    gap: 10px;
  }

  .solution-cta span {
    display: none;
  }
}

.payments-section {
  position: relative;
  overflow: hidden;
}

.payments-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.payments-glow-1 {
  top: -120px;
  left: -140px;
  background: rgba(65, 167, 216, 0.16);
}

.payments-glow-2 {
  bottom: -160px;
  left: 12%;
  background: rgba(31, 125, 183, 0.1);
}

.payments-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.payments-copy {
  max-width: 460px;
}

.payments-copy h2 {
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin: 16px 0 18px;
}

.accent-script {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 1.25em;
  color: var(--blue-deep);
}

.payments-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.payments-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.payments-highlight-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(65, 167, 216, 0.12);
  color: var(--blue-deep);
}

.payments-highlight-icon svg {
  width: 21px;
  height: 21px;
}

.payments-highlight h3 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 6px;
}

.payments-highlight p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

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

.payment-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 26px 14px;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.02);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.payment-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(16, 24, 40, 0.1);
  border-color: rgba(65, 167, 216, 0.3);
}

.payment-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(65, 167, 216, 0.1);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.payment-icon svg {
  width: 22px;
  height: 22px;
}

.payment-tile:hover .payment-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}

.payment-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.payment-tile.featured {
  border-color: rgba(65, 167, 216, 0.4);
  background: linear-gradient(180deg, rgba(65, 167, 216, 0.08), var(--panel));
}

.payment-tile.featured .payment-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  animation: payment-pulse 2.6s ease-in-out infinite;
}

.payment-tile.featured:hover .payment-icon {
  transform: scale(1.08);
}

.payment-tile.featured .payment-label {
  color: var(--blue-deep);
  font-weight: 700;
}

@keyframes payment-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(65, 167, 216, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(65, 167, 216, 0);
  }
}

.payments-section.reveal-pending .payment-tile {
  opacity: 0;
}

.payments-section.in-view .payment-tile {
  animation: payment-tile-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i, 0) * 70ms);
}

.payments-section.in-view .payment-tile.animated {
  animation: none;
  opacity: 1;
}

@keyframes payment-tile-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.payments-section.reveal-pending .payments-copy {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.payments-section.in-view .payments-copy {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .payment-tile.featured .payment-icon {
    animation: none;
  }
}

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

  .payments-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .payments-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payments-highlight {
    flex-direction: column;
  }
}

.software-section {
  position: relative;
  overflow: hidden;
}

.software-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.software-visual {
  position: relative;
}

.software-window {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.software-window-badge {
  position: absolute;
  top: 7px;
  right: 70px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px 9px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.14);
  animation: badge-float 3.2s ease-in-out infinite;
}

.software-window-badge svg {
  width: 15px;
  height: 15px;
  color: #16a34a;
}

@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.software-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(245, 247, 251, 0.7);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
}

.window-dots span:first-child {
  background: var(--blue);
}

.window-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.window-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
}

.window-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  animation: live-pulse 1.8s ease-out infinite;
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

.software-window-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg);
}

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

.stat-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.08);
}

.stat-box-label {
  font-size: 12px;
  color: var(--muted);
}

.stat-box-value {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 4px 0 2px;
}

.stat-box-delta {
  font-size: 12px;
  font-weight: 700;
}

.stat-box-delta.up {
  color: #16a34a;
}

.chart-card,
.status-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.mini-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.mini-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.mini-card-note {
  font-size: 12px;
  color: var(--muted);
}

.mini-card-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-deep);
  text-decoration: none;
}

.mini-card-link:hover {
  text-decoration: underline;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 110px;
}

.chart-bar {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--blue), var(--blue-deep));
  opacity: 0.5;
  transition: opacity 0.25s ease;
}

.chart-bar.peak {
  opacity: 1;
}

.chart-bars:hover .chart-bar {
  opacity: 0.75;
}

.chart-bars:hover .chart-bar:hover,
.chart-bars .chart-bar.peak:hover {
  opacity: 1;
}

.status-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 13px;
  color: var(--text);
}

.status-row + .status-row {
  border-top: 1px solid var(--border);
}

.status-left {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.online {
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  animation: live-pulse 2.2s ease-out infinite;
}

.status-dot.maintenance {
  background: #d97706;
}

.status-value {
  font-size: 12px;
  font-weight: 700;
}

.status-value.online {
  color: #16a34a;
}

.status-value.maintenance {
  color: #d97706;
}

.software-copy h2 {
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin: 16px 0 18px;
}

.software-copy h2 .accent {
  color: var(--blue-deep);
}

.software-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.software-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.software-feature {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.software-feature-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(65, 167, 216, 0.1);
  color: var(--blue-deep);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.software-feature-icon svg {
  width: 18px;
  height: 18px;
}

.software-feature:hover .software-feature-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
}

.software-feature strong {
  display: block;
  font-size: 14.5px;
  color: var(--dark);
  margin-bottom: 2px;
}

.software-feature small {
  font-size: 12.5px;
  color: var(--muted);
}

.software-section.reveal-pending .software-visual {
  opacity: 0;
  transform: translateX(-28px);
}

.software-section.reveal-pending .software-copy {
  opacity: 0;
  transform: translateX(28px);
}

.software-section.reveal-pending .software-visual,
.software-section.reveal-pending .software-copy {
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.software-section.in-view .software-visual,
.software-section.in-view .software-copy {
  opacity: 1;
  transform: none;
}

.software-section.reveal-pending .chart-bar {
  transform: scaleY(0);
  transform-origin: bottom;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.25s ease;
  transition-delay: calc(var(--i, 0) * 45ms);
}

.software-section.in-view .chart-bar {
  transform: scaleY(1);
}

.software-section.reveal-pending .software-feature {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 70ms);
}

.software-section.in-view .software-feature {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .software-window-badge,
  .window-live-dot,
  .status-dot.online {
    animation: none;
  }
}

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

  .software-window-badge {
    top: 7px;
    right: 70px;
    font-size: 12px;
    padding: 7px 14px 7px 10px;
  }

  .software-text {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .stat-row .stat-box:last-child {
    grid-column: 1 / -1;
  }

  .software-features {
    grid-template-columns: 1fr;
  }
}

.specs-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.specs-copy {
  max-width: 420px;
}

.specs-copy h2 {
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--dark);
  margin-top: 16px;
}

.specs-copy h2 .accent {
  color: var(--blue);
}

.specs-panel {
  border-top: 1px solid var(--border);
}

.specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-bottom: 1px solid var(--border);
}

.specs-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 4px;
}

.specs-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(65, 167, 216, 0.1);
  color: var(--blue-deep);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.specs-icon svg {
  width: 22px;
  height: 22px;
}

.specs-item:hover .specs-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
}

.specs-text small {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 5px;
}

.specs-text strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
}

.specs-section.reveal-pending .specs-copy {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.specs-section.reveal-pending .specs-panel {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.specs-section.in-view .specs-copy,
.specs-section.in-view .specs-panel {
  opacity: 1;
  transform: none;
}

.specs-section.reveal-pending .specs-item {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}

.specs-section.in-view .specs-item {
  opacity: 1;
  transform: none;
}

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

  .specs-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .specs-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .specs-item {
    padding: 22px 4px;
  }
}

.sectors-section {
  --stagger-step: 70ms;
}

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

.sector-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 18px;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.02);
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.sector-grid.reveal-pending .sector-card {
  transform: translateY(22px);
  opacity: 0;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  transition-delay: calc(var(--i, 0) * var(--stagger-step));
}

.sector-grid.in-view .sector-card {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .sector-grid.reveal-pending .sector-card {
    transform: none;
    opacity: 1;
    transition:
      box-shadow 0.3s ease,
      border-color 0.3s ease;
    transition-delay: 0s;
  }
}

.sector-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    160px 160px at var(--mx, 50%) var(--my, 0%),
    rgba(65, 167, 216, 0.16),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.sector-card:hover::before {
  opacity: 1;
}

.sector-card:hover {
  border-color: rgba(65, 167, 216, 0.35);
  box-shadow: 0 22px 40px rgba(16, 24, 40, 0.1);
}

.sector-icon {
  position: relative;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(65, 167, 216, 0.1);
  color: var(--blue-deep);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sector-icon svg {
  width: 26px;
  height: 26px;
}

.sector-card:hover .sector-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
}

.sector-label {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.25s ease;
}

.sector-card:hover .sector-label {
  color: var(--blue-deep);
}

@media (max-width: 900px) {
  .sector-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .sector-card {
    padding: 24px 14px;
  }
}

.why-section {
  position: relative;
  overflow: hidden;
}

.why-section .bornes-showcase-intro {
  position: relative;
  z-index: 1;
}

.why-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.07);
}

.why-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 36%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-20deg);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}

.why-section.in-view .why-panel::before {
  animation: why-sheen 1.3s ease 0.6s 1;
}

@keyframes why-sheen {
  0% {
    opacity: 0;
    left: -60%;
  }
  15% {
    opacity: 0.8;
  }
  60% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    left: 130%;
  }
}

.why-cell {
  position: relative;
  padding: 42px 38px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.why-cell:nth-child(3n) {
  border-right: none;
}

.why-cell:nth-child(n + 4) {
  border-bottom: none;
}

.why-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(65, 167, 216, 0.07),
    rgba(65, 167, 216, 0)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.why-cell:hover::before {
  opacity: 1;
}

.why-cell::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--blue-deep));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-cell:hover::after {
  transform: scaleY(1);
  transform-origin: top;
}

.why-number {
  position: relative;
  z-index: 1;
  font-size: clamp(38px, 3.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(65, 167, 216, 0.32);
  margin-bottom: 18px;
  transition: color 0.35s ease;
}

.why-cell:hover .why-number {
  color: var(--blue);
}

.why-cell h3 {
  position: relative;
  z-index: 1;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.why-cell:hover h3 {
  transform: translateX(4px);
}

.why-cell p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 320px;
}

.why-section.reveal-pending .why-panel {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
}

.why-section.reveal-pending .why-panel {
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-section.in-view .why-panel {
  opacity: 1;
  transform: none;
}

.why-section.reveal-pending .why-cell {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}

.why-section.reveal-pending .why-cell {
  transition:
    opacity 0.55s ease calc(var(--i, 0) * 110ms + 200ms),
    clip-path 0.75s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--i, 0) * 110ms + 200ms);
}

.why-section.in-view .why-cell {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .why-panel::before {
    animation: none;
  }
}

@media (max-width: 900px) {
  .why-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-cell {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .why-cell:nth-child(3n) {
    border-right: 1px solid var(--border);
  }

  .why-cell:nth-child(n + 4) {
    border-bottom: 1px solid var(--border);
  }

  .why-cell:nth-child(2n) {
    border-right: none;
  }

  .why-cell:nth-child(n + 5) {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .why-panel {
    grid-template-columns: 1fr;
  }

  .why-cell {
    padding: 32px 26px;
    border-right: none !important;
  }

  .why-cell:nth-child(n + 5) {
    border-bottom: 1px solid var(--border);
  }

  .why-cell:last-child {
    border-bottom: none;
  }
}

.process-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-top: 4px;
}

.process-line {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-line-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-deep));
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.process-section.in-view .process-line-fill {
  width: 100%;
}

.process-step {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 6px;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
}

.process-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: var(--panel);
  border: 2px solid var(--border);
  color: var(--blue-deep);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.process-step:hover .process-circle {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(65, 167, 216, 0.35);
}

.process-step h3 {
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 8px;
}

.process-step:hover h3 {
  color: var(--blue-deep);
}

.process-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 200px;
}

.process-section.reveal-pending .process-circle {
  opacity: 0;
  transform: scale(0.3);
}

.process-section.reveal-pending .process-circle {
  transition:
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1)
      calc(var(--i, 0) * 130ms + 150ms),
    opacity 0.5s ease calc(var(--i, 0) * 130ms + 150ms),
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.process-section.in-view .process-circle {
  opacity: 1;
  transform: scale(1);
}

.process-section.reveal-pending .process-step h3,
.process-section.reveal-pending .process-step p {
  opacity: 0;
  transform: translateY(12px);
}

.process-section.reveal-pending .process-step h3 {
  transition:
    opacity 0.5s ease calc(var(--i, 0) * 130ms + 280ms),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--i, 0) * 130ms + 280ms),
    color 0.3s ease;
}

.process-section.reveal-pending .process-step p {
  transition:
    opacity 0.5s ease calc(var(--i, 0) * 130ms + 340ms),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--i, 0) * 130ms + 340ms);
}

.process-section.in-view .process-step h3,
.process-section.in-view .process-step p {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .process-line-fill {
    transition: none;
  }
}

@media (max-width: 900px) {
  .process-track {
    flex-direction: column;
    align-items: stretch;
    gap: 34px;
  }

  .process-line {
    top: 0;
    bottom: 0;
    left: 30px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--blue), var(--blue-deep));
    transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  }

  .process-section.in-view .process-line-fill {
    height: 100%;
    width: 100%;
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }

  .process-circle {
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .process-body {
    flex: 1;
    min-width: 0;
    padding-top: 16px;
  }

  .process-step p {
    max-width: none;
  }
}

.price-value {
  font-size: 38px;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin: 14px 0 6px;
}

.price-value span {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
}

.price-list {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-list li {
  color: var(--muted);
  font-size: 15px;
  padding-left: 22px;
  position: relative;
}

.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-deep);
  font-weight: 700;
}

.quote-card p.quote,
.testimonial-card .quote {
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  font-style: italic;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  flex-shrink: 0;
}

.quote-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 14px;
}

.quote-role {
  color: var(--muted);
  font-size: 13px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-card .quote-mark {
  width: 34px;
  height: 26px;
  color: rgba(65, 167, 216, 0.35);
  margin-bottom: 6px;
}

.testimonial-card .stars {
  color: #f5b301;
  letter-spacing: 3px;
  font-size: 15px;
  margin-bottom: 14px;
}

.testimonial-card .quote {
  flex: 1;
}

.testimonial-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0 18px;
}

.testimonial-card .quote-author {
  margin-top: 0;
  align-items: center;
}

.testimonial-card .quote-avatar {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.testimonial-card .quote-name {
  font-size: 15px;
}

.testimonial-card .quote-role {
  font-size: 13px;
}

.quote-company {
  margin-top: 1px;
}

.quote-company a {
  color: var(--blue-deep);
  font-size: 13px;
  text-decoration: none;
}

.quote-company a:hover {
  text-decoration: underline;
}

.stats-row {
  display: flex;
  justify-content: center;
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}

.stat-item {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 44px;
  background: var(--border);
}

.stat-value {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-deep);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 640px) {
  .stats-row {
    flex-wrap: wrap;
    row-gap: 28px;
  }

  .stat-item {
    flex: 0 0 50%;
    max-width: none;
  }

  .stat-item:nth-child(even)::before {
    display: none;
  }
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 22px;
}

.faq-item {
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
}

.faq-item h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* CTA */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(65, 167, 216, 0.12),
    rgba(65, 167, 216, 0.02)
  );
  border: 1px solid var(--border);
}

.cta-box h3 {
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 6px;
}

.cta-box p {
  color: var(--muted);
  font-size: 16px;
}

.final-image {
  overflow: hidden;
  background: #0d1320;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.25);
}

.final-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* overwritten in px by js/script.js once it knows the viewport size */
  object-fit: cover;
  z-index: 1;
}

@media (max-width: 980px) {
  .final-image {
    box-shadow: none;
  }
}

.scroll-stack > .reveal-group {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.signup-section .signup-inner {
  opacity: 0;
  will-change: transform, opacity;
}

footer {
  background: #0d1320;
  color: #999;
}

/* Main footer grid: brand/social, solutions links, contact details. */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 40px;
  padding: 64px 0 40px;
  text-align: left;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.65;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--blue);
}

.footer-col h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--blue);
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.5;
}

.footer-icon-svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  color: var(--blue);
}

.footer-icon-spacer {
  flex-shrink: 0;
  width: 17px;
}

/* Bottom bar: copyright + legal links, below a hairline divider. */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.footer-links {
  gap: 32px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0 32px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0 32px;
  }

  .footer-links {
    gap: 16px 24px;
    flex-wrap: wrap;
  }
}

.signup-section {
  background: #151b2b;
  padding: 140px 24px 72px;
}

.signup-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.signup-copy h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 10px;
}

.signup-copy h2 .accent {
  color: var(--blue);
}

.signup-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  align-items: start;
  gap: 28px;
  margin-top: 8px;
  text-align: left;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 40px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}

.form-group label .required {
  color: #f87171;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 18px;
  font-size: 15px;
  font-family: inherit;
}

.signup-form input,
.signup-form textarea {
  /* flips native date/time pickers to a light-on-dark palette so their
     little calendar/clock icon stays visible against the dark field */
  color-scheme: dark;
}

.signup-form input,
.signup-form select {
  height: 50px;
}

.signup-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='.6' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 44px;
}

.signup-form select option {
  color: #111827;
  background: #fff;
}

.signup-form textarea {
  padding: 14px 18px;
  min-height: 140px;
  resize: vertical;
  line-height: 1.55;
}

.signup-form input::placeholder,
.signup-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.1);
}

.rdv-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  width: 100%;
  background: var(--blue-deep);
  color: var(--blue);
  box-shadow: 0 16px 30px rgba(31, 125, 183, 0.35);
}

.rdv-submit-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px 20px;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(65, 167, 216, 0.16);
  color: var(--blue);
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.contact-info-value {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
}

.contact-info-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.contact-why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 20px;
}

.contact-why-card h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 14px;
}

.contact-why-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.contact-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}

.contact-why-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #4ade80;
}

@media (max-width: 980px) {
  .signup-section {
    padding: 100px 20px 64px;
  }

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

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

@media (max-width: 980px) {
  .navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 18px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    display: block;
    padding-top: 50px;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 32px;
  }

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

  .cta-box {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1220px);
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 18px;
  }

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

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

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 5%;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 70px 5%;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }
}

/* ==========================================================================
   Bouton d'envoi : etat chargement
   ========================================================================== */
.rdv-submit:disabled {
  cursor: progress;
  opacity: 0.85;
  transform: none;
}

.rdv-submit.is-loading .rdv-submit-icon {
  display: none;
}

.rdv-submit.is-loading::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-right-color: transparent;
  animation: pp-spin 0.7s linear infinite;
}

@keyframes pp-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   Alerte (PayposAlert)
   ========================================================================== */
.pp-alert-backdrop {
  --pp-alert-color: #22c55e;
  --pp-alert-glow: rgba(34, 197, 94, 0.35);

  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(8, 12, 22, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pp-alert-backdrop.is-visible {
  opacity: 1;
}

.pp-alert-backdrop:has(.pp-alert--error) {
  --pp-alert-color: #ef4444;
  --pp-alert-glow: rgba(239, 68, 68, 0.35);
}

.pp-alert-backdrop:has(.pp-alert--warning) {
  --pp-alert-color: #f59e0b;
  --pp-alert-glow: rgba(245, 158, 11, 0.35);
}

.pp-alert {
  position: relative;
  width: min(420px, 100%);
  padding: 36px 28px 28px;
  border-radius: 22px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(
      120% 80% at 50% 0%,
      var(--pp-alert-glow) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #152036 0%, #0d1320 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  overflow: hidden;
  transform: translateY(24px) scale(0.94);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.25);
}

.pp-alert-backdrop.is-visible .pp-alert {
  transform: translateY(0) scale(1);
}

.pp-alert-backdrop.is-leaving .pp-alert {
  transform: translateY(12px) scale(0.97);
  transition-timing-function: ease-in;
}

/* Icone animee */
.pp-alert__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--pp-alert-color) 14%, transparent);
  box-shadow: 0 0 0 0 var(--pp-alert-glow);
  animation: pp-pulse 1.8s ease-out 0.6s 2;
}

.pp-alert__icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: var(--pp-alert-color);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pp-alert__icon-circle {
  stroke-width: 2.5;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: pp-draw 0.6s ease-out 0.15s forwards;
}

.pp-alert__icon-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: pp-draw 0.35s ease-out 0.6s forwards;
}

.pp-alert__icon-path--delay {
  animation-delay: 0.8s;
}

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

@keyframes pp-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--pp-alert-glow);
  }
  100% {
    box-shadow: 0 0 0 18px transparent;
  }
}

/* Textes */
.pp-alert__title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pp-alert__message {
  margin: 0 0 24px;
  font-size: 0.97rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* Boutons */
.pp-alert__action {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: var(--pp-alert-color);
  box-shadow: 0 12px 26px var(--pp-alert-glow);
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.pp-alert__action:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.pp-alert__action:focus-visible,
.pp-alert__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.pp-alert__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.pp-alert__close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.pp-alert__close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

/* Barre de progression (fermeture auto, pause au survol) */
.pp-alert__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.pp-alert__progress span {
  display: block;
  height: 100%;
  background: var(--pp-alert-color);
  transform-origin: left;
  animation: pp-progress linear forwards;
}

.pp-alert:hover .pp-alert__progress span {
  animation-play-state: paused;
}

@keyframes pp-progress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

@media (max-width: 480px) {
  .pp-alert {
    padding: 32px 20px 24px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pp-alert,
  .pp-alert-backdrop {
    transition: none;
  }
  .pp-alert__icon,
  .pp-alert__icon-circle,
  .pp-alert__icon-path {
    animation: none;
    stroke-dashoffset: 0;
  }
}
/* ==========================================================================
   Formulaire de contact : erreurs, compteur, honeypot, reCAPTCHA
   ========================================================================== */

/* Champ anti-spam : hors écran, invisible pour les humains */
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}

.form-note .required {
  color: #f87171;
}

/* Message d'erreur sous un champ */
.field-error {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: #f87171;
}

.field-error:empty {
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.08);
}

.form-group.has-error input:focus,
.form-group.has-error select:focus,
.form-group.has-error textarea:focus {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2);
}

/* Ligne sous le message : erreur à gauche, compteur à droite */
.field-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.field-counter {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.field-counter.is-over {
  color: #f87171;
}

/* reCAPTCHA */
.recaptcha-group .g-recaptcha {
  width: fit-content;
  min-height: 78px; /* réserve la place : pas de saut de page au chargement */
  border-radius: 4px;
}

.recaptcha-group.has-error .g-recaptcha {
  outline: 1px solid #f87171;
  outline-offset: 4px;
}

/* Le widget Google fait 304px de large : on le réduit sur très petits écrans */
@media (max-width: 380px) {
  .recaptcha-group .g-recaptcha {
    transform: scale(0.88);
    transform-origin: 0 0;
  }
}
