:root {
  --blue-900: #0f1c3f;
  --blue-700: #1c348a;
  --blue-600: #2b59ff;
  --blue-100: #eef2ff;
  --green-ai: #10B981;
  --gray-900: #0f172a;
  --gray-600: #475569;
  --gray-400: #94a3b8;
  --gray-100: #f1f5f9;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #1c348a 0%, #5b7dff 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f8fafc;
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  scroll-snap-type: y proximity;
  overflow-y: auto;
  height: 100vh;
}

main > section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 6rem 2rem 4rem 2rem;
  box-sizing: border-box;
}

main > section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  color: inherit;
}

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

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo img {
  height: 40px;
}

#primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

#primary-nav a {
  text-decoration: none;
  color: var(--gray-900);
  font-weight: 600;
  transition: color 0.2s ease;
}

#primary-nav a:hover {
  color: var(--blue-700);
}

#primary-nav a.button.primary {
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.button.primary {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}

.button.primary:hover {
  opacity: 0.92;
}

.button.secondary {
  border: 1px solid transparent;
  color: white;
  background: var(--green-ai);
}

.button.secondary:hover {
  opacity: 0.92;
}

.button.ghost {
  border-color: transparent;
  color: var(--gray-600);
  padding-inline: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-900);
}

.hero {
  padding: clamp(3rem, 8vw, 5rem) 0 3rem;
  background: #10152a;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 4rem;
  align-items: center;
}

.hero-video-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(28, 52, 138, 0.2), rgba(16, 185, 129, 0.1));
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(10px);
}

.hero-video-box video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-video-box {
    max-width: 600px;
    margin: 0 auto;
  }
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 0.75rem;
}

.hero-copy .lede {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.hero-bubbles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 0 0;
  padding: 2.5rem 2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 100%;
}

.hero-bubbles .bubble {
  background: var(--gradient);
  border: 1px solid transparent;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  text-align: center;
  transition: all 0.2s ease;
}

.hero-bubbles .bubble:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-bubbles {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero-list li {
  margin-bottom: 0.75rem;
}

.hero-list i {
  color: #10B981;
  margin-right: 0.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 2rem;
  padding: 2.5rem 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.hero-stats .stat-item {
  text-align: center;
  flex: 1;
}

.hero-stats .stat-item strong {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.25rem;
}

.hero-stats .stat-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-stats .stat-divider {
    display: none;
  }
}

.floating-cta {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.floating-cta .button {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  min-width: 180px;
  justify-content: center;
}

.floating-cta .button:hover {
  transform: translateX(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1200px) {
  .floating-cta {
    right: 1rem;
  }
  
  .floating-cta .button {
    min-width: 160px;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .floating-cta {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    top: auto;
    transform: none;
    flex-direction: row;
    left: 1rem;
    gap: 0.5rem;
  }
  
  .floating-cta .button {
    flex: 1;
    min-width: 0;
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
  }
}

.p2p-section {
  background: #10152a;
  padding: 4rem 0;
  color: var(--white);
}

.p2p-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.p2p-section .section-header h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.p2p-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.workflow-steps-label {
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  font-weight: 500;
}

@keyframes arrowPulse {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(0);
  }
  50% {
    opacity: 0.7;
    transform: translateX(3px);
  }
}

@keyframes arrowFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}

.p2p-quick-flow {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  flex-wrap: nowrap;
  max-width: 100%;
  padding-top: 2rem;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.workflow-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  animation: arrowPulse 2s ease-in-out infinite, arrowFade 0.6s ease-out forwards;
  transition: all 0.3s ease;
  cursor: default;
}

.workflow-arrow:nth-child(2) { animation-delay: 0.1s; }
.workflow-arrow:nth-child(4) { animation-delay: 0.2s; }
.workflow-arrow:nth-child(6) { animation-delay: 0.3s; }
.workflow-arrow:nth-child(8) { animation-delay: 0.4s; }
.workflow-arrow:nth-child(10) { animation-delay: 0.5s; }
.workflow-arrow:nth-child(12) { animation-delay: 0.6s; }

.workflow-arrow:hover {
  color: var(--green-ai);
  transform: translateX(5px) scale(1.1);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.step-number {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  transition: color 0.3s ease;
}

.workflow-step:has(.quick-bubble.highlight) .step-number,
.workflow-step:has(.quick-bubble:hover) .step-number {
  color: var(--green-ai);
}

.quick-bubble {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.quick-bubble:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
  outline: 2px solid rgba(16, 185, 129, 0.3);
  outline-offset: 2px;
}

.quick-bubble.highlight {
  background: var(--green-ai);
  border-color: var(--green-ai);
  color: white;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.quick-bubble.highlight:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
  outline: 2px solid rgba(16, 185, 129, 0.5);
  outline-offset: 2px;
}

.quick-detail-box {
  margin-top: 2.5rem;
  padding: 1.75rem 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--green-ai);
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .p2p-quick-flow {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .p2p-quick-flow {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Product Modules Section */
.product-modules {
  background: #10152a;
  padding: 4rem 0;
  color: var(--white);
}

.product-modules .section-header h2 {
  color: var(--white);
}

.product-modules .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  border-color: var(--green-ai);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.product-card.active {
  border-color: var(--green-ai);
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.product-card .card-icon {
  font-size: 3rem;
  color: var(--green-ai);
  margin-bottom: 1.25rem;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--white);
  font-weight: 700;
}

.product-card .card-subline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.instruction-box {
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.instruction-box p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.product-detail-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.product-detail-panel.hidden {
  display: none;
}

.product-detail-panel h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
}

.product-detail-panel p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-detail-panel ul {
  list-style: none;
  padding: 0;
}

.product-detail-panel ul li {
  padding: 0.6rem 0 0.6rem 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  position: relative;
  font-size: 1rem;
}

.product-detail-panel ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-ai);
  font-weight: bold;
  font-size: 1.2rem;
}

.customization-block {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(28, 52, 138, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--blue-700);
}

.customization-block h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
  font-weight: 700;
}

.customization-block p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid rgba(28, 52, 138, 0.1);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.value-prop:hover {
  border-color: var(--green-ai);
  transform: translateX(4px);
}

.value-prop i {
  color: var(--green-ai);
  font-size: 1.2rem;
}

.value-prop span {
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 500;
}

@media (max-width: 768px) {
  .product-cards {
    grid-template-columns: 1fr 1fr;
  }
  
  .product-detail-panel {
    padding: 1.5rem;
  }
}

.product-video {
  padding: 3.5rem 0;
  background: var(--white);
}

.video-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.video-wrapper {
  flex: 1 1 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.2);
}

.video-wrapper video {
  width: 100%;
  display: block;
}

.video-text {
  flex: 1 1 320px;
}

.video-note {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cta-row.center {
  justify-content: center;
}

.trust-badges {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.7);
}

.trust-badges .divider {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.trust-badges strong {
  font-weight: 700;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-media .hero-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(17, 34, 68, 0.12), 0 2px 8px rgba(17, 34, 68, 0.08);
  border: 1px solid rgba(28, 52, 138, 0.08);
}

.hero-card .card-title {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-ai);
  margin-bottom: 1.25rem;
}

.hero-card ul {
  padding-left: 1.5rem;
  color: var(--gray-900);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
}

.hero-card ul li {
  margin-bottom: 0.75rem;
}

.card-highlight {
  background: linear-gradient(135deg, var(--blue-100) 0%, #e0e7ff 100%);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(28, 52, 138, 0.12);
}

.card-highlight span {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue-700);
}

.card-highlight small {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-900);
}

.hero-quote {
  font-style: italic;
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-quote .quote-meta {
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 700;
  color: var(--gray-900);
}

.logo-bar {
  padding: 2.5rem 0;
  background: var(--white);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  color: var(--gray-400);
  font-weight: 600;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.section-header p {
  color: var(--gray-600);
}

.value-grid {
  padding: 4rem 0;
}

.value-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-grid article {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

.value-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(28, 52, 138, 0.12);
  border-color: rgba(28, 52, 138, 0.15);
}

.value-grid article h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-900);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.value-grid article ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-grid article ul li {
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  position: relative;
  line-height: 1.6;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.value-grid article ul li:last-child {
  margin-bottom: 0;
}

.value-grid article ul li:before {
  content: "•";
  position: absolute;
  left: 0.25rem;
  color: var(--blue-600);
  font-weight: bold;
  font-size: 1.3em;
  line-height: 1;
}

.feature-panels {
  background: #10152a;
  color: var(--white);
  padding: 4rem 0;
}

.feature-panels .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.feature-panels .panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.feature-panels article {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 1.5rem;
}

.feature-panels i {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #9fafff;
}

.workflow {
  padding: 4rem 0;
}

.p2p-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 3rem 0 2rem;
  flex-wrap: wrap;
}

.p2p-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 120px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}

.p2p-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-600), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.p2p-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(28, 52, 138, 0.12), 0 4px 8px rgba(28, 52, 138, 0.08);
  border-color: rgba(28, 52, 138, 0.2);
}

.p2p-step:hover::before {
  opacity: 1;
}

.p2p-step.highlight {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(43, 89, 255, 0.35), 0 2px 8px rgba(43, 89, 255, 0.2);
}

.p2p-step.highlight::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 1;
}

.p2p-step.highlight:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 32px rgba(43, 89, 255, 0.4), 0 4px 12px rgba(43, 89, 255, 0.25);
}

.p2p-step .step-number {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-700);
  background: var(--blue-100);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(28, 52, 138, 0.1);
  transition: all 0.3s ease;
}

.p2p-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(28, 52, 138, 0.15);
}

.p2p-step.highlight .step-number {
  background: var(--green-ai);
  color: white;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.4);
}

.p2p-step .step-label {
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

.p2p-step.highlight .step-label {
  color: white;
  font-weight: 700;
  letter-spacing: 0;
}

.flow-arrow {
  color: var(--gray-400);
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0 0.25rem;
}

.detail-box {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--blue-100);
  border-left: 4px solid var(--blue-600);
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-900);
  min-height: 60px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .p2p-flow {
    flex-direction: column;
    gap: 1rem;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
  
  .p2p-step {
    width: 100%;
    max-width: 300px;
  }
}

.social-proof {
  background: var(--gray-900);
  color: var(--white);
  padding: 4rem 0;
}

.social-proof .section-header p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.stat-highlight {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  text-align: center;
  max-width: 450px;
  margin: 2.5rem auto 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.15);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green-ai);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 1.1rem;
  color: #334155;
  font-weight: 600;
  line-height: 1.4;
}

.featured-quote {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.quote-text {
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.quote-attribution {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.social-proof .proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.social-proof article {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.75rem;
}

.social-proof .quote {
  font-size: 1.05rem;
  font-style: italic;
}

.social-proof ul {
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.roi {
  padding: 4rem 0;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.roi-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.roi-card .metric {
  font-size: 1.8rem;
  color: var(--blue-700);
  font-weight: 700;
  margin: 0.5rem 0;
}

.cta {
  padding: 4rem 0 5rem;
}

.cta-card {
  background: var(--gradient);
  color: var(--white);
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer {
  background: #10152a;
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid img {
  height: 36px;
  margin-bottom: 0.5rem;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-grid h4 {
  margin-bottom: 0.75rem;
  color: white;
  font-weight: 600;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: #10B981;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.socials a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 0.5rem;
  background: transparent;
  transition: all 0.2s ease;
}

.socials a:hover {
  border-color: #10B981;
  color: #10B981;
}

/* Contact Page */
.contact-wrapper {
  padding: 2rem 0 3rem;
}

.contact-intro {
  margin-bottom: 2.5rem;
}

.contact-intro .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-700);
  margin-bottom: 0.75rem;
}

.contact-intro h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

.contact-intro p {
  font-size: 1.05rem;
  color: #4a5568;
  max-width: 750px;
  line-height: 1.65;
  font-weight: 400;
}

.contact-intro a {
  color: var(--blue-700);
  text-decoration: none;
  font-weight: 500;
}

.contact-intro a:hover {
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-grid article {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-grid article h2 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
}

.contact-grid article ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.contact-grid article ul li {
  padding: 0.6rem 0;
  color: #4a5568;
  line-height: 1.6;
  position: relative;
  padding-left: 1.25rem;
}

.contact-grid article ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: bold;
}

.contact-grid article .contact-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-grid article .contact-details p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #4a5568;
}

.contact-grid article .contact-details strong {
  font-weight: 600;
  color: #1a1a1a;
}

.contact-grid article .contact-details a {
  color: var(--blue-700);
  text-decoration: none;
  font-weight: 500;
}

.contact-grid article .contact-details a:hover {
  text-decoration: underline;
}

form#demoForm {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

form#demoForm label {
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.4rem;
  color: var(--gray-900);
}

form#demoForm input,
form#demoForm select,
form#demoForm textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  transition: border-color 0.2s ease;
}

form#demoForm input:focus,
form#demoForm select:focus,
form#demoForm textarea:focus {
  outline: none;
  border-color: var(--blue-700);
}

form#demoForm textarea {
  min-height: 100px;
  resize: vertical;
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
}

.form-status.success {
  color: #059669;
}

.form-status.error {
  color: #dc2626;
}

/* Responsive */
@media (max-width: 900px) {
  #primary-nav {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 14, 0.96);
    color: var(--white);
    flex-direction: column;
    padding: 6rem 1.5rem 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }

  #primary-nav.open {
    transform: translateY(0);
  }

  #primary-nav a {
    color: var(--white);
    font-size: 1.2rem;
  }

  .button.ghost,
  .button.primary {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    padding: 1.5rem;
  }
}
.video-hero {
  position: relative;
  min-height: 80vh;
  background: #000;
  overflow: hidden;
}

.video-hero video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  position: absolute;
  inset: 0;
}

.video-hero .video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.video-hero .video-overlay .cta-row,
.video-hero .video-overlay .video-controls {
  pointer-events: auto;
}

.video-hero .video-overlay .cta-row {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.video-controls {
  display: flex;
  gap: 0.75rem;
}

.media-toggle {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.media-toggle.active {
  background: rgba(15, 23, 42, 0.6);
}
